You are here

public function test_google_authenticator::submitForm in Google Authenticator / 2 Factor Authentication - 2FA 8

Same name and namespace in other branches
  1. 8.2 src/Form/test_google_authenticator.php \Drupal\miniorange_2fa\Form\test_google_authenticator::submitForm()

Form submit handler for email verify.

Overrides FormInterface::submitForm

File

src/Form/test_google_authenticator.php, line 93
Email verification functions.

Class

test_google_authenticator
Menu callback for email verification.

Namespace

Drupal\miniorange_2fa\Form

Code

public function submitForm(array &$form, \Drupal\Core\Form\FormStateInterface $form_state) {
  $form_state
    ->setRebuild();
  $input = $form_state
    ->getUserInput();
  $user = User::load(\Drupal::currentUser()
    ->id());
  $user_id = $user
    ->id();
  $utilities = new MoAuthUtilities();
  $custom_attribute = $utilities::get_users_custom_attribute($user_id);
  $user_email = $custom_attribute[0]->miniorange_registered_email;
  $token = $input['mo_auth_googleauth_token'];
  if (empty($token)) {
    \Drupal::messenger()
      ->addMessage(t('Please enter the passcode.'), 'error');
    return;
  }
  $authTypeCode = $input['authTypeCode'];
  $customer = new MiniorangeCustomerProfile();
  $miniorange_user = new MiniorangeUser($customer
    ->getCustomerID(), $user_email, NULL, NULL, $authTypeCode);
  $auth_api_handler = new AuthenticationAPIHandler($customer
    ->getCustomerID(), $customer
    ->getAPIKey());
  $response = $auth_api_handler
    ->validate($miniorange_user, '', $token);

  // Clear all the messages
  \Drupal::messenger()
    ->deleteAll();

  // read API response
  if ($response->status == 'SUCCESS') {
    $message = 'You have successfully completed the test.';
    MoAuthUtilities::show_error_or_success_message($message, 'status');
  }
  elseif ($response->status == 'FAILED') {
    \Drupal::messenger()
      ->addMessage(t('The passcode you have entered is incorrect. Please try again.'), 'error');
    return;
  }
  else {
    $message = 'An error occured while processing your request. Please try again.';
    MoAuthUtilities::show_error_or_success_message($message, 'error');
  }
}