class ServerForm in OAuth2 Server 8
Same name and namespace in other branches
- 2.0.x src/Form/ServerForm.php \Drupal\oauth2_server\Form\ServerForm
Class Server Form.
@package Drupal\oauth2_server\Form
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\Core\Entity\EntityForm implements EntityFormInterface
- class \Drupal\oauth2_server\Form\ServerForm
- class \Drupal\Core\Entity\EntityForm implements EntityFormInterface
Expanded class hierarchy of ServerForm
File
- src/
Form/ ServerForm.php, line 16
Namespace
Drupal\oauth2_server\FormView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
EntityForm:: |
protected | property | The entity type manager. | 3 |
EntityForm:: |
protected | property | The module handler service. | |
EntityForm:: |
protected | property | The name of the current operation. | |
EntityForm:: |
private | property | The entity manager. | |
EntityForm:: |
protected | function | Returns the action form element for the current entity form. | |
EntityForm:: |
public | function | Form element #after_build callback: Updates the entity with submitted data. | |
EntityForm:: |
public | function |
Builds an updated entity object based upon the submitted form values. Overrides EntityFormInterface:: |
2 |
EntityForm:: |
public | function |
Form constructor. Overrides FormInterface:: |
10 |
EntityForm:: |
protected | function | Copies top-level form values to entity properties | 7 |
EntityForm:: |
public | function |
Returns a string identifying the base form. Overrides BaseFormIdInterface:: |
5 |
EntityForm:: |
public | function |
Gets the form entity. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Determines which entity will be used by this form from a RouteMatch object. Overrides EntityFormInterface:: |
1 |
EntityForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
10 |
EntityForm:: |
public | function |
Gets the operation identifying the form. Overrides EntityFormInterface:: |
|
EntityForm:: |
protected | function | Initialize the form state and the entity before the first form build. | 3 |
EntityForm:: |
protected | function | Prepares the entity object before the form is built first. | 3 |
EntityForm:: |
protected | function | Invokes the specified prepare hook variant. | |
EntityForm:: |
public | function | Process callback: assigns weights and hides extra fields. | |
EntityForm:: |
public | function |
Form submission handler for the 'save' action. Overrides EntityFormInterface:: |
41 |
EntityForm:: |
public | function |
Sets the form entity. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the entity manager for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the entity type manager for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the module handler for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function |
Sets the operation for this form. Overrides EntityFormInterface:: |
|
EntityForm:: |
public | function | ||
EntityForm:: |
public | function | ||
FormBase:: |
protected | property | The config factory. | 1 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Retrieves a configuration object. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
FormBase:: |
public | function |
Form validation handler. Overrides FormInterface:: |
62 |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
ServerForm:: |
protected | property |
The server entity. Overrides EntityForm:: |
|
ServerForm:: |
protected | property | The server storage. | |
ServerForm:: |
protected | function |
Returns an array of supported actions for the current entity form. Overrides EntityForm:: |
|
ServerForm:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
ServerForm:: |
public | function |
Gets the actual form array to be built. Overrides EntityForm:: |
|
ServerForm:: |
public static | function | Provides a settings form for the refresh_token grant type. | |
ServerForm:: |
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:: |
|
ServerForm:: |
public | function | ServerForm constructor. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |