2016-11-30 09:32:26 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Admin::AccountsController < ApplicationController
|
|
|
|
before_action :require_admin!
|
2016-12-04 12:10:40 -05:00
|
|
|
before_action :set_account, except: :index
|
2016-11-30 09:32:26 -05:00
|
|
|
|
2016-12-13 07:42:10 -05:00
|
|
|
layout 'admin'
|
2016-11-30 09:32:26 -05:00
|
|
|
|
|
|
|
def index
|
2016-12-06 12:22:59 -05:00
|
|
|
@accounts = Account.alphabetic.paginate(page: params[:page], per_page: 40)
|
2016-12-04 12:10:40 -05:00
|
|
|
|
|
|
|
@accounts = @accounts.local if params[:local].present?
|
|
|
|
@accounts = @accounts.remote if params[:remote].present?
|
|
|
|
@accounts = @accounts.where(domain: params[:by_domain]) if params[:by_domain].present?
|
2016-12-06 12:22:59 -05:00
|
|
|
@accounts = @accounts.silenced if params[:silenced].present?
|
|
|
|
@accounts = @accounts.recent if params[:recent].present?
|
|
|
|
@accounts = @accounts.suspended if params[:suspended].present?
|
2016-12-04 12:10:40 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def show; end
|
|
|
|
|
2016-12-06 12:22:59 -05:00
|
|
|
def suspend
|
|
|
|
Admin::SuspensionWorker.perform_async(@account.id)
|
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
2017-02-14 18:22:58 -05:00
|
|
|
def unsuspend
|
|
|
|
@account.update(suspended: false)
|
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def silence
|
|
|
|
@account.update(silenced: true)
|
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def unsilence
|
|
|
|
@account.update(silenced: false)
|
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
2016-12-04 12:10:40 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
2016-12-03 13:08:07 -05:00
|
|
|
@account = Account.find(params[:id])
|
2016-11-30 09:32:26 -05:00
|
|
|
end
|
2016-12-04 12:10:40 -05:00
|
|
|
|
|
|
|
def account_params
|
2016-12-05 16:59:30 -05:00
|
|
|
params.require(:account).permit(:silenced, :suspended)
|
2016-12-04 12:10:40 -05:00
|
|
|
end
|
2016-11-30 09:32:26 -05:00
|
|
|
end
|