2019-07-08 12:03:45 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module AccountOwnedConcern
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2019-07-30 11:10:46 +02:00
|
|
|
before_action :authenticate_user!, if: -> { whitelist_mode? && request.format != :json }
|
2019-07-08 12:03:45 +02:00
|
|
|
before_action :set_account, if: :account_required?
|
|
|
|
before_action :check_account_approval, if: :account_required?
|
|
|
|
before_action :check_account_suspension, if: :account_required?
|
2022-01-28 14:24:37 +01:00
|
|
|
before_action :check_account_confirmation, if: :account_required?
|
2019-07-08 12:03:45 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def account_required?
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find_local!(username_param)
|
|
|
|
end
|
|
|
|
|
|
|
|
def username_param
|
|
|
|
params[:account_username]
|
|
|
|
end
|
|
|
|
|
|
|
|
def check_account_approval
|
|
|
|
not_found if @account.local? && @account.user_pending?
|
|
|
|
end
|
|
|
|
|
2022-01-28 14:24:37 +01:00
|
|
|
def check_account_confirmation
|
|
|
|
not_found if @account.local? && !@account.user_confirmed?
|
|
|
|
end
|
|
|
|
|
2019-07-08 12:03:45 +02:00
|
|
|
def check_account_suspension
|
2020-11-08 00:28:39 +01:00
|
|
|
if @account.suspended_permanently?
|
|
|
|
permanent_suspension_response
|
|
|
|
elsif @account.suspended? && !skip_temporary_suspension_response?
|
|
|
|
temporary_suspension_response
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def skip_temporary_suspension_response?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def permanent_suspension_response
|
|
|
|
expires_in(3.minutes, public: true)
|
|
|
|
gone
|
|
|
|
end
|
|
|
|
|
|
|
|
def temporary_suspension_response
|
|
|
|
expires_in(3.minutes, public: true)
|
|
|
|
forbidden
|
2019-07-08 12:03:45 +02:00
|
|
|
end
|
|
|
|
end
|