This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-26 14:55:21 -07:00
|
|
|
class UnfavouriteService < BaseService
|
|
|
|
def call(account, status)
|
|
|
|
favourite = Favourite.find_by!(account: account, status: status)
|
|
|
|
favourite.destroy!
|
|
|
|
|
2017-02-11 15:48:53 -08:00
|
|
|
NotificationWorker.perform_async(build_xml(favourite), account.id, status.account_id) unless status.local?
|
2016-09-26 14:55:21 -07:00
|
|
|
|
|
|
|
favourite
|
|
|
|
end
|
2017-02-11 15:48:53 -08:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def build_xml(favourite)
|
2017-07-18 16:37:26 -07:00
|
|
|
OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.unfavourite_salmon(favourite))
|
2017-02-11 15:48:53 -08:00
|
|
|
end
|
2016-09-26 14:55:21 -07:00
|
|
|
end
|