You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.8 KiB
61 lines
1.8 KiB
class Api::V1::StatusesController < ApiController |
|
before_action :doorkeeper_authorize! |
|
respond_to :json |
|
|
|
def show |
|
@status = Status.find(params[:id]) |
|
end |
|
|
|
def context |
|
@status = Status.find(params[:id]) |
|
@ancestors = @status.ancestors |
|
@descendants = @status.descendants |
|
end |
|
|
|
def create |
|
@status = PostStatusService.new.call(current_user.account, params[:status], params[:in_reply_to_id].blank? ? nil : Status.find(params[:in_reply_to_id]), params[:media_ids]) |
|
render action: :show |
|
end |
|
|
|
def destroy |
|
@status = Status.where(account_id: current_user.account).find(params[:id]) |
|
RemoveStatusService.new.call(@status) |
|
render_empty |
|
end |
|
|
|
def reblog |
|
@status = ReblogService.new.call(current_user.account, Status.find(params[:id])).reload |
|
render action: :show |
|
end |
|
|
|
def unreblog |
|
RemoveStatusService.new.call(Status.where(account_id: current_user.account, reblog_of_id: params[:id]).first!) |
|
@status = Status.find(params[:id]) |
|
render action: :show |
|
end |
|
|
|
def favourite |
|
@status = FavouriteService.new.call(current_user.account, Status.find(params[:id])).status.reload |
|
render action: :show |
|
end |
|
|
|
def unfavourite |
|
@status = UnfavouriteService.new.call(current_user.account, Status.find(params[:id])).status.reload |
|
render action: :show |
|
end |
|
|
|
def home |
|
@statuses = Feed.new(:home, current_user.account).get(20, params[:max_id], params[:since_id]).to_a |
|
render action: :index |
|
end |
|
|
|
def mentions |
|
@statuses = Feed.new(:mentions, current_user.account).get(20, params[:max_id], params[:since_id]).to_a |
|
render action: :index |
|
end |
|
|
|
def public |
|
@statuses = Status.as_public_timeline(current_user.account).paginate_by_max_id(20, params[:max_id], params[:since_id]).to_a |
|
render action: :index |
|
end |
|
end
|
|
|