mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-29 16:39:04 +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>
26 lines
834 B
Ruby
26 lines
834 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ActivityPub::Activity::EmojiReact < ActivityPub::Activity
|
|
def perform
|
|
original_status = status_from_uri(object_uri)
|
|
name = @json['content']
|
|
return if original_status.nil? ||
|
|
!original_status.account.local? ||
|
|
delete_arrived_first?(@json['id'])
|
|
|
|
if /^:.*:$/.match?(name)
|
|
name.delete! ':'
|
|
custom_emoji = process_emoji_tags(name, @json['tag'])
|
|
|
|
return if custom_emoji.nil?
|
|
end
|
|
|
|
return if @account.reacted?(original_status, name, custom_emoji)
|
|
|
|
reaction = original_status.status_reactions.create!(account: @account, name: name, custom_emoji: custom_emoji)
|
|
|
|
LocalNotificationWorker.perform_async(original_status.account_id, reaction.id, 'StatusReaction', 'reaction')
|
|
rescue ActiveRecord::RecordInvalid
|
|
nil
|
|
end
|
|
end
|