# frozen_string_literal: true class Api::V1::StatusesController < Api::BaseController include Authorization before_action -> { authorize_if_got_token! :read, :'read:statuses' }, except: [:create, :destroy] before_action -> { doorkeeper_authorize! :write, :'write:statuses' }, only: [:create, :destroy] before_action :require_user!, except: [:show, :context, :card] before_action :set_status, only: [:show, :context, :card] respond_to :json # This API was originally unlimited, pagination cannot be introduced without # breaking backwards-compatibility. Arbitrarily high number to cover most # conversations as quasi-unlimited, it would be too much work to render more # than this anyway CONTEXT_LIMIT = 4_096 def show @status = cache_collection([@status], Status).first render json: @status, serializer: REST::StatusSerializer, monsterfork_api: monsterfork_api end def context ancestors_results = @status.in_reply_to_id.nil? ? [] : @status.ancestors(CONTEXT_LIMIT, current_account) descendants_results = @status.descendants(CONTEXT_LIMIT, current_account) loaded_ancestors = cache_collection(ancestors_results, Status) loaded_descendants = cache_collection(descendants_results, Status) @context = Context.new(ancestors: loaded_ancestors, descendants: loaded_descendants) statuses = [@status] + @context.ancestors + @context.descendants render json: @context, serializer: REST::ContextSerializer, relationships: StatusRelationshipsPresenter.new(statuses, current_user&.account_id), monsterfork_api: monsterfork_api end def card @card = @status.preview_cards.first if @card.nil? || card_filtered? render_empty else render json: @card, serializer: REST::PreviewCardSerializer, monsterfork_api: monsterfork_api end end def create @status = PostStatusService.new.call(current_user.account, text: status_params[:status], thread: status_params[:in_reply_to_id].blank? ? nil : Status.find(status_params[:in_reply_to_id]), media_ids: status_params[:media_ids], sensitive: status_params[:sensitive], spoiler_text: status_params[:spoiler_text], visibility: status_params[:visibility], scheduled_at: status_params[:scheduled_at], delete_after: status_params[:delete_after], defederate_after: status_params[:defederate_after], sharekey: status_params[:sharekey], application: doorkeeper_token.application, poll: status_params[:poll], content_type: status_params[:content_type], idempotency: request.headers['Idempotency-Key']) if @status.nil? raise Mastodon::ValidationError, 'Bangtags processed successfully.' else render json: @status, serializer: @status.is_a?(ScheduledStatus) ? REST::ScheduledStatusSerializer : REST::StatusSerializer, monsterfork_api: monsterfork_api end end def destroy @status = Status.where(account_id: current_user.account).find(params[:id]) authorize @status, :destroy? @status.discard RemovalWorker.perform_async(@status.id, redraft: true) render json: @status, serializer: REST::StatusSerializer, source_requested: true, monsterfork_api: monsterfork_api end private def set_status @status = Status.find(params[:id]) @sharekey = params[:key] if @status.sharekey.present? && @sharekey == @status.sharekey.key skip_authorization else authorize @status, :show? end rescue Mastodon::NotPermittedError raise ActiveRecord::RecordNotFound end def status_params params.permit( :status, :in_reply_to_id, :sensitive, :spoiler_text, :visibility, :sharekey, :scheduled_at, :delete_after, :defederate_after, :content_type, media_ids: [], poll: [ :multiple, :hide_totals, :expires_in, options: [], ] ) end def pagination_params(core_params) params.slice(:limit).permit(:limit).merge(core_params) end def card_filtered? !current_user.nil? && current_user.hides_sensitive_cards? && @status.sensitive? end end