You are here

class UserOneSettingsForm in User One 8

User One configuration form.

Hierarchy

Expanded class hierarchy of UserOneSettingsForm

1 string reference to 'UserOneSettingsForm'
userone.routing.yml in ./userone.routing.yml
userone.routing.yml

File

src/Form/UserOneSettingsForm.php, line 14

Namespace

Drupal\userone\Form
View source
class UserOneSettingsForm extends ConfigFormBase {

  /**
   * {@inheritdoc}
   */
  protected function getEditableConfigNames() {
    return [
      'userone.settings',
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'userone_settings_form';
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $config = $this
      ->config('userone.settings');
    $ban_url = Url::fromRoute('ban.admin_page')
      ->toString();
    $form['edit_access_info'] = [
      '#type' => 'item',
      '#title' => $this
        ->t('Access to user one edit blocked'),
      '#markup' => $this
        ->t('No account except user one account can edit user one account.'),
    ];
    $form['view_access_info'] = [
      '#type' => 'item',
      '#title' => $this
        ->t('Access to user one profile blocked'),
      '#markup' => $this
        ->t('No account except user one account can view user one account.'),
    ];
    $form['failed_login'] = [
      '#type' => 'details',
      '#title' => $this
        ->t('Allowed failed login attempts'),
      '#description' => $this
        ->t("This setting exposes Drupal's built-in configuration values otherwise inaccessible. It applies to all users, not just user one."),
      '#open' => TRUE,
    ];
    $form['failed_login']['user_failed_login_ip_limit'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Allowed failed login attempts for an IP address (default 50)'),
      '#options' => $this
        ->getFailedLoginAttemptsOptions(),
      '#default_value' => $config
        ->get('user_failed_login_ip_limit'),
      '#description' => $this
        ->t("Do not allow any login from the current user's IP if the limit has been reached. Default is 50 failed attempts allowed in one hour. This is independent of the per-user limit to catch attempts from one IP to log in to many different user accounts.  We have a reasonably high limit since there may be only one apparent IP for all users at an institution."),
    ];
    $form['failed_login']['user_failed_login_ip_window'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Failed login window for an IP address (default 1 hour)'),
      '#options' => $this
        ->getFailedLoginWindowOptions(),
      '#default_value' => $config
        ->get('user_failed_login_ip_window'),
      '#description' => $this
        ->t('Time period during which failed logins are accounted for.'),
    ];
    $form['failed_login']['block_ip_on_failed_login_ip'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Permanently block IP when failed logins breaks threshold. (<a href="@url">See blocked IPs</a>)', [
        '@url' => $ban_url,
      ]),
      '#default_value' => $config
        ->get('block_ip_on_failed_login_ip'),
      '#description' => $this
        ->t('User one account will be notified when an IP is blocked.'),
    ];
    $form['failed_login']['divider'] = [
      '#type' => 'item',
      '#markup' => '<hr/>',
    ];
    $form['failed_login']['user_failed_login_user_limit'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Allowed failed login attempts for an account (default 5)'),
      '#options' => $this
        ->getFailedLoginAttemptsOptions(),
      '#default_value' => $config
        ->get('user_failed_login_user_limit'),
      '#description' => $this
        ->t('User will be allowed to attempt logins this many times within the period (see below).'),
    ];
    $form['failed_login']['user_failed_login_user_window'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Failed login window for an account (default 6 hours)'),
      '#options' => $this
        ->getFailedLoginWindowOptions(),
      '#default_value' => $config
        ->get('user_failed_login_user_window'),
      '#description' => $this
        ->t('Number of failed logins for an account will be accounted for this period'),
    ];
    $form['failed_login']['block_ip_on_failed_login_user1'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Permanently block IP when failed logins <strong>for user one</strong> breaks threshold. (<a href="@url">See blocked IPs</a>)', [
        '@url' => $ban_url,
      ]),
      '#default_value' => $config
        ->get('block_ip_on_failed_login_user1'),
      '#description' => $this
        ->t('User one account will be notified when an IP is blocked.'),
    ];
    return parent::buildForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $config = $this
      ->config('userone.settings');
    foreach ($form_state
      ->getValues() as $key => $value) {
      $config
        ->set($key, $value);
    }
    $config
      ->save();
    parent::submitForm($form, $form_state);
  }

  /**
   * Get allowed failed login attempts for an IP address.
   *
   * @return array
   *   An array of options.
   */
  public function getFailedLoginAttemptsOptions() {
    return [
      1 => 1,
      2 => 2,
      3 => 3,
      4 => 4,
      5 => 5,
      10 => 10,
      25 => 25,
      50 => 50,
      75 => 75,
      100 => 100,
      250 => 250,
    ];
  }

  /**
   * Get failed login window for an IP address.
   *
   * @return array
   *   An array of options.
   */
  public function getFailedLoginWindowOptions() {
    return [
      300 => '5 minutes',
      600 => '10 minutes',
      900 => '15 minutes',
      1800 => '30 minutes',
      2700 => '45 minutes',
      3600 => '1 hour',
      7200 => '2 hours',
      10800 => '3 hours',
      14400 => '4 hours',
      18000 => '5 hours',
      21600 => '6 hours',
      28800 => '8 hours',
      36000 => '10 hours',
      43200 => '12 hours',
      86400 => '24 hours',
    ];
  }

  /**
   * Allow access only for user one.
   *
   * @param \Drupal\Core\Session\AccountInterface $account
   *   Run access checks for this account.
   *
   * @return \Drupal\Core\Access\AccessResultInterface
   *   The access result.
   */
  public function access(AccountInterface $account) {
    if ($account
      ->id() == 1) {
      return AccessResult::allowed();
    }
    return AccessResult::forbidden();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigFormBase::create public static function Instantiates a new instance of this class. Overrides FormBase::create 13
ConfigFormBase::__construct public function Constructs a \Drupal\system\ConfigFormBase object. 11
ConfigFormBaseTrait::config protected function Retrieves a configuration object.
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::configFactory protected function Gets the config factory for this form. 1
FormBase::container private function Returns the service container.
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.
UserOneSettingsForm::access public function Allow access only for user one.
UserOneSettingsForm::buildForm public function Form constructor. Overrides ConfigFormBase::buildForm
UserOneSettingsForm::getEditableConfigNames protected function Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait::getEditableConfigNames
UserOneSettingsForm::getFailedLoginAttemptsOptions public function Get allowed failed login attempts for an IP address.
UserOneSettingsForm::getFailedLoginWindowOptions public function Get failed login window for an IP address.
UserOneSettingsForm::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
UserOneSettingsForm::submitForm public function Form submission handler. Overrides ConfigFormBase::submitForm