mastodon/app/controllers/remote_follow_controller.rb

42 lines
816 B
Ruby
Raw Permalink Normal View History

2017-01-01 19:52:25 +01:00
# frozen_string_literal: true
class RemoteFollowController < ApplicationController
include AccountOwnedConcern
layout 'modal'
2017-01-01 19:52:25 +01:00
before_action :set_body_classes
2017-01-01 19:52:25 +01:00
skip_before_action :require_functional!
2017-01-01 19:52:25 +01:00
def new
@remote_follow = RemoteFollow.new(session_params)
2017-01-01 19:52:25 +01:00
end
def create
@remote_follow = RemoteFollow.new(resource_params)
if @remote_follow.valid?
session[:remote_follow] = @remote_follow.acct
redirect_to @remote_follow.subscribe_address_for(@account)
2017-01-01 19:52:25 +01:00
else
render :new
end
end
private
def resource_params
params.require(:remote_follow).permit(:acct)
end
def session_params
{ acct: session[:remote_follow] || current_account&.username }
2017-01-01 19:52:25 +01:00
end
2018-01-02 05:07:56 +01:00
def set_body_classes
@body_classes = 'modal-layout'
@hide_header = true
2018-01-02 05:07:56 +01:00
end
2017-01-01 19:52:25 +01:00
end