You are here

class RoleLoginPageSettingsEdit in Multiple role login pages 8

Edit login page form.

Hierarchy

Expanded class hierarchy of RoleLoginPageSettingsEdit

1 string reference to 'RoleLoginPageSettingsEdit'
role_login_page.routing.yml in ./role_login_page.routing.yml
role_login_page.routing.yml

File

src/Form/RoleLoginPageSettingsEdit.php, line 21
�* �* Contains \Drupal\role_login_page\Form\RoleLoginPageSettingsEdit. �

Namespace

Drupal\role_login_page\Form
View source
class RoleLoginPageSettingsEdit extends FormBase {
  protected $rlid;
  protected $connection;

  /**
   * RoleLoginPageSettingsEdit constructor.
   */
  public function __construct() {
    $this->connection = Database::getConnection();
  }

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

  /**
   *
   * @param array $form
   * @param FormStateInterface $form_state
   * @param type $rl_id
   * @return string
   */
  public function buildForm(array $form, FormStateInterface $form_state, $rl_id = NULL) {
    $login_menu_data = $this->connection
      ->select('role_login_page_settings', 'rlps')
      ->fields('rlps')
      ->condition('rl_id', $rl_id)
      ->execute()
      ->fetchObject();
    $roles_arr = Role::loadMultiple();
    foreach ($roles_arr as $role => $rolesObj) {
      $roles[$role] = $rolesObj
        ->get('label');
    }
    if ($login_menu_data) {
      $form['login_page_menu'] = [
        '#type' => 'fieldset',
        '#title' => t('Edit login page'),
        '#collapsible' => FALSE,
      ];
      $form['login_page_menu']['loginmenu_url'] = [
        '#type' => 'textfield',
        '#title' => 'Login page url',
        '#required' => TRUE,
        '#default_value' => $login_menu_data->url,
        '#description' => t('URL should exclude the basepath, i.e, "http://example.com". Add the path that should be used after base path, i.e, "user or admin/newconfig"'),
      ];
      $form['login_page_menu']['username_label'] = [
        '#type' => 'textfield',
        '#title' => 'Username label',
        '#default_value' => $login_menu_data->username_label,
      ];
      $form['login_page_menu']['password_label'] = [
        '#type' => 'textfield',
        '#title' => 'Password label',
        '#default_value' => $login_menu_data->password_label,
      ];
      $form['login_page_menu']['submit_text'] = [
        '#type' => 'textfield',
        '#title' => 'Submit button text',
        '#default_value' => $login_menu_data->submit_text,
      ];
      $form['login_page_menu']['page_title'] = [
        '#type' => 'textfield',
        '#title' => 'Page title',
        '#default_value' => $login_menu_data->page_title,
      ];
      $form['login_page_menu']['redirect_path'] = [
        '#type' => 'textfield',
        '#title' => 'Redirect path',
        '#default_value' => $login_menu_data->redirect_path,
        '#description' => t('Path should exclude the basepath, i.e, "http://example.com". Add the path that should be used after base path, i.e, "user or admin/newconfig"'),
      ];
      $form['login_page_menu']['roles'] = [
        '#type' => 'select',
        '#title' => 'Select the user roles allowed to login through this page : ',
        '#options' => $roles,
        '#multiple' => TRUE,
        '#required' => TRUE,
        '#default_value' => explode(',', $login_menu_data->roles),
      ];
      $form['login_page_menu']['parent_class'] = [
        '#type' => 'textfield',
        '#title' => 'Form parent class',
        '#description' => t('This class will be added to the form element.'),
        '#default_value' => $login_menu_data->parent_class,
      ];
      $form['login_page_menu']['role_mismatch_error_text'] = [
        '#type' => 'textarea',
        '#title' => 'Role mismatch error text',
        '#default_value' => $login_menu_data->role_mismatch_error_text,
      ];
      $form['login_page_menu']['invalid_credentials_error_text'] = [
        '#type' => 'textarea',
        '#title' => 'Invalid credentials error text',
        '#default_value' => $login_menu_data->invalid_credentials_error_text,
      ];
      $this->rlid = $login_menu_data->rl_id;
      $form['login_page_menu']['submit'] = [
        '#type' => 'submit',
        '#value' => 'Update login page',
      ];
      return $form;
    }
    else {
      $this
        ->messenger()
        ->addWarning(t('Invalid login page ID'));
      $redirect = new RedirectResponse(Url::fromUserInput('/admin/config/login/role_login_settings/list')
        ->toString());
      $redirect
        ->send();
    }
  }

