mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 12:58:06 +01:00
27 lines
824 B
Ruby
27 lines
824 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UnreactService < BaseService
|
|
include Payloadable
|
|
|
|
def call(account, status, emoji)
|
|
name, domain = emoji.split('@')
|
|
custom_emoji = CustomEmoji.find_by(shortcode: name, domain: domain)
|
|
reaction = StatusReaction.find_by(account: account, status: status, name: name, custom_emoji: custom_emoji)
|
|
return if reaction.nil?
|
|
|
|
reaction.destroy!
|
|
create_notification(reaction) if !status.account.local? && status.account.activitypub?
|
|
reaction
|
|
end
|
|
|
|
private
|
|
|
|
def create_notification(reaction)
|
|
status = reaction.status
|
|
ActivityPub::DeliveryWorker.perform_async(build_json(reaction), reaction.account_id, status.account.inbox_url)
|
|
end
|
|
|
|
def build_json(reaction)
|
|
Oj.dump(serialize_payload(reaction, ActivityPub::UndoEmojiReactionSerializer))
|
|
end
|
|
end
|