2019-03-16 10:23:22 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RelationshipsController < ApplicationController
|
|
|
|
layout 'admin'
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
|
|
|
before_action :set_accounts, only: :show
|
2020-11-12 16:43:12 +00:00
|
|
|
before_action :set_relationships, only: :show
|
2023-04-19 14:07:29 +00:00
|
|
|
before_action :set_cache_headers
|
2019-03-16 10:23:22 +00:00
|
|
|
|
|
|
|
helper_method :following_relationship?, :followed_by_relationship?, :mutual_relationship?
|
|
|
|
|
|
|
|
def show
|
|
|
|
@form = Form::AccountBatch.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
@form = Form::AccountBatch.new(form_account_batch_params.merge(current_account: current_account, action: action_from_button))
|
|
|
|
@form.save
|
|
|
|
rescue ActionController::ParameterMissing
|
|
|
|
# Do nothing
|
2023-03-03 19:36:18 +00:00
|
|
|
rescue Mastodon::NotPermittedError, ActiveRecord::RecordNotFound
|
|
|
|
flash[:alert] = I18n.t('relationships.follow_failure') if action_from_button == 'follow'
|
2019-03-16 10:23:22 +00:00
|
|
|
ensure
|
2020-01-23 19:33:20 +00:00
|
|
|
redirect_to relationships_path(filter_params)
|
2019-03-16 10:23:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_accounts
|
2020-01-23 19:33:20 +00:00
|
|
|
@accounts = RelationshipFilter.new(current_account, filter_params).results.page(params[:page]).per(40)
|
2019-03-16 10:23:22 +00:00
|
|
|
end
|
|
|
|
|
2020-11-12 16:43:12 +00:00
|
|
|
def set_relationships
|
2023-12-18 16:14:43 +00:00
|
|
|
@relationships = AccountRelationshipsPresenter.new(@accounts, current_user.account_id)
|
2020-11-12 16:43:12 +00:00
|
|
|
end
|
|
|
|
|
2019-03-16 10:23:22 +00:00
|
|
|
def form_account_batch_params
|
|
|
|
params.require(:form_account_batch).permit(:action, account_ids: [])
|
|
|
|
end
|
|
|
|
|
|
|
|
def following_relationship?
|
|
|
|
params[:relationship].blank? || params[:relationship] == 'following'
|
|
|
|
end
|
|
|
|
|
|
|
|
def mutual_relationship?
|
|
|
|
params[:relationship] == 'mutual'
|
|
|
|
end
|
|
|
|
|
|
|
|
def followed_by_relationship?
|
|
|
|
params[:relationship] == 'followed_by'
|
|
|
|
end
|
|
|
|
|
2020-01-23 19:33:20 +00:00
|
|
|
def filter_params
|
2020-01-20 14:55:03 +00:00
|
|
|
params.slice(:page, *RelationshipFilter::KEYS).permit(:page, *RelationshipFilter::KEYS)
|
2019-03-16 10:23:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def action_from_button
|
2020-11-12 15:58:00 +00:00
|
|
|
if params[:follow]
|
|
|
|
'follow'
|
|
|
|
elsif params[:unfollow]
|
2019-03-16 10:23:22 +00:00
|
|
|
'unfollow'
|
|
|
|
elsif params[:remove_from_followers]
|
|
|
|
'remove_from_followers'
|
2023-03-03 19:25:15 +00:00
|
|
|
elsif params[:block_domains] || params[:remove_domains_from_followers]
|
|
|
|
'remove_domains_from_followers'
|
2019-03-16 10:23:22 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-04-19 14:07:29 +00:00
|
|
|
def set_cache_headers
|
|
|
|
response.cache_control.replace(private: true, no_store: true)
|
|
|
|
end
|
2019-03-16 10:23:22 +00:00
|
|
|
end
|