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