Class: Decidim::Verifications::ConfirmUserAuthorization

Inherits:
Command
  • Object
show all
Defined in:
decidim-verifications/app/commands/decidim/verifications/confirm_user_authorization.rb

Overview

A command to confirm a previous partial authorization.

Constant Summary collapse

MAX_FAILED_ATTEMPTS =

Number of failed confirmation attempts before throttling.

2

Instance Method Summary collapse

Methods inherited from Command

call, #evaluate, #method_missing, #respond_to_missing?, #transaction, #with_events

Constructor Details

#initialize(authorization, form, session) ⇒ ConfirmUserAuthorization

Public: Initializes the command.

authorization - An Authorization to be confirmed. form - A form object with the verification data to confirm it.



14
15
16
17
18
# File 'decidim-verifications/app/commands/decidim/verifications/confirm_user_authorization.rb', line 14

def initialize(authorization, form, session)
  @authorization = authorization
  @form = form
  @session = session
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Decidim::Command

Instance Method Details

#callObject

Executes the command. Broadcasts these events:

  • :ok when everything is valid.

  • :invalid if the handler was not valid and we could not proceed.

Returns nothing.



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'decidim-verifications/app/commands/decidim/verifications/confirm_user_authorization.rb', line 26

def call
  return already_confirmed! if authorization.granted?

  return invalid! unless form.valid?

  throttle! if too_many_failed_attempts?

  if confirmation_successful?
    valid!
  else
    invalid!
  end
rescue StandardError => e
  invalid!(e.message)
end