This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-06-10 00:39:26 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Statuses::FavouritesController < Api::BaseController
|
|
|
|
include Authorization
|
|
|
|
|
|
|
|
before_action -> { doorkeeper_authorize! :write }
|
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def create
|
|
|
|
@status = favourited_status
|
2017-07-06 19:02:06 -07:00
|
|
|
render json: @status, serializer: REST::StatusSerializer
|
2017-06-10 00:39:26 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@status = requested_status
|
|
|
|
@favourites_map = { @status.id => false }
|
|
|
|
|
|
|
|
UnfavouriteWorker.perform_async(current_user.account_id, @status.id)
|
|
|
|
|
2017-07-06 19:02:06 -07:00
|
|
|
render json: @status, serializer: REST::StatusSerializer
|
2017-06-10 00:39:26 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def favourited_status
|
|
|
|
service_result.status.reload
|
|
|
|
end
|
|
|
|
|
|
|
|
def service_result
|
|
|
|
FavouriteService.new.call(current_user.account, requested_status)
|
|
|
|
end
|
|
|
|
|
|
|
|
def requested_status
|
|
|
|
Status.find(params[:status_id])
|
|
|
|
end
|
|
|
|
end
|