2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-06 03:51:55 -08:00
|
|
|
class FavouriteService < BaseService
|
2017-05-29 09:22:22 -07:00
|
|
|
include Authorization
|
|
|
|
|
2016-03-06 03:51:55 -08:00
|
|
|
# Favourite a status and notify remote user
|
|
|
|
# @param [Account] account
|
|
|
|
# @param [Status] status
|
|
|
|
# @return [Favourite]
|
|
|
|
def call(account, status)
|
2017-05-29 09:22:22 -07:00
|
|
|
authorize_with account, status, :show?
|
2016-12-29 11:33:26 -08:00
|
|
|
|
2017-06-08 06:07:39 -07:00
|
|
|
favourite = Favourite.find_by(account: account, status: status)
|
|
|
|
|
|
|
|
return favourite unless favourite.nil?
|
|
|
|
|
2016-03-06 03:51:55 -08:00
|
|
|
favourite = Favourite.create!(account: account, status: status)
|
2016-11-28 04:36:47 -08:00
|
|
|
|
2016-03-19 11:20:07 -07:00
|
|
|
if status.local?
|
2016-12-29 11:33:26 -08:00
|
|
|
NotifyService.new.call(favourite.status.account, favourite)
|
2016-03-19 11:20:07 -07:00
|
|
|
else
|
2017-02-11 15:48:53 -08:00
|
|
|
NotificationWorker.perform_async(build_xml(favourite), account.id, status.account_id)
|
2016-03-19 11:20:07 -07:00
|
|
|
end
|
|
|
|
|
2016-03-06 03:51:55 -08:00
|
|
|
favourite
|
|
|
|
end
|
2017-02-11 15:48:53 -08:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def build_xml(favourite)
|
2017-07-18 16:37:26 -07:00
|
|
|
OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.favourite_salmon(favourite))
|
2017-02-11 15:48:53 -08:00
|
|
|
end
|
2016-03-06 03:51:55 -08:00
|
|
|
end
|