You are here

public function configure_google_authenticator::buildForm 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::buildForm()

Form constructor.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form structure.

Overrides FormInterface::buildForm

File

src/Form/configure_google_authenticator.php, line 19

Class

configure_google_authenticator

Namespace

Drupal\miniorange_2fa\form

Code

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;
}