You are here

class configure_google_authenticator in Google Authenticator / 2 Factor Authentication - 2FA 8

Same name and namespace in other branches
  1. 8.2 src/Form/configure_google_authenticator.php \Drupal\miniorange_2fa\form\configure_google_authenticator

Hierarchy

Expanded class hierarchy of configure_google_authenticator

File

src/Form/configure_google_authenticator.php, line 14

Namespace

Drupal\miniorange_2fa\form
View source
class configure_google_authenticator extends FormBase {
  public function getFormId() {
    return 'miniorange_configure_google_authenticator';
  }
  public function buildForm(array $form, \Drupal\Core\Form\FormStateInterface $form_state) {
    global $base_url;
    $androidAppLink = file_create_url($base_url . '/' . drupal_get_path('module', 'miniorange_2fa') . '/includes/images/android-google-authenticator-app-link.png');
    $iPhoneAppLink = file_create_url($base_url . '/' . drupal_get_path('module', 'miniorange_2fa') . '/includes/images/iphone-google-authenticator-app-link.png');
    $androidAppQR = file_create_url($base_url . '/' . drupal_get_path('module', 'miniorange_2fa') . '/includes/images/android-google-authenticator-app-qr.jpg');
    $iPhoneAppQR = file_create_url($base_url . '/' . drupal_get_path('module', 'miniorange_2fa') . '/includes/images/iphone-google-authenticator-app-qr.jpg');
    $form['markup_library'] = array(
      '#attached' => array(
        'library' => array(
          'miniorange_2fa/miniorange_2fa.admin',
          "miniorange_2fa/miniorange_2fa.license",
        ),
      ),
    );
    $url = $base_url . '/admin/config/people/miniorange_2fa/setup_twofactor';
    $user = User::load(\Drupal::currentUser()
      ->id());
    $user_id = $user
      ->id();
    $utilities = new MoAuthUtilities();
    $custom_attribute = $utilities::get_users_custom_attribute($user_id);
    $input = $form_state
      ->getUserInput();
    if (array_key_exists('secret', $input) === FALSE) {
      $user_email = $custom_attribute[0]->miniorange_registered_email;
      $customer = new MiniorangeCustomerProfile();
      $miniorange_user = new MiniorangeUser($customer
        ->getCustomerID(), $user_email, NULL, NULL, AuthenticationType::$GOOGLE_AUTHENTICATOR['code']);
      $auth_api_handler = new AuthenticationAPIHandler($customer
        ->getCustomerID(), $customer
        ->getAPIKey());
      $response = $auth_api_handler
        ->getGoogleAuthSecret($miniorange_user);
      $qrCode = isset($response->qrCodeData) ? $response->qrCodeData : '';
      $image = new FormattableMarkup('<img src="data:image/jpg;base64, ' . $qrCode . '"/>', [
        ':src' => $qrCode,
      ]);
      $secret = isset($response->secret) ? $response->secret : '';
    }
    else {
      $secret = $input['secret'];
      $qrCode = $input['qrCode'];
    }
    $form['markup_top_2'] = array(
      '#markup' => '<div class="mo_saml_table_layout_1"><div class="mo_saml_table_layout mo_saml_container">',
    );
    $form['header']['#markup'] = '<div class="mo2f-setup-header"><div class="mo2f-setup-header-top-left">Configure Google Authenticator</div></div><br>';

    // . $this->mo_auth_create_form($base_url, $qrCode, $secret);
    $form['actions_1'] = array(
      '#markup' => '<div>
                    <div class="googleauth-steps"><b>Step 1:</b> Download & Install the Google Authenticator app.</div>
                      <br>
                      <div class="maindiv_1">
                          <div>
                              <div class="googleauth-download-header">Manual Installation</div>
                              <div class="subDivPosition"><br>
                                <h6>iPhone Users</h6>
                                <ul>
                                  <li>Go to App Store.</li>
                                  <li>Search for Google Authenticator.</li>
                                  <li>Download and install the App.</li>
                                </ul>
                                <a target="_blank" href="https://itunes.apple.com/in/app/google-authenticator/id388497605?mt=8"><img src="' . $iPhoneAppLink . '"></a>
                              </div>

                              <div><br>
                                <h6>Android Users</h6>
                                <ul>
                                  <li>Go to Google Play Store.</li>
                                  <li>Search for Google Authenticator.</li>
                                  <li>Download and install the App.</li>
                                </ul>
                                <div>
                                   <a target="_blank" href="https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2"><img src="' . $androidAppLink . '"></a>
                                </div>
                              </div>
                          </div>
                      </div>

                      <div class="maindiv_2">

                          <div class="googleauth-download-header">Scan QR Code</div>

                            <div class="subDivPosition">
                              <div><br>
                                <img src="' . $iPhoneAppQR . '">
                              </div>
                              <span>Apple App Store <b>(iOS)</b></span>
                            </div>

                            <div>
                              <div><br>
                                <img src="' . $androidAppQR . '">
                              </div>
                              <span>Google Play Store <b>(Android)</b></span>
                            </div>

                      </div>
                </div>',
    );
    $secret = MoAuthUtilities::indentSecret($secret);
    $form['actions_2'] = array(
      '#markup' => '
                    <div class="googleauth-steps"><br><br><b>Step 2:</b> Scan the below QR Code from Google Authenticator app.</div>
                    <br><br>',
    );
    $form['actions_qrcode'] = array(
      '#markup' => isset($image) ? $image : '',
    );
    $form['actions_secret_key'] = array(
      '#markup' => '<p><b class="CenterOR">OR</b></p>
                         <div class="googleauth-secret">
                            <p>Use the following secret</p>
                            <p id="googleAuthSecret"><b>' . $secret . '</b></p>
                            <p>(Spaces don&#39;t matter)</p>
                          </div>',
    );
    $form['actions_3'] = array(
      '#markup' => '<div style="width: 100%;float:left;padding-top: 10px;">
                <div class="googleauth-steps"><br><br><b>Step 3:</b> Enter the Passcode generated by Google Authenticator app.</div>
                </div>',
    );
    $form['mo_auth_googleauth_token'] = array(
      '#type' => 'textfield',
      '#maxlength' => 6,
      '#attributes' => array(
        'placeholder' => t('Enter passcode.'),
        'class' => array(
          'mo2f-textbox',
          'mo2f-textbox-otp',
        ),
        'style' => 'width:200px',
      ),
      '#required' => TRUE,
    );
    $form['secret'] = array(
      '#type' => 'hidden',
      '#value' => $secret,
    );
    $form['qrCode'] = array(
      '#type' => 'hidden',
      '#value' => $qrCode,
    );
    $form['actions'] = array(
      '#type' => 'actions',
    );
    $form['actions_submit'] = array(
      '#type' => 'submit',
      '#value' => t('Verify and Save'),
    );
    $form['actions_cancel'] = array(
      '#markup' => '<span>&nbsp;&nbsp;</span><a href="' . $url . '"> Cancel</a></div>',
    );
    MoAuthUtilities::AddsupportTab($form, $form_state);
    return $form;
  }
  public function submitForm(array &$form, \Drupal\Core\Form\FormStateInterface $form_state) {
    $form_state
      ->setRebuild();
    $input = $form_state
      ->getUserInput();
    $secret = $input['secret'];
    $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;
    $otpToken = $input['mo_auth_googleauth_token'];
    $customer = new MiniorangeCustomerProfile();
    $miniorange_user = new MiniorangeUser($customer
      ->getCustomerID(), $user_email, NULL, NULL, AuthenticationType::$GOOGLE_AUTHENTICATOR['code']);
    $auth_api_handler = new AuthenticationAPIHandler($customer
      ->getCustomerID(), $customer
      ->getAPIKey());
    $response = $auth_api_handler
      ->register($miniorange_user, AuthenticationType::$GOOGLE_AUTHENTICATOR['code'], $secret, $otpToken, NULL);

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

    // read API response
    if ($response->status == 'SUCCESS') {
      \Drupal::messenger()
        ->addMessage(t(''), 'status');
      $configured_methods = MoAuthUtilities::mo_auth_get_configured_methods($user_id);
      if (!in_array(AuthenticationType::$GOOGLE_AUTHENTICATOR['code'], $configured_methods)) {
        array_push($configured_methods, AuthenticationType::$GOOGLE_AUTHENTICATOR['code']);
      }
      $config_methods = implode(', ', $configured_methods);
      $user_api_handler = new UsersAPIHandler($customer
        ->getCustomerID(), $customer
        ->getAPIKey());
      $response = $user_api_handler
        ->update($miniorange_user);
      if ($response->status == 'SUCCESS') {

        // Save User
        $user_id = $user
          ->id();
        $utilities = new MoAuthUtilities();
        $available = $utilities::check_for_userID($user_id);
        $database = \Drupal::database();
        if ($available == TRUE) {
          $database
            ->update('UserAuthenticationType')
            ->fields([
            'activated_auth_methods' => AuthenticationType::$GOOGLE_AUTHENTICATOR['code'],
          ])
            ->condition('uid', $user_id, '=')
            ->execute();
          $database
            ->update('UserAuthenticationType')
            ->fields([
            'configured_auth_methods' => $config_methods,
          ])
            ->condition('uid', $user_id, '=')
            ->execute();
        }
        else {
          echo "error while updating authentication method.";
          exit;
        }
        $message = 'Google Authenticator configured successfully.';
        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');
    }
    else {
      $message = 'An error occured while processing your request. Please try again.';
      MoAuthUtilities::show_error_or_success_message($message, 'error');
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
configure_google_authenticator::buildForm public function Form constructor. Overrides FormInterface::buildForm
configure_google_authenticator::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
configure_google_authenticator::submitForm public function Form submission handler. Overrides FormInterface::submitForm
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
FormBase::$configFactory protected property The config factory. 1
FormBase::$requestStack protected property The request stack. 1
FormBase::$routeMatch protected property The route match.
FormBase::config protected function Retrieves a configuration object.
FormBase::configFactory protected function Gets the config factory for this form. 1
FormBase::container private function Returns the service container.
FormBase::create public static function Instantiates a new instance of this class. Overrides ContainerInjectionInterface::create 87
FormBase::currentUser protected function Gets the current user.
FormBase::getRequest protected function Gets the request object.
FormBase::getRouteMatch protected function Gets the route match.
FormBase::logger protected function Gets the logger for a specific channel.
FormBase::redirect protected function Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait::redirect
FormBase::resetConfigFactory public function Resets the configuration factory.
FormBase::setConfigFactory public function Sets the config factory for this form.
FormBase::setRequestStack public function Sets the request stack object to use.
FormBase::validateForm public function Form validation handler. Overrides FormInterface::validateForm 62
LinkGeneratorTrait::$linkGenerator protected property The link generator. 1
LinkGeneratorTrait::getLinkGenerator Deprecated protected function Returns the link generator.
LinkGeneratorTrait::l Deprecated protected function Renders a link to a route given a route name and its parameters.
LinkGeneratorTrait::setLinkGenerator Deprecated public function Sets the link generator service.
LoggerChannelTrait::$loggerFactory protected property The logger channel factory service.
LoggerChannelTrait::getLogger protected function Gets the logger for a specific channel.
LoggerChannelTrait::setLoggerFactory public function Injects the logger channel factory.
MessengerTrait::$messenger protected property The messenger. 29
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service. 1
RedirectDestinationTrait::getDestinationArray protected function Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url.
RedirectDestinationTrait::getRedirectDestination protected function Returns the redirect destination service.
RedirectDestinationTrait::setRedirectDestination public function Sets the redirect destination service.
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
UrlGeneratorTrait::$urlGenerator protected property The url generator.
UrlGeneratorTrait::getUrlGenerator Deprecated protected function Returns the URL generator service.
UrlGeneratorTrait::setUrlGenerator Deprecated public function Sets the URL generator service.
UrlGeneratorTrait::url Deprecated protected function Generates a URL or path for a specific route based on the given parameters.