28 lines
884 B
Ruby
28 lines
884 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class StatusReactionService < BaseService
|
||
|
include Authorization
|
||
|
include Payloadable
|
||
|
|
||
|
def call(account, status, emoji)
|
||
|
reaction = StatusReaction.find_by(account: account, status: status)
|
||
|
return reaction unless reaction.nil?
|
||
|
|
||
|
name, domain = emoji.split("@")
|
||
|
|
||
|
custom_emoji = CustomEmoji.find_by(shortcode: name, domain: domain)
|
||
|
reaction = StatusReaction.create!(account: account, status: status, name: name, custom_emoji: custom_emoji)
|
||
|
|
||
|
json = Oj.dump(serialize_payload(reaction, ActivityPub::EmojiReactionSerializer))
|
||
|
if status.account.local?
|
||
|
ActivityPub::RawDistributionWorker.perform_async(json, status.account.id)
|
||
|
else
|
||
|
ActivityPub::DeliveryWorker.perform_async(json, reaction.account_id, status.account.inbox_url)
|
||
|
end
|
||
|
|
||
|
ActivityTracker.increment('activity:interactions')
|
||
|
|
||
|
reaction
|
||
|
end
|
||
|
end
|