2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-08 04:09:25 +10:00
|
|
|
class Api::V1::StatusesController < Api::BaseController
|
2017-05-30 02:22:22 +10:00
|
|
|
include Authorization
|
|
|
|
|
2022-02-10 10:15:30 +11:00
|
|
|
before_action -> { authorize_if_got_token! :read, :'read:statuses' }, except: [:create, :update, :destroy]
|
|
|
|
before_action -> { doorkeeper_authorize! :write, :'write:statuses' }, only: [:create, :update, :destroy]
|
2019-07-05 10:15:24 +10:00
|
|
|
before_action :require_user!, except: [:show, :context]
|
|
|
|
before_action :set_status, only: [:show, :context]
|
2020-03-29 03:59:45 +11:00
|
|
|
before_action :set_thread, only: [:create]
|
2016-11-04 00:50:22 +11:00
|
|
|
|
2020-03-09 01:17:39 +11:00
|
|
|
override_rate_limit_headers :create, family: :statuses
|
2022-03-10 06:06:51 +11:00
|
|
|
override_rate_limit_headers :update, family: :statuses
|
2020-03-09 01:17:39 +11:00
|
|
|
|
2018-05-21 20:43:05 +10:00
|
|
|
# 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
|
|
|
|
|
2016-03-07 22:42:33 +11:00
|
|
|
def show
|
2018-08-19 23:52:38 +10:00
|
|
|
@status = cache_collection([@status], Status).first
|
2017-07-07 12:02:06 +10:00
|
|
|
render json: @status, serializer: REST::StatusSerializer
|
2016-03-07 22:42:33 +11:00
|
|
|
end
|
|
|
|
|
2016-09-16 08:21:51 +10:00
|
|
|
def context
|
2018-05-21 20:43:05 +10:00
|
|
|
ancestors_results = @status.in_reply_to_id.nil? ? [] : @status.ancestors(CONTEXT_LIMIT, current_account)
|
|
|
|
descendants_results = @status.descendants(CONTEXT_LIMIT, current_account)
|
2017-02-06 03:51:44 +11:00
|
|
|
loaded_ancestors = cache_collection(ancestors_results, Status)
|
|
|
|
loaded_descendants = cache_collection(descendants_results, Status)
|
|
|
|
|
2017-07-07 12:02:06 +10:00
|
|
|
@context = Context.new(ancestors: loaded_ancestors, descendants: loaded_descendants)
|
|
|
|
statuses = [@status] + @context.ancestors + @context.descendants
|
2016-11-23 08:59:54 +11:00
|
|
|
|
2017-07-07 12:02:06 +10:00
|
|
|
render json: @context, serializer: REST::ContextSerializer, relationships: StatusRelationshipsPresenter.new(statuses, current_user&.account_id)
|
2016-09-16 08:21:51 +10:00
|
|
|
end
|
|
|
|
|
2016-03-07 22:42:33 +11:00
|
|
|
def create
|
2022-02-10 10:15:30 +11:00
|
|
|
@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],
|
|
|
|
idempotency: request.headers['Idempotency-Key'],
|
|
|
|
with_rate_limit: true
|
|
|
|
)
|
2017-04-25 23:04:49 +10:00
|
|
|
|
2019-01-05 22:43:28 +11:00
|
|
|
render json: @status, serializer: @status.is_a?(ScheduledStatus) ? REST::ScheduledStatusSerializer : REST::StatusSerializer
|
2016-03-07 22:42:33 +11:00
|
|
|
end
|
|
|
|
|
2022-02-10 10:15:30 +11:00
|
|
|
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],
|
|
|
|
sensitive: status_params[:sensitive],
|
|
|
|
spoiler_text: status_params[:spoiler_text],
|
|
|
|
poll: status_params[:poll]
|
|
|
|
)
|
|
|
|
|
|
|
|
render json: @status, serializer: REST::StatusSerializer
|
|
|
|
end
|
|
|
|
|
2016-09-27 07:55:21 +10:00
|
|
|
def destroy
|
2022-02-10 10:15:30 +11:00
|
|
|
@status = Status.where(account: current_account).find(params[:id])
|
2017-05-31 06:56:31 +10:00
|
|
|
authorize @status, :destroy?
|
|
|
|
|
2019-08-23 05:55:56 +10:00
|
|
|
@status.discard
|
2020-07-20 01:04:02 +10:00
|
|
|
@status.account.statuses_count = @status.account.statuses_count - 1
|
2022-04-09 03:17:37 +10:00
|
|
|
json = render_to_body json: @status, serializer: REST::StatusSerializer, source_requested: true
|
|
|
|
|
|
|
|
RemovalWorker.perform_async(@status.id, { 'redraft' => true })
|
2017-05-31 06:56:31 +10:00
|
|
|
|
2022-04-09 03:17:37 +10:00
|
|
|
render json: json
|
2016-09-27 07:55:21 +10:00
|
|
|
end
|
|
|
|
|
2016-11-04 00:50:22 +11:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_status
|
|
|
|
@status = Status.find(params[:id])
|
2017-05-30 02:22:22 +10:00
|
|
|
authorize @status, :show?
|
|
|
|
rescue Mastodon::NotPermittedError
|
2020-05-04 00:30:36 +10:00
|
|
|
not_found
|
2016-11-04 00:50:22 +11:00
|
|
|
end
|
2017-04-04 09:33:34 +10:00
|
|
|
|
2020-03-29 03:59:45 +11:00
|
|
|
def set_thread
|
2022-03-03 04:57:26 +11:00
|
|
|
@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
|
2020-03-29 03:59:45 +11:00
|
|
|
render json: { error: I18n.t('statuses.errors.in_reply_not_found') }, status: 404
|
|
|
|
end
|
|
|
|
|
2017-04-04 09:33:34 +10:00
|
|
|
def status_params
|
2019-03-04 08:18:23 +11:00
|
|
|
params.permit(
|
|
|
|
:status,
|
|
|
|
:in_reply_to_id,
|
|
|
|
:sensitive,
|
|
|
|
:spoiler_text,
|
|
|
|
:visibility,
|
2022-02-10 10:15:30 +11:00
|
|
|
:language,
|
2019-03-04 08:18:23 +11:00
|
|
|
:scheduled_at,
|
|
|
|
media_ids: [],
|
|
|
|
poll: [
|
|
|
|
:multiple,
|
|
|
|
:hide_totals,
|
|
|
|
:expires_in,
|
|
|
|
options: [],
|
|
|
|
]
|
|
|
|
)
|
2017-04-04 09:33:34 +10:00
|
|
|
end
|
2017-04-09 07:39:31 +10:00
|
|
|
|
|
|
|
def pagination_params(core_params)
|
2018-04-02 10:09:50 +10:00
|
|
|
params.slice(:limit).permit(:limit).merge(core_params)
|
2017-04-09 07:39:31 +10:00
|
|
|
end
|
2016-03-07 22:42:33 +11:00
|
|
|
end
|