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)
|
|
|
|
Nokogiri::XML::Builder.new do |xml|
|
|
|
|
entry(xml, true) do
|
|
|
|
title xml, "#{favourite.account.acct} no longer favourites a status by #{favourite.status.account.acct}"
|
|
|
|
|
|
|
|
author(xml) do
|
|
|
|
include_author xml, favourite.account
|
|
|
|
end
|
|
|
|
|
|
|
|
object_type xml, :activity
|
2017-02-12 08:28:15 -08:00
|
|
|
verb xml, :unfavorite
|
2017-02-11 15:48:53 -08:00
|
|
|
|
|
|
|
target(xml) do
|
2017-02-12 08:28:15 -08:00
|
|
|
include_target xml, favourite.status
|
2017-02-11 15:48:53 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end.to_xml
|
|
|
|
end
|
2016-09-26 14:55:21 -07:00
|
|
|
end
|