From 23955d956e799538b3e05fcd967390a541cfe473 Mon Sep 17 00:00:00 2001 From: Shuhei Kitagawa Date: Sun, 24 Jun 2018 19:55:55 +0900 Subject: Add tests for remote_unfollows_controller (#7879) --- app/controllers/remote_unfollows_controller.rb | 39 ++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 app/controllers/remote_unfollows_controller.rb (limited to 'app/controllers/remote_unfollows_controller.rb') diff --git a/app/controllers/remote_unfollows_controller.rb b/app/controllers/remote_unfollows_controller.rb new file mode 100644 index 000000000..af5943363 --- /dev/null +++ b/app/controllers/remote_unfollows_controller.rb @@ -0,0 +1,39 @@ +# frozen_string_literal: true + +class RemoteUnfollowsController < ApplicationController + layout 'modal' + + before_action :authenticate_user! + before_action :set_body_classes + + def create + @account = unfollow_attempt.try(:target_account) + + if @account.nil? + render :error + else + render :success + end + rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError + render :error + end + + private + + def unfollow_attempt + username, domain = acct_without_prefix.split('@') + UnfollowService.new.call(current_account, Account.find_remote!(username, domain)) + end + + def acct_without_prefix + acct_params.gsub(/\Aacct:/, '') + end + + def acct_params + params.fetch(:acct, '') + end + + def set_body_classes + @body_classes = 'modal-layout' + end +end -- cgit