about summary refs log tree commit diff
path: root/app/controllers/admin/accounts_controller.rb
blob: 25cb2fb7293cc87431ff3005bb3b7d1a8abf3baf (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# frozen_string_literal: true

module Admin
  class AccountsController < BaseController
    before_action :set_account, only: [:show, :redownload, :remove_avatar, :remove_header, :enable, :mark_known, :mark_unknown, :manual_only, :auto_trust, :allow_public, :allow_nonsensitive, :unsilence, :unsuspend, :memorialize, :approve, :reject, :sync]
    before_action :require_remote_account!, only: [:redownload, :sync]
    before_action :require_local_account!, only: [:enable, :memorialize, :approve, :reject]

    def index
      authorize :account, :index?
      @accounts = filtered_accounts.page(params[:page])
    end

    def show
      authorize @account, :show?

      @account_moderation_note = current_account.account_moderation_notes.new(target_account: @account)
      @moderation_notes        = @account.targeted_moderation_notes.latest
      @warnings                = @account.targeted_account_warnings.latest.custom
    end

    def memorialize
      authorize @account, :memorialize?
      @account.memorialize!
      log_action :memorialize, @account
      redirect_to admin_account_path(@account.id)
    end

    def enable
      authorize @account.user, :enable?
      @account.user.enable!
      log_action :enable, @account.user
      redirect_to admin_account_path(@account.id)
    end

    def approve
      authorize @account.user, :approve?
      @account.user.approve!
      redirect_to admin_pending_accounts_path
    end

    def reject
      authorize @account.user, :reject?
      SuspendAccountService.new.call(@account, including_user: true, destroy: true, skip_distribution: true)
      redirect_to admin_pending_accounts_path
    end

    def mark_unknown
      authorize @account, :mark_unknown?
      @account.mark_unknown!
      log_action :mark_unknown, @account
      redirect_to admin_account_path(@account.id)
    end

    def mark_known
      authorize @account, :mark_known?
      @account.mark_known!
      log_action :mark_known, @account
      redirect_to admin_account_path(@account.id)
    end

    def manual_only
      authorize @account, :manual_only?
      @account.manual_only!
      log_action :manual_only, @account
      redirect_to admin_account_path(@account.id)
    end

    def auto_trust
      authorize @account, :auto_trust?
      @account.auto_trust!
      log_action :auto_trust, @account
      redirect_to admin_account_path(@account.id)
    end

    def force_sensitive
      authorize @account, :force_sensitive?
      @account.force_sensitive!
      log_action :force_sensitive, @account
      redirect_to admin_account_path(@account.id)
    end

    def allow_nonsensitive
      authorize @account, :allow_nonsensitive?
      @account.allow_nonsensitive!
      log_action :allow_nonsensitive, @account
      redirect_to admin_account_path(@account.id)
    end

    def force_unlisted
      authorize @account, :force_unlisted?
      @account.force_unlisted!
      log_action :force_unlisted, @account
      redirect_to admin_account_path(@account.id)
    end

    def allow_public
      authorize @account, :allow_public?
      @account.allow_public!
      log_action :allow_public, @account
      redirect_to admin_account_path(@account.id)
    end

    def unsilence
      authorize @account, :unsilence?
      @account.unsilence!
      log_action :unsilence, @account
      redirect_to admin_account_path(@account.id)
    end

    def unsuspend
      authorize @account, :unsuspend?
      @account.unsuspend!
      log_action :unsuspend, @account
      redirect_to admin_account_path(@account.id)
    end

    def redownload
      authorize @account, :redownload?

      @account.update!(last_webfingered_at: nil)
      ResolveAccountService.new.call(@account)

      redirect_to admin_account_path(@account.id)
    end

    def sync
      authorize @account, :sync?

      @account.update!(last_webfingered_at: nil)
      ResolveAccountService.new.call(@account)
      SyncRemoteAccountWorker.perform_async(@account.id)

      redirect_to admin_account_path(@account.id)
    end

    def remove_avatar
      authorize @account, :remove_avatar?

      @account.avatar = nil
      @account.save!

      log_action :remove_avatar, @account.user

      redirect_to admin_account_path(@account.id)
    end

    def remove_header
      authorize @account, :remove_header?

      @account.header = nil
      @account.save!

      log_action :remove_header, @account.user

      redirect_to admin_account_path(@account.id)
    end

    private

    def set_account
      @account = Account.find(params[:id])
    end

    def require_remote_account!
      redirect_to admin_account_path(@account.id) if @account.local?
    end

    def require_local_account!
      redirect_to admin_account_path(@account.id) unless @account.local? && @account.user.present?
    end

    def filtered_accounts
      AccountFilter.new(filter_params).results
    end

    def filter_params
      params.permit(
        :local,
        :remote,
        :by_domain,
        :active,
        :pending,
        :silenced,
        :suspended,
        :username,
        :display_name,
        :email,
        :ip,
        :staff
      )
    end
  end
end