You are here

class MoAuthSetupTwoFactor in Google Authenticator / 2 Factor Authentication - 2FA 8.2

Same name and namespace in other branches
  1. 8 src/Form/MoAuthSetupTwoFactor.php \Drupal\miniorange_2fa\Form\MoAuthSetupTwoFactor

Showing Setup Two-Factor page.

Hierarchy

Expanded class hierarchy of MoAuthSetupTwoFactor

1 string reference to 'MoAuthSetupTwoFactor'
miniorange_2fa.routing.yml in ./miniorange_2fa.routing.yml
miniorange_2fa.routing.yml

File

src/Form/MoAuthSetupTwoFactor.php, line 23
Contains Setup Two-Factor page for miniOrange 2FA Login Module.

Namespace

Drupal\miniorange_2fa\Form
View source
class MoAuthSetupTwoFactor extends FormBase {
  public function getFormId() {
    return 'miniorange_2fa_setup_two_factor';
  }
  public function buildForm(array $form, FormStateInterface $form_state) {
    global $base_url;
    $utilities = new MoAuthUtilities();

    /**
     * used in test_otp_over_email, test_otp_over_sms and test_otp_over_sms_and_email forms
     */
    \Drupal::configFactory()
      ->getEditable('miniorange_2fa.settings')
      ->set('txId_Value', 'EMPTY_VALUE')
      ->save();
    $success_error_message = \Drupal::config('miniorange_2fa.settings')
      ->get('mo_auth_2fa_Success/Error message');
    $success_error_status = \Drupal::config('miniorange_2fa.settings')
      ->get('mo_auth_2fa_Success/Error status');
    if ($success_error_message != NULL && $success_error_status != NULL) {
      \Drupal::messenger()
        ->addMessage(t($success_error_message), $success_error_status);
      \Drupal::configFactory()
        ->getEditable('miniorange_2fa.settings')
        ->set('mo_auth_2fa_Success/Error message', NULL)
        ->save();
      \Drupal::configFactory()
        ->getEditable('miniorange_2fa.settings')
        ->set('mo_auth_2fa_Success/Error status', NULL)
        ->save();
    }
    $form['markup_top_2'] = array(
      '#markup' => '<div class="mo_2fa_table_layout_1"><div class="mo_2fa_table_layout mo_container_second_factor">',
    );
    $disabled = False;
    if (!$utilities::isCustomerRegistered()) {
      $form['header'] = array(
        '#markup' => t('<div class="mo_2fa_register_message"><p>You need to <a href="' . $base_url . '/admin/config/people/miniorange_2fa/customer_setup">Register/Login</a> with miniOrange before using this module.</p></div>'),
      );
      $disabled = True;
    }
    $form['markup_library'] = array(
      '#attached' => array(
        'library' => array(
          "miniorange_2fa/miniorange_2fa.admin",
          "miniorange_2fa/miniorange_2fa.license",
        ),
      ),
    );
    global $base_url;
    $user = User::load(\Drupal::currentUser()
      ->id());
    $user_id = $user
      ->id();
    $custom_attribute = $utilities::get_users_custom_attribute($user_id);
    $user_email = NULL;
    if (!is_null($custom_attribute) && !empty($custom_attribute)) {
      $user_email = $custom_attribute[0]->miniorange_registered_email;
    }
    $customer = new MiniorangeCustomerProfile();
    $user_api_handler = new UsersAPIHandler($customer
      ->getCustomerID(), $customer
      ->getAPIKey());
    $miniorange_user = new MiniorangeUser($customer
      ->getCustomerID(), $user_email, '', '', '');
    $response = $user_api_handler
      ->get($miniorange_user);
    $configured_methods = $utilities::mo_auth_get_configured_methods($user_id);
    $users_active_method = AuthenticationType::$NOT_CONFIGURED;
    if (is_object($response) && isset($response->authType) && $response->authType != AuthenticationType::$GOOGLE_AUTHENTICATOR['code']) {
      $users_active_method = AuthenticationType::getAuthType($response->authType);
    }
    else {
      if (in_array(AuthenticationType::$GOOGLE_AUTHENTICATOR['code'], $configured_methods)) {
        $users_active_method = AuthenticationType::$GOOGLE_AUTHENTICATOR;
      }
      elseif (in_array(AuthenticationType::$MICROSOFT_AUTHENTICATOR['code'], $configured_methods)) {
        $users_active_method = AuthenticationType::$MICROSOFT_AUTHENTICATOR;
      }
      elseif (in_array(AuthenticationType::$AUTHY_AUTHENTICATOR['code'], $configured_methods)) {
        $users_active_method = AuthenticationType::$AUTHY_AUTHENTICATOR;
      }
      elseif (in_array(AuthenticationType::$LASTPASS_AUTHENTICATOR['code'], $configured_methods)) {
        $users_active_method = AuthenticationType::$LASTPASS_AUTHENTICATOR;
      }
      elseif (in_array(AuthenticationType::$DUO_AUTHENTICATOR['code'], $configured_methods)) {
        $users_active_method = AuthenticationType::$DUO_AUTHENTICATOR;
      }
    }
    if (!in_array($users_active_method['code'], $configured_methods)) {
      array_push($configured_methods, $users_active_method['code']);
      $configured_methods_codes = implode(",", $configured_methods);
      \Drupal::database()
        ->update('UserAuthenticationType')
        ->fields([
        'configured_auth_methods' => $configured_methods_codes,
      ])
        ->condition('uid', $user_id, '=')
        ->execute();
    }

    /**
     * Create container to hold all the form elements.
     */
    $form['mo_setup_second_factor'] = array(
      '#type' => 'fieldset',
      '#title' => t('Setup Second Factor'),
      '#attributes' => array(
        'style' => 'padding:0% 2% 2%',
      ),
    );
    $form['mo_setup_second_factor']['header_top']['#markup'] = t('<br><br><div class="mo2f-setup-header">
                        <span class="mo_2fa_welcome_message">Active Method - ' . strtoupper($users_active_method['name']) . '</span>
                    </div>
                    <div><br></div>
                    <div></div>');
    $form['mo_setup_second_factor']['header_methods']['#markup'] = t('<div class="mo2f-setup-methods-info-wrap">
                        <div class="mo2f-setup-methods-info-left"><span class="mo2f-color-icon mo2f-active-method"></span>- Active Method</div>
                        <div class="mo2f-setup-methods-info-center"><span class="mo2f-color-icon mo2f-configured-method"></span>- Configured Method</div>
                        <div class="mo2f-setup-methods-info-right"><span class="mo2f-color-icon mo2f-unconfigured-method"></span>- Unconfigured Method</div>
                    </div>');
    $emailVerificationOption = $this
      ->mo_auth_create_auth_type(AuthenticationType::$EMAIL_VERIFICATION, $configured_methods, $users_active_method['code'], FALSE, $base_url);
    $googleAuthenticatorOption = $this
      ->mo_auth_create_auth_type(AuthenticationType::$GOOGLE_AUTHENTICATOR, $configured_methods, $users_active_method['code'], TRUE, $base_url);
    $kbaAuth = $this
      ->mo_auth_create_auth_type(AuthenticationType::$KBA, $configured_methods, $users_active_method['code'], TRUE, $base_url);
    $OTPOverSMSOption = $this
      ->mo_auth_create_auth_type(AuthenticationType::$SMS, $configured_methods, $users_active_method['code'], TRUE, $base_url);
    $OTPOverEMAILOption = $this
      ->mo_auth_create_auth_type(AuthenticationType::$OTP_OVER_EMAIL, $configured_methods, $users_active_method['code'], TRUE, $base_url);
    $OTPOverSMSandEMAILOption = $this
      ->mo_auth_create_auth_type(AuthenticationType::$SMS_AND_EMAIL, $configured_methods, $users_active_method['code'], TRUE, $base_url);
    $microsoftAuthenticatorOption = $this
      ->mo_auth_create_auth_type(AuthenticationType::$MICROSOFT_AUTHENTICATOR, $configured_methods, $users_active_method['code'], TRUE, $base_url);
    $duoAuthenticatorOption = $this
      ->mo_auth_create_auth_type(AuthenticationType::$DUO_AUTHENTICATOR, $configured_methods, $users_active_method['code'], TRUE, $base_url);
    $authyAuthenticatorOption = $this
      ->mo_auth_create_auth_type(AuthenticationType::$AUTHY_AUTHENTICATOR, $configured_methods, $users_active_method['code'], TRUE, $base_url);
    $lastPassAuthenticatorOption = $this
      ->mo_auth_create_auth_type(AuthenticationType::$LASTPASS_AUTHENTICATOR, $configured_methods, $users_active_method['code'], TRUE, $base_url);
    $OTPOverPHONEOption = $this
      ->mo_auth_create_auth_type(AuthenticationType::$OTP_OVER_PHONE, $configured_methods, $users_active_method['code'], TRUE, $base_url);
    $OTPOverWhatsAppOption = $this
      ->mo_auth_create_auth_type(AuthenticationType::$OTP_OVER_WHATSAPP, $configured_methods, $users_active_method['code'], TRUE, $base_url);
    $HardwareToken = $this
      ->mo_auth_create_auth_type(AuthenticationType::$HARDWARE_TOKEN, $configured_methods, $users_active_method['code'], TRUE, $base_url);
    $pushNotificationsOption = $this
      ->mo_auth_create_auth_type(AuthenticationType::$PUSH_NOTIFICATIONS, $configured_methods, $users_active_method['code'], TRUE, $base_url);
    $qrCodeAuthenticatorOption = $this
      ->mo_auth_create_auth_type(AuthenticationType::$QR_CODE, $configured_methods, $users_active_method['code'], TRUE, $base_url);
    $softTokenOption = $this
      ->mo_auth_create_auth_type(AuthenticationType::$SOFT_TOKEN, $configured_methods, $users_active_method['code'], TRUE, $base_url);
    $options = array(
      AuthenticationType::$EMAIL_VERIFICATION['code'] => $emailVerificationOption,
      AuthenticationType::$GOOGLE_AUTHENTICATOR['code'] => $googleAuthenticatorOption,
      AuthenticationType::$KBA['code'] => $kbaAuth,
      AuthenticationType::$SMS['code'] => $OTPOverSMSOption,
      AuthenticationType::$OTP_OVER_EMAIL['code'] => $OTPOverEMAILOption,
      AuthenticationType::$SMS_AND_EMAIL['code'] => $OTPOverSMSandEMAILOption,
      AuthenticationType::$MICROSOFT_AUTHENTICATOR['code'] => $microsoftAuthenticatorOption,
      AuthenticationType::$DUO_AUTHENTICATOR['code'] => $duoAuthenticatorOption,
      AuthenticationType::$AUTHY_AUTHENTICATOR['code'] => $authyAuthenticatorOption,
      AuthenticationType::$LASTPASS_AUTHENTICATOR['code'] => $lastPassAuthenticatorOption,
      AuthenticationType::$OTP_OVER_PHONE['code'] => $OTPOverPHONEOption,
      AuthenticationType::$OTP_OVER_WHATSAPP['code'] => $OTPOverWhatsAppOption,
      AuthenticationType::$HARDWARE_TOKEN['code'] => $HardwareToken,
      AuthenticationType::$PUSH_NOTIFICATIONS['code'] => $pushNotificationsOption,
      AuthenticationType::$QR_CODE['code'] => $qrCodeAuthenticatorOption,
      AuthenticationType::$SOFT_TOKEN['code'] => $softTokenOption,
    );
    $form['mo_setup_second_factor']['mo_auth_method'] = array(
      '#type' => 'radios',
      '#options' => $options,
      '#default_value' => $users_active_method['code'],
      '#disabled' => $disabled,
      '#markup' => '<div class="mo_tfa_grid_view">',
      '#suffix' => '</div><br><br>',
    );
    $form['mo_setup_second_factor']['Submit_setup_two_factor_form'] = array(
      '#type' => 'submit',
      '#button_type' => 'primary',
      '#value' => t('Save Configurations'),
      '#attributes' => array(
        'style' => 'margin-top:10%;',
      ),
      '#disabled' => $disabled,
      '#suffix' => '<br><br><br></div>',
    );
    return $form;
  }
  function submitForm(array &$form, FormStateInterface $form_state) {
    $utilities = new MoAuthUtilities();
    $user_obj = User::load(\Drupal::currentUser()
      ->id());
    $user_id = $user_obj
      ->id();
    $configured_methods = $utilities::mo_auth_get_configured_methods($user_id);
    $custom_attribute = $utilities::get_users_custom_attribute($user_id);
    $user_email = $custom_attribute[0]->miniorange_registered_email;
    $form_state
      ->setRebuild();
    $input = $form_state
      ->getUserInput();
    $authType = $input['mo_auth_method'];
    $database = \Drupal::database();
    $database
      ->update('UserAuthenticationType')
      ->fields([
      'activated_auth_methods' => $authType,
    ])
      ->condition('miniorange_registered_email', $user_email, '=')
      ->execute();
    if (in_array($authType, $configured_methods)) {
      $custom_attribute = $utilities::get_users_custom_attribute($user_id);
      $user_email = $custom_attribute[0]->miniorange_registered_email;
      $customer = new MiniorangeCustomerProfile();
      $miniorange_user = new MiniorangeUser($customer
        ->getCustomerID(), $user_email, NULL, NULL, $authType);
      $user_api_handler = new UsersAPIHandler($customer
        ->getCustomerID(), $customer
        ->getAPIKey());
      $response = $user_api_handler
        ->update($miniorange_user);
      if ($response->status == 'SUCCESS') {
        \Drupal::messenger()
          ->addStatus(t('Authentication method updated successfully.'));
        return;
      }
      \Drupal::messenger()
        ->addError(t('An error occurred while updating the authentication type. Please try again.'));
      return;
    }
    \Drupal::messenger()
      ->addError(t('Please configure this authentication method first to enable it.'));
    return;
  }
  function mo_auth_create_auth_type($authType, $configuredMethods, $active_method, $reconfigure_allowed, $base_url) {
    $utilities = new MoAuthUtilities();
    $label_title = 'Supported in ' . implode(', ', $authType['supported-for']);
    $supported_for_icon_class = '';
    if (in_array(AuthenticationType::landline, $authType['supported-for'])) {
      $supported_for_icon_class = 'mo2f-landline';
    }
    elseif (in_array(AuthenticationType::feature_phones, $authType['supported-for'])) {
      $supported_for_icon_class = 'mo2f-smartphone-feature-phone';
    }
    elseif (in_array(AuthenticationType::laptops, $authType['supported-for'])) {
      $supported_for_icon_class = 'mo2f-laptop';
    }
    elseif (in_array(AuthenticationType::smartphones, $authType['supported-for'])) {
      $supported_for_icon_class = 'mo2f-smartphone';
    }
    elseif (in_array(AuthenticationType::laptops_phones, $authType['supported-for'])) {
      $supported_for_icon_class = 'mo2f-smartphone-feature-phone-laptop';
    }
    elseif (in_array(AuthenticationType::hardware_token, $authType['supported-for'])) {
      $supported_for_icon_class = 'mo2f-yubikey-hardware-token';
    }
    $config_type_class = 'mo2f-unconfigured-method';
    if ($authType['code'] == $active_method) {
      $config_type_class = 'mo2f-active-method';
    }
    elseif (in_array($authType['code'], $configuredMethods)) {
      $config_type_class = 'mo2f-configured-method';
    }
    $authTypeID = $authType['id'];
    try {
      $Test = Url::fromRoute($authType['test-route'])
        ->toString();
    } catch (RouteNotFoundException $e) {
    }
    try {
      $Re_Configure = $Configure = Url::fromRoute($authType['configure-route'])
        ->toString();
    } catch (RouteNotFoundException $e) {
    }

    //        $Configure         = "$base_url/admin/config/people/miniorange_2fa/setup/user/configure/$authTypeID";
    //        $Test              = "$base_url/admin/config/people/miniorange_2fa/setup/user/test/$authTypeID";
    //        $Re_Configure      = "$base_url/admin/config/people/miniorange_2fa/setup/user/configure/$authTypeID";
    $configure_text = t('Configure');
    $test_text = t('Test');
    $re_configure_text = t('Re-configure');

    /**
     * Change all the links to Register/Login tab as user is not registered or logged in yet.
     */
    if (!$utilities::isCustomerRegistered()) {
      $Configure = $Re_Configure = $Test = Url::fromRoute('miniorange_2fa.customer_setup')
        ->toString();
    }

    /**
     * Show Contact us link as these features are not implemented yet.
     */
    if ($authType['id'] === AuthenticationType::$OTP_OVER_WHATSAPP['id']) {
      $Configure = Url::fromRoute('miniorange_2fa.support')
        ->toString();
      $configure_text = t('Request this method');
    }
    $configured = 'false';
    $classes = $supported_for_icon_class . ' ' . $config_type_class;
    $test = '<a href="' . $Configure . '">' . $configure_text . '</a>';
    if (!empty($configuredMethods) && in_array($authType['code'], $configuredMethods)) {
      $test = '<a href="' . $Test . '">' . $test_text . '</a>';
      if ($reconfigure_allowed === TRUE) {
        $test .= ' | <a href="' . $Re_Configure . '" style="color:red">' . $re_configure_text . '</a>';
      }
      $configured = 'true';
    }
    $html = '<span>
                    <span class="mo2f-method" data-id="' . $authType['id'] . '" data-configured = "' . $configured . '">' . $authType['name'] . '</span>
                    <p>' . t($authType['description']) . '</p>
                    <div class="' . $classes . '" title="' . $label_title . '">' . $test . '</div>
                    <div><br><hr><hr><br></div>
                </span>';
    return $html;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
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.
MoAuthSetupTwoFactor::buildForm public function Form constructor. Overrides FormInterface::buildForm
MoAuthSetupTwoFactor::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
MoAuthSetupTwoFactor::mo_auth_create_auth_type function
MoAuthSetupTwoFactor::submitForm function Form submission handler. Overrides FormInterface::submitForm
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.