Skip to content
Extraits de code Groupes Projets
accounts_controller.rb 3,16 ko
Newer Older
  • Learn to ignore specific revisions
  • # frozen_string_literal: true
    
    
    module Admin
      class AccountsController < BaseController
    
        before_action :set_account, only: [:show, :subscribe, :unsubscribe, :redownload, :remove_avatar, :remove_header, :enable, :memorialize]
    
        before_action :require_remote_account!, only: [:subscribe, :unsubscribe, :redownload]
    
        before_action :require_local_account!, only: [:enable, :memorialize]
    
        def index
    
          @accounts = filtered_accounts.page(params[:page])
    
    nullkal's avatar
    nullkal a validé
        def show
    
    nullkal's avatar
    nullkal a validé
          @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
    
    nullkal's avatar
    nullkal a validé
        end
    
          Pubsubhubbub::SubscribeWorker.perform_async(@account.id)
          redirect_to admin_account_path(@account.id)
        end
    
        def unsubscribe
    
          authorize @account, :unsubscribe?
    
          Pubsubhubbub::UnsubscribeWorker.perform_async(@account.id)
    
          redirect_to admin_account_path(@account.id)
        end
    
    
          authorize @account, :memorialize?
    
          log_action :memorialize, @account
    
          redirect_to admin_account_path(@account.id)
        end
    
        def enable
    
          authorize @account.user, :enable?
    
          log_action :enable, @account.user
    
          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
    
    
          @account.reset_avatar!
          @account.reset_header!
    
          @account.save!
    
          redirect_to admin_account_path(@account.id)
    
        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
    
    
        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
    
        def filter_params
          params.permit(
            :local,
            :remote,
            :by_domain,
    
            :suspended,
            :username,
            :display_name,
            :email,