You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
885 B

  1. # frozen_string_literal: true
  2. class Api::V1::Statuses::BookmarksController < Api::BaseController
  3. include Authorization
  4. before_action -> { doorkeeper_authorize! :write, :'write:bookmarks' }
  5. before_action :require_user!
  6. before_action :set_status
  7. def create
  8. current_account.bookmarks.find_or_create_by!(account: current_account, status: @status)
  9. render json: @status, serializer: REST::StatusSerializer
  10. end
  11. def destroy
  12. bookmark = current_account.bookmarks.find_by(status: @status)
  13. bookmark&.destroy!
  14. render json: @status, serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new([@status], current_account.id, bookmarks_map: { @status.id => false })
  15. end
  16. private
  17. def set_status
  18. @status = Status.find(params[:status_id])
  19. authorize @status, :show?
  20. rescue Mastodon::NotPermittedError
  21. not_found
  22. end
  23. end