Class: CommandTower::Services::Auth::EmailVerification::Verify

Inherits:
CommandTower::Services::ApplicationService show all
Defined in:
app/services/command_tower/services/auth/email_verification/verify.rb

Constant Summary collapse

ALREADY_VERIFIED_MESSAGE =
"Email is already verified"
VERIFIED_MESSAGE =
"Successfully verified email"
INVALID_CODE_MESSAGE =
"Incorrect verification code provided"

Constants inherited from CommandTower::ServiceBase

CommandTower::ServiceBase::ON_ARGUMENT_VALIDATION

Instance Method Summary collapse

Methods inherited from CommandTower::Services::ApplicationService

call, inherited

Methods included from Transactional

#fail_transaction!, #transaction

Methods inherited from CommandTower::ServiceBase

#command_tower_lifecycle, inherited, #internal_validate, #service_lifecycle_error_codes, #service_lifecycle_log_level, #validate!

Methods included from Logging::LifecycleDeclaration

included

Methods included from Execution::ContextAccess

#audit, #execution_context, #log_debug, #log_error, #log_info, #log_warn, #publish_event

Methods included from ArgumentValidation

included

Methods included from CommandTower::ServiceLogging

included

Instance Method Details

#callObject



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'app/services/command_tower/services/auth/email_verification/verify.rb', line 15

def call
  if user.email_validated
    context.message = ALREADY_VERIFIED_MESSAGE
    return
  end

  result = CommandTower::Secrets::Verify.(
    secret: code,
    reason: CommandTower::Secrets::EMAIL_VERIFICIATION
  )
  invalid_code! if result.failure?

  if result.user != user
    log_warn("Yikes! The logged in user does not match the correct code. Kick them back out and do not verify")
    invalid_code!
  end

  user.update(email_validated: true)

  audit(:email_verified, subject: user, affected_user: user, changes: {})

  context.user = user.reload
  context.message = VERIFIED_MESSAGE
end