2022-11-24 12:50:32 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Statuses::ReactionsController < Api::BaseController
|
2022-12-01 02:41:47 +01:00
|
|
|
include Authorization
|
|
|
|
|
2022-11-24 12:50:32 +01:00
|
|
|
before_action -> { doorkeeper_authorize! :write, :'write:favourites' }
|
|
|
|
before_action :require_user!
|
2023-05-11 13:40:24 +02:00
|
|
|
before_action :set_status
|
2022-11-24 12:50:32 +01:00
|
|
|
|
2022-12-01 03:24:08 +01:00
|
|
|
def create
|
2024-01-17 22:40:51 +01:00
|
|
|
ReactService.new.call(current_account, @status, normalize(params[:id]))
|
2023-05-07 23:27:19 +02:00
|
|
|
render json: @status, serializer: REST::StatusSerializer
|
2022-11-24 12:50:32 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2024-01-17 22:40:51 +01:00
|
|
|
UnreactWorker.perform_async(current_account.id, @status.id, normalize(params[:id]))
|
2023-05-07 23:27:19 +02:00
|
|
|
|
|
|
|
render json: @status, serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new([@status], current_account.id, reactions_map: { @status.id => false })
|
|
|
|
rescue Mastodon::NotPermittedError
|
|
|
|
not_found
|
2022-11-24 12:50:32 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2024-01-17 22:40:51 +01:00
|
|
|
def normalize(name)
|
|
|
|
normalized = "#{name}\uFE0F"
|
|
|
|
return normalized if StatusReactionValidator::SUPPORTED_EMOJIS.include?(normalized)
|
|
|
|
|
|
|
|
name
|
|
|
|
end
|
|
|
|
|
2022-11-24 12:50:32 +01:00
|
|
|
def set_status
|
|
|
|
@status = Status.find(params[:status_id])
|
2023-05-07 23:27:19 +02:00
|
|
|
authorize @status, :show?
|
|
|
|
rescue Mastodon::NotPermittedError
|
|
|
|
not_found
|
2022-11-24 12:50:32 +01:00
|
|
|
end
|
|
|
|
end
|