mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-12-04 06:19:05 +01:00
b275f1aa77
Squashed, modified, and rebased from glitch-soc/mastodon#2221. Co-authored-by: fef <owo@fef.moe> Co-authored-by: Jeremy Kescher <jeremy@kescher.at> Co-authored-by: neatchee <neatchee@gmail.com> Co-authored-by: Ivan Rodriguez <104603218+IRod22@users.noreply.github.com> Co-authored-by: Plastikmensch <plastikmensch@users.noreply.github.com>
31 lines
1 KiB
Ruby
31 lines
1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class ReactService < BaseService
|
|
include Authorization
|
|
include Payloadable
|
|
|
|
def call(account, status, emoji)
|
|
authorize_with account, status, :react?
|
|
|
|
name, domain = emoji.split('@')
|
|
return unless domain.nil? || status.local?
|
|
|
|
custom_emoji = CustomEmoji.find_by(shortcode: name, domain: domain)
|
|
reaction = StatusReaction.find_by(account: account, status: status, name: name, custom_emoji: custom_emoji)
|
|
return reaction unless reaction.nil?
|
|
|
|
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?
|
|
NotifyService.new.call(status.account, :reaction, reaction)
|
|
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
|