about summary refs log tree commit diff
path: root/app/controllers/settings/follower_domains_controller.rb
blob: 9c39e66bbb1c04e175eb356cce67b73fd0284325 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

class Settings::FollowerDomainsController < ApplicationController
  layout 'admin'

  before_action :authenticate_user!
  before_action :set_body_classes

  def show
    @account = current_account
    @domains = current_account.followers.reorder(Arel.sql('MIN(follows.id) DESC')).group('accounts.domain').select('accounts.domain, count(accounts.id) as accounts_from_domain').page(params[:page]).per(10)
  end

  def update
    domains = bulk_params[:select] || []

    AfterAccountDomainBlockWorker.push_bulk(domains) do |domain|
      [current_account.id, domain]
    end

    redirect_to settings_follower_domains_path, notice: I18n.t('followers.success', count: domains.size)
  end

  private

  def bulk_params
    params.permit(select: [])
  end

  def set_body_classes
    @body_classes = 'admin'
  end
end