Skip to content

Commit

Permalink
Move reaction normalization to API controller
Browse files Browse the repository at this point in the history
  • Loading branch information
TheEssem committed Dec 2, 2024
1 parent 99a88c6 commit 1d8225c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
11 changes: 9 additions & 2 deletions app/controllers/api/v1/statuses/reactions_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ class Api::V1::Statuses::ReactionsController < Api::BaseController
before_action :set_status

def create
ReactService.new.call(current_account, @status, params[:id])
ReactService.new.call(current_account, @status, normalize(params[:id]))
render json: @status, serializer: REST::StatusSerializer
end

def destroy
UnreactWorker.perform_async(current_account.id, @status.id, params[:id])
UnreactWorker.perform_async(current_account.id, @status.id, normalize(params[:id]))

render json: @status, serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new([@status], current_account.id, reactions_map: { @status.id => false })
rescue Mastodon::NotPermittedError
Expand All @@ -22,6 +22,13 @@ def destroy

private

def normalize(name)
normalized = "#{name}\uFE0F"
return normalized if StatusReactionValidator::SUPPORTED_EMOJIS.include?(normalized)

name
end

def set_status
@status = Status.find(params[:status_id])
authorize @status, :show?
Expand Down
3 changes: 0 additions & 3 deletions app/services/react_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ def call(account, status, emoji)
name, domain = emoji.split('@')
return unless domain.nil? || status.local?

normalized = "#{name}\uFE0F"
name = normalized if StatusReactionValidator::SUPPORTED_EMOJIS.include?(normalized)

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?
Expand Down

0 comments on commit 1d8225c

Please sign in to comment.