You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
704 B
27 lines
704 B
# frozen_string_literal: true |
|
|
|
class FavouriteService < BaseService |
|
# Favourite a status and notify remote user |
|
# @param [Account] account |
|
# @param [Status] status |
|
# @return [Favourite] |
|
def call(account, status) |
|
raise Mastodon::NotPermittedError unless status.permitted?(account) |
|
|
|
favourite = Favourite.create!(account: account, status: status) |
|
|
|
if status.local? |
|
NotifyService.new.call(favourite.status.account, favourite) |
|
else |
|
NotificationWorker.perform_async(build_xml(favourite), account.id, status.account_id) |
|
end |
|
|
|
favourite |
|
end |
|
|
|
private |
|
|
|
def build_xml(favourite) |
|
AtomSerializer.render(AtomSerializer.new.favourite_salmon(favourite)) |
|
end |
|
end
|
|
|