2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-27 07:55:21 +10:00
|
|
|
class UnfavouriteService < BaseService
|
|
|
|
def call(account, status)
|
|
|
|
favourite = Favourite.find_by!(account: account, status: status)
|
|
|
|
favourite.destroy!
|
|
|
|
|
2017-02-12 10:48:53 +11:00
|
|
|
NotificationWorker.perform_async(build_xml(favourite), account.id, status.account_id) unless status.local?
|
2016-09-27 07:55:21 +10:00
|
|
|
|
|
|
|
favourite
|
|
|
|
end
|
2017-02-12 10:48:53 +11:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def build_xml(favourite)
|
2017-07-19 00:39:47 +10:00
|
|
|
Ostatus::AtomSerializer.render(Ostatus::AtomSerializer.new.unfavourite_salmon(favourite))
|
2017-02-12 10:48:53 +11:00
|
|
|
end
|
2016-09-27 07:55:21 +10:00
|
|
|
end
|