diff options
author | Starfall <root@starfall.blue> | 2020-03-01 11:49:29 -0600 |
---|---|---|
committer | Starfall <root@starfall.blue> | 2020-03-01 11:49:29 -0600 |
commit | 22a55edc158352003a3953964c9d332a60c86428 (patch) | |
tree | a26bd8374e4b8264dbae815fbfbd3b91ae51450b /app/controllers/api/v1/statuses/reblogs_controller.rb | |
parent | 5902299384d15249fe4b84b8761d4a49f3c7f6fd (diff) | |
parent | 553a16c6f8a74677336114b6379e1db1d19cb81c (diff) |
Merge branch 'glitch'
Diffstat (limited to 'app/controllers/api/v1/statuses/reblogs_controller.rb')
-rw-r--r-- | app/controllers/api/v1/statuses/reblogs_controller.rb | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/app/controllers/api/v1/statuses/reblogs_controller.rb b/app/controllers/api/v1/statuses/reblogs_controller.rb index 42381a37f..67106ccbe 100644 --- a/app/controllers/api/v1/statuses/reblogs_controller.rb +++ b/app/controllers/api/v1/statuses/reblogs_controller.rb @@ -5,33 +5,34 @@ class Api::V1::Statuses::ReblogsController < Api::BaseController before_action -> { doorkeeper_authorize! :write, :'write:statuses' } before_action :require_user! + before_action :set_reblog respond_to :json def create - @status = ReblogService.new.call(current_user.account, status_for_reblog, reblog_params) + @status = ReblogService.new.call(current_account, @reblog, reblog_params) render json: @status, serializer: REST::StatusSerializer end def destroy - @status = status_for_destroy.reblog - @reblogs_map = { @status.id => false } + @status = current_account.statuses.find_by(reblog_of_id: @reblog.id) - authorize status_for_destroy, :unreblog? - status_for_destroy.discard - RemovalWorker.perform_async(status_for_destroy.id) + if @status + authorize @status, :unreblog? + @status.discard + RemovalWorker.perform_async(@status.id) + end - render json: @status, serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new([@status], current_user&.account_id, reblogs_map: @reblogs_map) + render json: @reblog, serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new([@status], current_account.id, reblogs_map: { @reblog.id => false }) end private - def status_for_reblog - Status.find params[:status_id] - end - - def status_for_destroy - @status_for_destroy ||= current_user.account.statuses.where(reblog_of_id: params[:status_id]).first! + def set_reblog + @reblog = Status.find(params[:status_id]) + authorize @reblog, :show? + rescue Mastodon::NotPermittedError + not_found end def reblog_params |