about summary refs log tree commit diff
path: root/app/controllers/api/v1/statuses/reblogs_controller.rb
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-06-10 03:39:26 -0400
committerEugen Rochko <eugen@zeonfederated.com>2017-06-10 09:39:26 +0200
commit2925372ff44347fa7066c380a5d51dd35f80682f (patch)
tree522c9bae03bbb1bbc7740a7edbddcce15195cd88 /app/controllers/api/v1/statuses/reblogs_controller.rb
parent778430b54a97b619189aaa4140f3e9fc16025323 (diff)
Move create/destroy actions for api/v1/statuses to namespace (#3678)
Each of mute, favourite, reblog has been updated to:

- Have a separate controller with just a create and destroy action
- Preserve historical route names to not break the API
- Mild refactoring to break up long methods
Diffstat (limited to 'app/controllers/api/v1/statuses/reblogs_controller.rb')
-rw-r--r--app/controllers/api/v1/statuses/reblogs_controller.rb35
1 files changed, 35 insertions, 0 deletions
diff --git a/app/controllers/api/v1/statuses/reblogs_controller.rb b/app/controllers/api/v1/statuses/reblogs_controller.rb
new file mode 100644
index 000000000..ee9c5b3a6
--- /dev/null
+++ b/app/controllers/api/v1/statuses/reblogs_controller.rb
@@ -0,0 +1,35 @@
+# frozen_string_literal: true
+
+class Api::V1::Statuses::ReblogsController < Api::BaseController
+  include Authorization
+
+  before_action -> { doorkeeper_authorize! :write }
+  before_action :require_user!
+
+  respond_to :json
+
+  def create
+    @status = ReblogService.new.call(current_user.account, status_for_reblog)
+    render 'api/v1/statuses/show'
+  end
+
+  def destroy
+    @status = status_for_destroy.reblog
+    @reblogs_map = { @status.id => false }
+
+    authorize status_for_destroy, :unreblog?
+    RemovalWorker.perform_async(status_for_destroy.id)
+
+    render 'api/v1/statuses/show'
+  end
+
+  private
+
+  def status_for_reblog
+    Status.find params[:status_id]
+  end
+
+  def status_for_destroy
+    current_user.account.statuses.where(reblog_of_id: params[:status_id]).first!
+  end
+end