2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-26 23:55:21 +02:00
|
|
|
class UnfavouriteService < BaseService
|
|
|
|
def call(account, status)
|
|
|
|
favourite = Favourite.find_by!(account: account, status: status)
|
|
|
|
favourite.destroy!
|
|
|
|
|
2017-02-12 00:48:53 +01:00
|
|
|
NotificationWorker.perform_async(build_xml(favourite), account.id, status.account_id) unless status.local?
|
2016-09-26 23:55:21 +02:00
|
|
|
|
|
|
|
favourite
|
|
|
|
end
|
2017-02-12 00:48:53 +01:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def build_xml(favourite)
|
2017-02-25 03:34:37 +01:00
|
|
|
description = "#{favourite.account.acct} no longer favourites a status by #{favourite.status.account.acct}"
|
|
|
|
|
2017-02-12 00:48:53 +01:00
|
|
|
Nokogiri::XML::Builder.new do |xml|
|
|
|
|
entry(xml, true) do
|
2017-02-13 13:30:33 +01:00
|
|
|
unique_id xml, Time.now.utc, favourite.id, 'Favourite'
|
2017-02-25 03:34:37 +01:00
|
|
|
title xml, description
|
|
|
|
content xml, description
|
2017-02-12 00:48:53 +01:00
|
|
|
|
|
|
|
author(xml) do
|
|
|
|
include_author xml, favourite.account
|
|
|
|
end
|
|
|
|
|
|
|
|
object_type xml, :activity
|
2017-02-12 17:28:15 +01:00
|
|
|
verb xml, :unfavorite
|
2017-02-13 13:30:33 +01:00
|
|
|
in_reply_to xml, TagManager.instance.uri_for(favourite.status), TagManager.instance.url_for(favourite.status)
|
2017-02-12 00:48:53 +01:00
|
|
|
|
|
|
|
target(xml) do
|
2017-02-12 17:28:15 +01:00
|
|
|
include_target xml, favourite.status
|
2017-02-12 00:48:53 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end.to_xml
|
|
|
|
end
|
2016-09-26 23:55:21 +02:00
|
|
|
end
|