  /**
   *
   * @global type $base_url
   * @param array $form
   * @param FormStateInterface $form_state
   */
  public function validateForm(array &$form, FormStateInterface $form_state) {
    global $base_url;
    $rl_id = $this->rlid;
    $url = trim($form_state
      ->getValue([
      'loginmenu_url',
    ]));
    $redirect_path = trim($form_state
      ->getValue([
      'redirect_path',
    ]));
    if ($redirect_path) {
      $redirect_path_exists = \Drupal::service('path.validator')
        ->getUrlIfValid($redirect_path);
      if ($redirect_path_exists) {
        if (!$redirect_path_exists
          ->getRouteName()) {
          $form_state
            ->setErrorByName('redirect_path', $this
            ->t('Please enter a valid redirect path.'));
        }
      }
      else {
        $form_state
          ->setErrorByName('redirect_path', $this
          ->t('Please enter a valid redirect path.'));
      }
    }
    if (strpos($url, 'http://') === 0 || strpos($url, 'https://') === 0 || strpos($url, 'www') === 0 && strpos($url, '.') || strpos($url, '.')) {
      $form_state
        ->setErrorByName('loginmenu_url', $this
        ->t("@comurl is not a valid URL", [
        '@comurl' => $url,
      ]));
    }
    else {
      $menu_exists = \Drupal::service('path.validator')
        ->getUrlIfValid($url);
      $login_page_exists_query = $this->connection
        ->select('role_login_page_settings', 'rlps');
      $login_page_exists_query
        ->fields('rlps', [
        'rl_id',
      ]);
      $login_page_exists_query
        ->condition('url', $url);
      $login_page_exists_query
        ->condition('rl_id', $rl_id, '<>');
      $login_page_exists = $login_page_exists_query
        ->execute()
        ->fetchObject();
      $current_data_match_query = $this->connection
        ->select('role_login_page_settings', 'rlps');
      $current_data_match_query
        ->fields('rlps', [
        'rl_id',
      ]);
      $current_data_match_query
        ->condition('url', $url);
      $current_data_match_query
        ->condition('rl_id', $rl_id);
      $current_data_match = $current_data_match_query
        ->execute()
        ->fetchObject();
      if ($login_page_exists && !$current_data_match) {
        $form_state
          ->setErrorByName('loginmenu_url', $this
          ->t('The menu URL already exists'));
      }
      elseif (!$login_page_exists && !$current_data_match) {
        if ($menu_exists && $menu_exists
          ->getRouteName()) {
          $form_state
            ->setErrorByName('loginmenu_url', $this
            ->t('The menu URL already exists'));
        }
      }
    }
  }

  /**
   *
   * @param array $form
   * @param FormStateInterface $form_state
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $rl_id = $this->rlid;
    $url = trim($form_state
      ->getValue([
      'loginmenu_url',
    ]));
    $replacements = [
      '!',
      '*',
      "(",
      ")",
      ";",
      ":",
      "@",
      "+",
      "\$",
      ",",
      "[",
      "]",
      " ",
    ];
    $url = str_replace($replacements, '-', $url);
    $username_label = trim($form_state
      ->getValue([
      'username_label',
    ]));
    $password_label = trim($form_state
      ->getValue([
      'password_label',
    ]));
    $submit_text = trim($form_state
      ->getValue([
      'submit_text',
    ]));
    $page_title = trim($form_state
      ->getValue([
      'page_title',
    ]));
    $redirect_path = trim($form_state
      ->getValue([
      'redirect_path',
    ]));
    $role_mismatch_error_text = trim($form_state
      ->getValue([
      'role_mismatch_error_text',
    ]));
    $invalid_credentials_error_text = trim($form_state
      ->getValue([
      'invalid_credentials_error_text',
    ]));
    $parent_class = $form_state
      ->getValue([
      'parent_class',
    ]);
    $roles = $form_state
      ->getValue([
      'roles',
    ]);
    $roles = implode(',', $roles);
    $this->connection
      ->update('role_login_page_settings')
      ->fields([
      "url" => $url,
      "username_label" => $username_label,
      "password_label" => $password_label,
      "submit_text" => $submit_text,
      "page_title" => $page_title,
      "parent_class" => $parent_class,
      "redirect_path" => $redirect_path,
      "role_mismatch_error_text" => $role_mismatch_error_text,
      "invalid_credentials_error_text" => $invalid_credentials_error_text,
      "roles" => $roles,
    ])
      ->condition('rl_id', $rl_id)
      ->execute();
    _role_login_page_settings_cache_clear($url, 'update');
  }

}

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.
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.
RoleLoginPageSettingsEdit::$connection protected property
RoleLoginPageSettingsEdit::$rlid protected property
RoleLoginPageSettingsEdit::buildForm public function Overrides FormInterface::buildForm
RoleLoginPageSettingsEdit::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
RoleLoginPageSettingsEdit::submitForm public function Overrides FormInterface::submitForm
RoleLoginPageSettingsEdit::validateForm public function @global type $base_url Overrides FormBase::validateForm
RoleLoginPageSettingsEdit::__construct public function RoleLoginPageSettingsEdit constructor.
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.