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