2017-01-02 03:52:25 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RemoteFollowController < ApplicationController
|
2019-07-08 19:03:45 +09:00
|
|
|
include AccountOwnedConcern
|
|
|
|
|
2017-08-05 11:24:58 +09:00
|
|
|
layout 'modal'
|
2017-01-02 03:52:25 +09:00
|
|
|
|
2018-07-01 11:12:34 +09:00
|
|
|
before_action :set_body_classes
|
2017-01-02 03:52:25 +09:00
|
|
|
|
2019-09-28 08:33:27 +09:00
|
|
|
skip_before_action :require_functional!
|
|
|
|
|
2017-01-02 03:52:25 +09:00
|
|
|
def new
|
2017-05-02 07:44:23 +09:00
|
|
|
@remote_follow = RemoteFollow.new(session_params)
|
2017-01-02 03:52:25 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@remote_follow = RemoteFollow.new(resource_params)
|
|
|
|
|
|
|
|
if @remote_follow.valid?
|
2017-04-05 09:16:14 +09:00
|
|
|
session[:remote_follow] = @remote_follow.acct
|
2017-05-02 07:44:23 +09:00
|
|
|
redirect_to @remote_follow.subscribe_address_for(@account)
|
2017-01-02 03:52:25 +09:00
|
|
|
else
|
|
|
|
render :new
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def resource_params
|
|
|
|
params.require(:remote_follow).permit(:acct)
|
|
|
|
end
|
|
|
|
|
2017-05-02 07:44:23 +09:00
|
|
|
def session_params
|
2019-08-30 09:19:17 +09:00
|
|
|
{ acct: session[:remote_follow] || current_account&.username }
|
2017-01-02 03:52:25 +09:00
|
|
|
end
|
|
|
|
|
2018-01-02 13:07:56 +09:00
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'modal-layout'
|
2018-08-18 10:03:12 +09:00
|
|
|
@hide_header = true
|
2018-01-02 13:07:56 +09:00
|
|
|
end
|
2017-01-02 03:52:25 +09:00
|
|
|
end
|