2017-01-01 13:52:25 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RemoteFollowController < ApplicationController
|
2017-08-04 22:24:58 -04:00
|
|
|
layout 'modal'
|
2017-01-01 13:52:25 -05:00
|
|
|
|
|
|
|
before_action :set_account
|
2017-11-21 01:13:37 -05:00
|
|
|
before_action :set_pack
|
2017-05-18 21:11:23 -04:00
|
|
|
before_action :gone, if: :suspended_account?
|
2018-06-30 22:12:34 -04:00
|
|
|
before_action :set_body_classes
|
2017-01-01 13:52:25 -05:00
|
|
|
|
|
|
|
def new
|
2017-05-01 18:44:23 -04:00
|
|
|
@remote_follow = RemoteFollow.new(session_params)
|
2017-01-01 13:52:25 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@remote_follow = RemoteFollow.new(resource_params)
|
|
|
|
|
|
|
|
if @remote_follow.valid?
|
2017-04-04 20:16:14 -04:00
|
|
|
session[:remote_follow] = @remote_follow.acct
|
2017-05-01 18:44:23 -04:00
|
|
|
redirect_to @remote_follow.subscribe_address_for(@account)
|
2017-01-01 13:52:25 -05:00
|
|
|
else
|
|
|
|
render :new
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def resource_params
|
|
|
|
params.require(:remote_follow).permit(:acct)
|
|
|
|
end
|
|
|
|
|
2017-05-01 18:44:23 -04:00
|
|
|
def session_params
|
|
|
|
{ acct: session[:remote_follow] }
|
2017-01-01 13:52:25 -05:00
|
|
|
end
|
|
|
|
|
2017-11-21 01:13:37 -05:00
|
|
|
def set_pack
|
|
|
|
use_pack 'modal'
|
|
|
|
end
|
|
|
|
|
2017-05-01 18:44:23 -04:00
|
|
|
def set_account
|
|
|
|
@account = Account.find_local!(params[:account_username])
|
2017-01-01 13:52:25 -05:00
|
|
|
end
|
2017-05-18 21:11:23 -04:00
|
|
|
|
|
|
|
def suspended_account?
|
|
|
|
@account.suspended?
|
|
|
|
end
|
2018-01-01 23:07:56 -05:00
|
|
|
|
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'modal-layout'
|
2018-08-17 21:03:12 -04:00
|
|
|
@hide_header = true
|
2018-01-01 23:07:56 -05:00
|
|
|
end
|
2017-01-01 13:52:25 -05:00
|
|
|
end
|