2022-11-24 11:50:32 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Statuses::ReactionsController < Api::BaseController
|
2022-12-01 01:41:47 +00:00
|
|
|
include Authorization
|
|
|
|
|
2022-11-24 11:50:32 +00: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 11:50:32 +00:00
|
|
|
|
2022-12-01 02:24:08 +00:00
|
|
|
def create
|
2022-11-29 08:15:52 +00:00
|
|
|
ReactService.new.call(current_account, @status, params[:id])
|
2023-05-07 23:27:19 +02:00
|
|
|
render json: @status, serializer: REST::StatusSerializer
|
2022-11-24 11:50:32 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2023-05-11 13:40:24 +02:00
|
|
|
UnreactWorker.perform_async(current_account.id, @status.id, 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 11:50:32 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
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 11:50:32 +00:00
|
|
|
end
|
|
|
|
end
|