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