You are here

class ServerForm in OAuth2 Server 8

Same name and namespace in other branches
  1. 2.0.x src/Form/ServerForm.php \Drupal\oauth2_server\Form\ServerForm

Class Server Form.

@package Drupal\oauth2_server\Form

Hierarchy

Expanded class hierarchy of ServerForm

File

src/Form/ServerForm.php, line 16

Namespace

Drupal\oauth2_server\Form
View source
class ServerForm extends EntityForm {

  /**
   * The server entity.
   *
   * @var \Drupal\oauth2_server\ServerInterface
   */
  protected $entity;

  /**
   * The server storage.
   *
   * @var \Drupal\Core\Entity\EntityStorageInterface
   */
  protected $storage;

  /**
   * ServerForm constructor.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager.
   *
   * @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
   * @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
   */
  public function __construct(EntityTypeManagerInterface $entity_type_manager) {
    $this->storage = $entity_type_manager
      ->getStorage('oauth2_server');
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('entity_type.manager'));
  }

  /**
   * {@inheritdoc}
   */
  public function form(array $form, FormStateInterface $form_state) {
    $server = $this->entity;
    $form['#title'] = $this
      ->t('OAuth2 Server: %label edit', [
      '%label' => $server
        ->label(),
    ]);
    $form['#tree'] = TRUE;
    $form['name'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Server name'),
      '#description' => $this
        ->t('Enter the displayed name for the server.'),
      '#default_value' => $server
        ->label(),
      '#required' => TRUE,
    ];
    $form['server_id'] = [
      '#type' => 'machine_name',
      '#default_value' => !$server
        ->isNew() ? $server
        ->id() : '',
      '#maxlength' => 50,
      '#required' => TRUE,
      '#machine_name' => [
        'exists' => [
          $this->storage,
          'load',
        ],
        'source' => [
          'name',
        ],
      ],
    ];
    $form['status'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Enabled'),
      '#description' => $this
        ->t('Only enabled servers can be used for OAuth2.'),
      '#default_value' => $server
        ->status(),
    ];
    $form['settings'] = [
      '#type' => 'fieldset',
      '#title' => t('Settings'),
    ];
    $form['settings']['enforce_state'] = [
      '#type' => 'value',
      '#value' => $server->settings['enforce_state'],
    ];

    // The default scope is actually edited from the Scope UI to avoid showing
    // a select box with potentially thousands of options here.
    $form['settings']['default_scope'] = [
      '#type' => 'value',
      '#value' => $server->settings['default_scope'],
    ];
    $form['settings']['allow_implicit'] = [
      '#type' => 'checkbox',
      '#title' => t('Allow the implicit flow'),
      '#description' => t('Allows clients to receive an access token without the need for an authorization request token.'),
      '#default_value' => !empty($server->settings['allow_implicit']),
    ];
    $form['settings']['use_openid_connect'] = [
      '#type' => 'checkbox',
      '#title' => t('Use OpenID Connect'),
      '#description' => t("Strongly recommended for login providers."),
      '#default_value' => !empty($server->settings['use_openid_connect']),
      '#access' => extension_loaded('openssl'),
    ];
    $form['settings']['use_crypto_tokens'] = [
      '#type' => 'checkbox',
      '#title' => t('Use JWT Access Tokens'),
      '#description' => t("Sends encrypted JWT access tokens that aren't stored in the database."),
      '#default_value' => !empty($server->settings['use_crypto_tokens']),
      '#access' => extension_loaded('openssl'),
    ];

    // Prepare a list of available grant types.
    $grant_types = Utility::getGrantTypes();
    $grant_type_options = [];
    foreach ($grant_types as $type => $grant_type) {
      $grant_type_options[$type] = $grant_type['name'];
    }
    $form['settings']['grant_types'] = [
      '#type' => 'checkboxes',
      '#title' => t('Enabled grant types'),
      '#options' => $grant_type_options,
      '#default_value' => $server->settings['grant_types'],
    ];

    // Add any grant type specific settings.
    foreach ($grant_types as $type => $grant_type) {

      // Merge-in any provided defaults.
      if (isset($grant_type['default settings'])) {
        $server->settings += $grant_type['default settings'];
      }

      // Add the form elements.
      if (isset($grant_type['settings callback'])) {
        $dom_ids = [];
        $dom_ids[] = 'edit-settings-grant-types-' . str_replace('_', '-', $type);
        $form['settings'] += $grant_type['settings callback']($server->settings, $dom_ids);
      }
    }
    $form['settings']['advanced_settings'] = [
      '#type' => 'fieldset',
      '#title' => t('Advanced settings'),
      '#collapsible' => TRUE,
      '#collapsed' => TRUE,
    ];
    $form['settings']['advanced_settings']['access_lifetime'] = [
      '#type' => 'textfield',
      '#title' => t('Access token lifetime'),
      '#description' => t('The number of seconds the access token will be valid for.'),
      '#default_value' => $server->settings['advanced_settings']['access_lifetime'],
      '#size' => 11,
    ];
    $form['settings']['advanced_settings']['id_lifetime'] = [
      '#type' => 'textfield',
      '#title' => t('ID token lifetime'),
      '#description' => t('The number of seconds the ID token will be valid for.'),
      '#default_value' => $server->settings['advanced_settings']['id_lifetime'],
      '#size' => 11,
      '#states' => [
        'visible' => [
          '#edit-settings-use-openid-connect' => [
            'checked' => TRUE,
          ],
        ],
      ],
    ];
    $form['settings']['advanced_settings']['refresh_token_lifetime'] = [
      '#type' => 'textfield',
      '#title' => t('Refresh token lifetime'),
      '#description' => t('The number of seconds the refresh token will be valid for. 0 for forever.'),
      '#default_value' => $server->settings['advanced_settings']['refresh_token_lifetime'],
      '#size' => 11,
    ];
    $form['settings']['advanced_settings']['require_exact_redirect_uri'] = [
      '#type' => 'checkbox',
      '#title' => t('Require exact redirect uri'),
      '#description' => t("Require the redirect url to be an exact match of the client's redirect url. If not enabled, the redirect url in the request can contain additional segments, such as a query string."),
      '#default_value' => isset($server->settings['advanced_settings']['require_exact_redirect_uri']) ? $server->settings['advanced_settings']['require_exact_redirect_uri'] : TRUE,
    ];
    return parent::form($form, $form_state);
  }

  /**
   * Provides a settings form for the refresh_token grant type.
   *
   * @param array $config
   *   The config array.
   * @param array $dom_ids
   *   The DOM ids.
   *
   * @return array
   *   A renderable form array.
   */
  public static function refreshTokenSettings(array $config, array $dom_ids = []) {
    $form = [];
    $form['always_issue_new_refresh_token'] = [
      '#type' => 'checkbox',
      '#title' => t('Always issue a new refresh token after the existing one has been used'),
      '#default_value' => $config['always_issue_new_refresh_token'],
    ];
    $form['unset_refresh_token_after_use'] = [
      '#type' => 'checkbox',
      '#title' => t('Unset (delete) the refresh token after it has been used'),
      '#default_value' => $config['unset_refresh_token_after_use'],
    ];
    foreach ($dom_ids as $dom_id) {
      $form['always_issue_new_refresh_token']['#states']['visible']['#' . $dom_id]['checked'] = TRUE;
      $form['unset_refresh_token_after_use']['#states']['visible']['#' . $dom_id]['checked'] = TRUE;
    }
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  protected function actions(array $form, FormStateInterface $form_state) {
    $actions = parent::actions($form, $form_state);
    $actions['submit']['#value'] = $this
      ->t('Save server');
    return $actions;
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    parent::submitForm($form, $form_state);
    $this
      ->messenger()
      ->addMessage($this
      ->t('The server configuration has been saved.'));
    $form_state
      ->setRedirect('oauth2_server.overview');
  }

}

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
EntityForm::$entityTypeManager protected property The entity type manager. 3
EntityForm::$moduleHandler protected property The module handler service.
EntityForm::$operation protected property The name of the current operation.
EntityForm::$privateEntityManager private property The entity manager.
EntityForm::actionsElement protected function Returns the action form element for the current entity form.
EntityForm::afterBuild public function Form element #after_build callback: Updates the entity with submitted data.
EntityForm::buildEntity public function Builds an updated entity object based upon the submitted form values. Overrides EntityFormInterface::buildEntity 2
EntityForm::buildForm public function Form constructor. Overrides FormInterface::buildForm 10
EntityForm::copyFormValuesToEntity protected function Copies top-level form values to entity properties 7
EntityForm::getBaseFormId public function Returns a string identifying the base form. Overrides BaseFormIdInterface::getBaseFormId 5
EntityForm::getEntity public function Gets the form entity. Overrides EntityFormInterface::getEntity
EntityForm::getEntityFromRouteMatch public function Determines which entity will be used by this form from a RouteMatch object. Overrides EntityFormInterface::getEntityFromRouteMatch 1
EntityForm::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId 10
EntityForm::getOperation public function Gets the operation identifying the form. Overrides EntityFormInterface::getOperation
EntityForm::init protected function Initialize the form state and the entity before the first form build. 3
EntityForm::prepareEntity protected function Prepares the entity object before the form is built first. 3
EntityForm::prepareInvokeAll protected function Invokes the specified prepare hook variant.
EntityForm::processForm public function Process callback: assigns weights and hides extra fields.
EntityForm::save public function Form submission handler for the 'save' action. Overrides EntityFormInterface::save 41
EntityForm::setEntity public function Sets the form entity. Overrides EntityFormInterface::setEntity
EntityForm::setEntityManager public function Sets the entity manager for this form. Overrides EntityFormInterface::setEntityManager
EntityForm::setEntityTypeManager public function Sets the entity type manager for this form. Overrides EntityFormInterface::setEntityTypeManager
EntityForm::setModuleHandler public function Sets the module handler for this form. Overrides EntityFormInterface::setModuleHandler
EntityForm::setOperation public function Sets the operation for this form. Overrides EntityFormInterface::setOperation
EntityForm::__get public function
EntityForm::__set public function
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::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.
ServerForm::$entity protected property The server entity. Overrides EntityForm::$entity
ServerForm::$storage protected property The server storage.
ServerForm::actions protected function Returns an array of supported actions for the current entity form. Overrides EntityForm::actions
ServerForm::create public static function Instantiates a new instance of this class. Overrides FormBase::create
ServerForm::form public function Gets the actual form array to be built. Overrides EntityForm::form
ServerForm::refreshTokenSettings public static function Provides a settings form for the refresh_token grant type.
ServerForm::submitForm public function This is the default entity object builder function. It is called before any other submit handler to build the new entity object to be used by the following submit handlers. At this point of the form workflow the entity is validated and the form state… Overrides EntityForm::submitForm
ServerForm::__construct public function ServerForm 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.