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-07 23:27:19 +02:00
|
|
|
before_action :set_status, only: [:create]
|
2022-11-24 12:50:32 +01:00
|
|
|
|
2022-12-01 03:24:08 +01:00
|
|
|
def create
|
2022-11-29 09:15:52 +01: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 12:50:32 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2023-05-07 23:27:19 +02:00
|
|
|
react = current_account.status_reactions.find_by(status_id: params[:status_id], name: params[:id])
|
|
|
|
|
|
|
|
if react
|
|
|
|
@status = react.status
|
|
|
|
UnreactWorker.perform_async(current_account.id, @status.id, params[:id])
|
|
|
|
else
|
|
|
|
@status = Status.find(params[:status_id])
|
|
|
|
authorize @status, :show?
|
|
|
|
end
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|