2016-03-06 22:51:55 +11:00
|
|
|
class FavouriteService < BaseService
|
|
|
|
# Favourite a status and notify remote user
|
|
|
|
# @param [Account] account
|
|
|
|
# @param [Status] status
|
|
|
|
# @return [Favourite]
|
|
|
|
def call(account, status)
|
|
|
|
favourite = Favourite.create!(account: account, status: status)
|
2016-10-05 22:50:21 +11:00
|
|
|
HubPingWorker.perform_async(account.id)
|
2016-03-20 05:20:07 +11:00
|
|
|
|
|
|
|
if status.local?
|
2016-10-04 03:49:52 +11:00
|
|
|
NotificationMailer.favourite(status, account).deliver_later unless status.account.blocking?(account)
|
2016-03-20 05:20:07 +11:00
|
|
|
else
|
2016-03-26 23:42:10 +11:00
|
|
|
NotificationWorker.perform_async(favourite.stream_entry.id, status.account_id)
|
2016-03-20 05:20:07 +11:00
|
|
|
end
|
|
|
|
|
2016-03-06 22:51:55 +11:00
|
|
|
favourite
|
|
|
|
end
|
|
|
|
end
|