123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- # frozen_string_literal: true
- class Api::V1::StatusesController < Api::BaseController
- include Authorization
- before_action -> { authorize_if_got_token! :read, :'read:statuses' }, except: [:create, :update, :destroy]
- before_action -> { doorkeeper_authorize! :write, :'write:statuses' }, only: [:create, :update, :destroy]
- before_action :require_user!, except: [:show, :context]
- before_action :set_status, only: [:show, :context]
- before_action :set_thread, only: [:create]
- override_rate_limit_headers :create, family: :statuses
- override_rate_limit_headers :update, family: :statuses
- # 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
- # This remains expensive and we don't want to show everything to logged-out users
- ANCESTORS_LIMIT = 40
- DESCENDANTS_LIMIT = 60
- DESCENDANTS_DEPTH_LIMIT = 20
- def show
- cache_if_unauthenticated!
- @status = cache_collection([@status], Status).first
- render json: @status, serializer: REST::StatusSerializer
- end
- def context
- cache_if_unauthenticated!
- ancestors_limit = CONTEXT_LIMIT
- descendants_limit = CONTEXT_LIMIT
- descendants_depth_limit = nil
- if current_account.nil?
- ancestors_limit = ANCESTORS_LIMIT
- descendants_limit = DESCENDANTS_LIMIT
- descendants_depth_limit = DESCENDANTS_DEPTH_LIMIT
- end
- ancestors_results = @status.in_reply_to_id.nil? ? [] : @status.ancestors(ancestors_limit, current_account)
- descendants_results = @status.descendants(descendants_limit, current_account, descendants_depth_limit)
- 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)
- end
- def create
- @status = PostStatusService.new.call(
- current_user.account,
- text: status_params[:status],
- thread: @thread,
- media_ids: status_params[:media_ids],
- sensitive: status_params[:sensitive],
- spoiler_text: status_params[:spoiler_text],
- visibility: status_params[:visibility],
- language: status_params[:language],
- scheduled_at: status_params[:scheduled_at],
- application: doorkeeper_token.application,
- poll: status_params[:poll],
- allowed_mentions: status_params[:allowed_mentions],
- idempotency: request.headers['Idempotency-Key'],
- with_rate_limit: true
- )
- render json: @status, serializer: @status.is_a?(ScheduledStatus) ? REST::ScheduledStatusSerializer : REST::StatusSerializer
- rescue PostStatusService::UnexpectedMentionsError => e
- unexpected_accounts = ActiveModel::Serializer::CollectionSerializer.new(
- e.accounts,
- serializer: REST::AccountSerializer
- )
- render json: { error: e.message, unexpected_accounts: unexpected_accounts }, status: 422
- end
- def update
- @status = Status.where(account: current_account).find(params[:id])
- authorize @status, :update?
- UpdateStatusService.new.call(
- @status,
- current_account.id,
- text: status_params[:status],
- media_ids: status_params[:media_ids],
- media_attributes: status_params[:media_attributes],
- sensitive: status_params[:sensitive],
- language: status_params[:language],
- spoiler_text: status_params[:spoiler_text],
- poll: status_params[:poll]
- )
- render json: @status, serializer: REST::StatusSerializer
- end
- def destroy
- @status = Status.where(account: current_account).find(params[:id])
- authorize @status, :destroy?
- @status.discard_with_reblogs
- StatusPin.find_by(status: @status)&.destroy
- @status.account.statuses_count = @status.account.statuses_count - 1
- json = render_to_body json: @status, serializer: REST::StatusSerializer, source_requested: true
- RemovalWorker.perform_async(@status.id, { 'redraft' => true })
- render json: json
- end
- private
- def set_status
- @status = Status.find(params[:id])
- authorize @status, :show?
- rescue Mastodon::NotPermittedError
- not_found
- end
- def set_thread
- @thread = Status.find(status_params[:in_reply_to_id]) if status_params[:in_reply_to_id].present?
- authorize(@thread, :show?) if @thread.present?
- rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
- render json: { error: I18n.t('statuses.errors.in_reply_not_found') }, status: 404
- end
- def status_params
- params.permit(
- :status,
- :in_reply_to_id,
- :sensitive,
- :spoiler_text,
- :visibility,
- :language,
- :scheduled_at,
- allowed_mentions: [],
- media_ids: [],
- media_attributes: [
- :id,
- :thumbnail,
- :description,
- :focus,
- ],
- poll: [
- :multiple,
- :hide_totals,
- :expires_in,
- options: [],
- ]
- )
- end
- def pagination_params(core_params)
- params.slice(:limit).permit(:limit).merge(core_params)
- end
- end
|