2022-11-24 20:50:32 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-01-24 13:59:42 +09:00
|
|
|
class Api::V1::Statuses::ReactionsController < Api::V1::Statuses::BaseController
|
2022-11-24 20:50:32 +09:00
|
|
|
before_action -> { doorkeeper_authorize! :write, :'write:favourites' }
|
|
|
|
before_action :require_user!
|
|
|
|
|
2022-12-01 11:24:08 +09:00
|
|
|
def create
|
2024-01-18 09:04:11 +09:00
|
|
|
ReactService.new.call(current_account, @status, params[:id])
|
2023-05-08 06:27:19 +09:00
|
|
|
render json: @status, serializer: REST::StatusSerializer
|
2022-11-24 20:50:32 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2024-01-18 09:04:11 +09:00
|
|
|
UnreactWorker.perform_async(current_account.id, @status.id, params[:id])
|
2023-05-08 06:27:19 +09: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 20:50:32 +09:00
|
|
|
end
|
|
|
|
end
|