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