2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-06 11:51:55 +00:00
|
|
|
class FavouriteService < BaseService
|
2017-02-11 01:12:05 +00:00
|
|
|
include StreamEntryRenderer
|
|
|
|
|
2016-03-06 11:51:55 +00:00
|
|
|
# Favourite a status and notify remote user
|
|
|
|
# @param [Account] account
|
|
|
|
# @param [Status] status
|
|
|
|
# @return [Favourite]
|
|
|
|
def call(account, status)
|
2016-12-29 19:33:26 +00:00
|
|
|
raise Mastodon::NotPermitted unless status.permitted?(account)
|
|
|
|
|
2016-03-06 11:51:55 +00:00
|
|
|
favourite = Favourite.create!(account: account, status: status)
|
2016-11-28 12:36:47 +00:00
|
|
|
|
|
|
|
Pubsubhubbub::DistributionWorker.perform_async(favourite.stream_entry.id)
|
2016-03-19 18:20:07 +00:00
|
|
|
|
|
|
|
if status.local?
|
2016-12-29 19:33:26 +00:00
|
|
|
NotifyService.new.call(favourite.status.account, favourite)
|
2016-03-19 18:20:07 +00:00
|
|
|
else
|
2017-02-11 01:12:05 +00:00
|
|
|
NotificationWorker.perform_async(stream_entry_to_xml(favourite.stream_entry), account.id, status.account_id)
|
2016-03-19 18:20:07 +00:00
|
|
|
end
|
|
|
|
|
2016-03-06 11:51:55 +00:00
|
|
|
favourite
|
|
|
|
end
|
|
|
|
end
|