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
|
|
|
|
|
2017-06-10 09:39:26 +02:00
|
|
|
before_action :authorize_if_got_token, except: [:create, :destroy]
|
|
|
|
before_action -> { doorkeeper_authorize! :write }, only: [:create, :destroy]
|
2017-06-09 20:12:40 +02:00
|
|
|
before_action :require_user!, except: [:show, :context, :card]
|
2017-06-10 09:39:26 +02:00
|
|
|
before_action :set_status, only: [:show, :context, :card]
|
2016-11-03 14:50:22 +01:00
|
|
|
|
|
|
|
respond_to :json
|
2016-03-07 12:42:33 +01:00
|
|
|
|
|
|
|
def show
|
2016-11-23 18:56:30 +01:00
|
|
|
cached = Rails.cache.read(@status.cache_key)
|
|
|
|
@status = cached unless cached.nil?
|
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
|
2017-02-05 17:51:44 +01:00
|
|
|
ancestors_results = @status.in_reply_to_id.nil? ? [] : @status.ancestors(current_account)
|
|
|
|
descendants_results = @status.descendants(current_account)
|
|
|
|
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
|
|
|
|
|
2017-01-20 01:00:14 +01:00
|
|
|
def card
|
2017-09-01 16:20:16 +02:00
|
|
|
@card = @status.preview_cards.first
|
2017-07-07 04:02:06 +02:00
|
|
|
|
|
|
|
if @card.nil?
|
|
|
|
render_empty
|
|
|
|
else
|
|
|
|
render json: @card, serializer: REST::PreviewCardSerializer
|
|
|
|
end
|
2017-01-20 01:00:14 +01: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,
|
|
|
|
status_params[:status],
|
|
|
|
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],
|
|
|
|
application: doorkeeper_token.application,
|
|
|
|
idempotency: request.headers['Idempotency-Key'])
|
|
|
|
|
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-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?
|
|
|
|
|
2016-11-29 15:32:25 +01:00
|
|
|
RemovalWorker.perform_async(@status.id)
|
2017-05-30 22:56:31 +02:00
|
|
|
|
2016-09-26 23:55:21 +02:00
|
|
|
render_empty
|
|
|
|
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
|
|
|
|
# Reraise in order to get a 404 instead of a 403 error code
|
|
|
|
raise ActiveRecord::RecordNotFound
|
2016-11-03 14:50:22 +01:00
|
|
|
end
|
2017-04-04 01:33:34 +02:00
|
|
|
|
|
|
|
def status_params
|
|
|
|
params.permit(:status, :in_reply_to_id, :sensitive, :spoiler_text, :visibility, media_ids: [])
|
|
|
|
end
|
2017-04-08 23:39:31 +02:00
|
|
|
|
|
|
|
def pagination_params(core_params)
|
|
|
|
params.permit(:limit).merge(core_params)
|
|
|
|
end
|
2017-04-18 21:58:57 +02:00
|
|
|
|
|
|
|
def authorize_if_got_token
|
|
|
|
request_token = Doorkeeper::OAuth::Token.from_request(request, *Doorkeeper.configuration.access_token_methods)
|
|
|
|
doorkeeper_authorize! :read if request_token
|
|
|
|
end
|
2016-03-07 12:42:33 +01:00
|
|
|
end
|