class HttpConfigRequestForm in HTTP Client Manager 8
Same name and namespace in other branches
- 8.2 src/Form/HttpConfigRequestForm.php \Drupal\http_client_manager\Form\HttpConfigRequestForm
Class HttpConfigRequestForm.
@package Drupal\http_client_manager\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\http_client_manager\Form\HttpConfigRequestForm
- class \Drupal\Core\Entity\EntityForm implements EntityFormInterface
Expanded class hierarchy of HttpConfigRequestForm
File
- src/
Form/ HttpConfigRequestForm.php, line 18
Namespace
Drupal\http_client_manager\FormView source
class HttpConfigRequestForm extends EntityForm {
/**
* Current Request.
*
* @var null|\Symfony\Component\HttpFoundation\Request
*/
protected $request;
/**
* Drupal\http_client_manager\HttpServiceApiHandler definition.
*
* @var \Drupal\http_client_manager\HttpServiceApiHandler
*/
protected $httpServicesApi;
/**
* Drupal\http_client_manager\HttpClientManagerFactory definition.
*
* @var \Drupal\http_client_manager\HttpClientManagerFactory
*/
protected $httpClientFactory;
/**
* HttpConfigRequestForm constructor.
*
* @param \Symfony\Component\HttpFoundation\RequestStack $requestStack
* The Request Stack Service.
* @param \Drupal\http_client_manager\HttpServiceApiHandlerInterface $http_services_api
* The Http Service Api Handler service.
* @param \Drupal\http_client_manager\HttpClientManagerFactoryInterface $http_client_manager_factory
* The Http Client Factory service.
*/
public function __construct(RequestStack $requestStack, HttpServiceApiHandlerInterface $http_services_api, HttpClientManagerFactoryInterface $http_client_manager_factory) {
$this->request = $requestStack
->getCurrentRequest();
$this->httpServicesApi = $http_services_api;
$this->httpClientFactory = $http_client_manager_factory;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('request_stack'), $container
->get('http_client_manager.http_services_api'), $container
->get('http_client_manager.factory'));
}
/**
* {@inheritdoc}
*/
public function form(array $form, FormStateInterface $form_state) {
$form = parent::form($form, $form_state);
$serviceApi = $this->request
->get('serviceApi');
$commandName = $this->request
->get('commandName');
$http_config_request = $this->entity;
$form['label'] = array(
'#type' => 'textfield',
'#title' => $this
->t('Label'),
'#maxlength' => 255,
'#default_value' => $http_config_request
->label(),
'#description' => $this
->t("Label for the Http Config Request."),
'#required' => TRUE,
);
$form['id'] = array(
'#type' => 'machine_name',
'#default_value' => $http_config_request
->id(),
'#machine_name' => array(
'exists' => '\\Drupal\\http_client_manager\\Entity\\HttpConfigRequest::load',
),
'#disabled' => !$http_config_request
->isNew(),
);
$form['service_api'] = [
'#type' => 'value',
'#value' => $serviceApi,
];
$form['command_name'] = [
'#type' => 'value',
'#value' => $commandName,
];
$form['parameters'] = [
'#type' => 'fieldset',
'#title' => $this
->t('parameters'),
'#tree' => TRUE,
];
$client = $this->httpClientFactory
->get($serviceApi);
$parameters = $http_config_request
->get('parameters');
foreach ($client
->getCommand($commandName)
->getParams() as $param) {
$name = $param
->getName();
$form['parameters'][$name] = [
'#command_param' => $param,
'#title' => $this
->t($name),
'#type' => 'textarea',
'#rows' => 1,
'#required' => $param
->getRequired(),
'#default_value' => $parameters[$name] ? $parameters[$name] : $param
->getDefault(),
'#description' => $param
->getDescription() ? $this
->t($param
->getDescription()) : '',
];
switch ($param
->getType()) {
case 'integer':
$form['parameters'][$name]['#type'] = 'number';
$form['parameters'][$name]['#value_callback'] = [
$this,
'integerValue',
];
break;
case 'array':
$form['parameters'][$name]['#type'] = 'textarea';
$form['parameters'][$name]['#rows'] = 3;
$placeholder = $this
->t('Enter a list of values (one value per row).');
$form['parameters'][$name]['#attributes']['placeholder'] = $placeholder;
$form['parameters'][$name]['#value_callback'] = [
$this,
'arrayValue',
];
break;
}
}
// Show the token help.
$form['token_help'] = array(
'#theme' => 'token_tree_link',
);
return $form;
}
/**
* Value callback: casts provided input to integer.
*
* @see form
*/
public function integerValue(&$element, $input, FormStateInterface $form_state) {
if ($input !== FALSE && $input !== NULL) {
return (int) $input;
}
return NULL;
}
/**
* Value callback: converts strings to array values.
*
* @see form
*/
public function arrayValue(&$element, $input, FormStateInterface $form_state) {
if ($input !== FALSE && $input !== NULL) {
$input = trim($input);
if (empty($input)) {
return [];
}
$value_callback = $this
->getValueCallback($element['#command_param']);
$items = explode("\n", $input);
foreach ($items as &$item) {
$item = trim($item);
if ($value_callback) {
$item = $this
->{$value_callback}($element, $item, $form_state);
}
}
return $items;
}
return !empty($element['#default_value']) ? implode("\n", $element['#default_value']) : NULL;
}
/**
* Get value callback.
*
* @param \Guzzle\Service\Description\Parameter $param
* A command parameter object.
*
* @return bool|string
* A callback or FALSE.
*/
protected function getValueCallback(Parameter $param) {
$callback = $param
->getItems()
->getType() . 'Value';
return method_exists($this, $callback) ? $callback : FALSE;
}
/**
* {@inheritdoc}
*/
public function save(array $form, FormStateInterface $form_state) {
$http_config_request = $this->entity;
$status = $http_config_request
->save();
switch ($status) {
case SAVED_NEW:
drupal_set_message($this
->t('Created the %label Http Config Request.', [
'%label' => $http_config_request
->label(),
]));
break;
default:
drupal_set_message($this
->t('Saved the %label Http Config Request.', [
'%label' => $http_config_request
->label(),
]));
}
$form_state
->setRedirectUrl($http_config_request
->toUrl('collection'));
}
}
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 being used by this form. | 7 |
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 an array of supported actions for the current entity form. | 29 |
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 |
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 |
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 FormInterface:: |
17 |
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 |
HttpConfigRequestForm:: |
protected | property | Drupal\http_client_manager\HttpClientManagerFactory definition. | |
HttpConfigRequestForm:: |
protected | property | Drupal\http_client_manager\HttpServiceApiHandler definition. | |
HttpConfigRequestForm:: |
protected | property | Current Request. | |
HttpConfigRequestForm:: |
public | function | Value callback: converts strings to array values. | |
HttpConfigRequestForm:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
HttpConfigRequestForm:: |
public | function |
Gets the actual form array to be built. Overrides EntityForm:: |
|
HttpConfigRequestForm:: |
protected | function | Get value callback. | |
HttpConfigRequestForm:: |
public | function | Value callback: casts provided input to integer. | |
HttpConfigRequestForm:: |
public | function |
Form submission handler for the 'save' action. Overrides EntityForm:: |
|
HttpConfigRequestForm:: |
public | function | HttpConfigRequestForm constructor. | |
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. | |
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. |