class ClusterForm in Elasticsearch Connector 8
Same name and namespace in other branches
- 8.7 src/Form/ClusterForm.php \Drupal\elasticsearch_connector\Form\ClusterForm
- 8.2 src/Form/ClusterForm.php \Drupal\elasticsearch_connector\Form\ClusterForm
- 8.5 src/Form/ClusterForm.php \Drupal\elasticsearch_connector\Form\ClusterForm
- 8.6 src/Form/ClusterForm.php \Drupal\elasticsearch_connector\Form\ClusterForm
Provides a form for the Cluster entity.
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\elasticsearch_connector\Form\ClusterForm
- class \Drupal\Core\Entity\EntityForm implements EntityFormInterface
Expanded class hierarchy of ClusterForm
File
- src/
Form/ ClusterForm.php, line 17 - Contains Drupal\elasticsearch_connector\Form.
Namespace
Drupal\elasticsearch_connector\FormView source
class ClusterForm extends EntityForm {
/**
* {@inheritdoc}
*/
public function form(array $form, FormStateInterface $form_state) {
if ($form_state
->isRebuilding()) {
$this->entity = $this
->buildEntity($form, $form_state);
}
$form = parent::form($form, $form_state);
// Get the entity and attach to the form state.
$cluster = $this
->getEntity();
if ($cluster
->isNew()) {
$form['#title'] = $this
->t('Add Elasticsearch Cluster');
}
else {
$form['#title'] = $this
->t('Edit Elasticsearch Cluster @label', array(
'@label' => $cluster
->label(),
));
}
$this
->buildEntityForm($form, $form_state, $cluster);
return $form;
}
/**
* {@inheritdoc}
*/
public function buildEntityForm(array &$form, FormStateInterface $form_state, Cluster $cluster) {
$form['cluster'] = array(
'#type' => 'value',
'#value' => $cluster,
);
$form['name'] = array(
'#type' => 'textfield',
'#title' => t('Administrative cluster name'),
'#default_value' => empty($cluster->name) ? '' : $cluster->name,
'#description' => t('Enter the administrative cluster name that will be your Elasticsearch cluster unique identifier.'),
'#required' => TRUE,
);
$form['cluster_id'] = array(
'#type' => 'machine_name',
'#title' => t('Cluster id'),
'#default_value' => !empty($cluster->cluster_id) ? $cluster->cluster_id : '',
'#maxlength' => 125,
'#description' => t('A unique machine-readable name for this Elasticsearch cluster.'),
'#machine_name' => array(
'exists' => [
'Drupal\\elasticsearch_connector\\Entity\\Cluster',
'load',
],
'source' => array(
'name',
),
),
'#required' => TRUE,
'#disabled' => !empty($cluster->cluster_id),
);
$form['url'] = array(
'#type' => 'textfield',
'#title' => t('Server URL'),
'#default_value' => !empty($cluster->url) ? $cluster->url : '',
'#description' => t('URL and port of a server (node) in the cluster. ' . 'Please, always enter the port even if it is default one. ' . 'Nodes will be automatically discovered. ' . 'Examples: http://localhost:9200 or https://localhost:443.'),
'#required' => TRUE,
);
$form['status_info'] = $this
->clusterFormInfo($cluster);
$default = Cluster::getDefaultCluster();
$form['default'] = array(
'#type' => 'checkbox',
'#title' => t('Make this cluster default connection'),
'#description' => t('If the cluster connection is not specified the API will use the default connection.'),
'#default_value' => empty($default) || !empty($cluster->cluster_id) && $cluster->cluster_id == $default ? '1' : '0',
);
$form['options'] = array(
'#tree' => TRUE,
);
$form['options']['multiple_nodes_connection'] = array(
'#type' => 'checkbox',
'#title' => t('Use multiple nodes connection'),
'#description' => t('Automatically discover all nodes and use them in the cluster connection. ' . 'Then the Elasticsearch client can distribute the query execution on random base between nodes.'),
'#default_value' => !empty($cluster->options['multiple_nodes_connection']) ? 1 : 0,
);
$form['status'] = array(
'#type' => 'radios',
'#title' => t('Status'),
'#default_value' => isset($cluster->status) ? $cluster->status : Cluster::ELASTICSEARCH_CONNECTOR_STATUS_ACTIVE,
'#options' => array(
Cluster::ELASTICSEARCH_CONNECTOR_STATUS_ACTIVE => t('Active'),
Cluster::ELASTICSEARCH_CONNECTOR_STATUS_INACTIVE => t('Inactive'),
),
'#required' => TRUE,
);
$form['options']['use_authentication'] = array(
'#type' => 'checkbox',
'#title' => t('Use authentication'),
'#description' => t('Use HTTP authentication method to connect to Elasticsearch.'),
'#default_value' => !empty($cluster->options['use_authentication']) ? 1 : 0,
'#suffix' => '<div id="hosting-iframe-container"> </div>',
);
$form['options']['authentication_type'] = array(
'#type' => 'radios',
'#title' => t('Authentication type'),
'#description' => t('Select the http authentication type.'),
'#options' => array(
'Digest' => t('Digest'),
'Basic' => t('Basic'),
'NTLM' => t('NTLM'),
),
'#default_value' => !empty($cluster->options['authentication_type']) ? $cluster->options['authentication_type'] : 'Digest',
'#states' => array(
'visible' => array(
':input[name="options[use_authentication]"]' => array(
'checked' => TRUE,
),
),
),
);
$form['options']['username'] = array(
'#type' => 'textfield',
'#title' => t('Username'),
'#description' => t('The username for authentication.'),
'#default_value' => !empty($cluster->options['username']) ? $cluster->options['username'] : '',
'#states' => array(
'visible' => array(
':input[name="options[use_authentication]"]' => array(
'checked' => TRUE,
),
),
),
);
$form['options']['password'] = array(
'#type' => 'textfield',
'#title' => t('Password'),
'#description' => t('The password for authentication.'),
'#default_value' => !empty($cluster->options['password']) ? $cluster->options['password'] : '',
'#states' => array(
'visible' => array(
':input[name="options[use_authentication]"]' => array(
'checked' => TRUE,
),
),
),
);
$form['options']['timeout'] = array(
'#type' => 'textfield',
'#title' => t('Connection timeout'),
'#size' => 20,
'#required' => TRUE,
'#element_validate' => array(
'element_validate_number',
),
'#description' => t('After how many seconds the connection should timeout if there is no connection to Elasticsearch.'),
'#default_value' => !empty($cluster->options['timeout']) ? $cluster->options['timeout'] : Cluster::ELASTICSEARCH_CONNECTOR_DEFAULT_TIMEOUT,
);
}
/**
* {@inheritdoc}
*/
public function validateForm(array &$form, FormStateInterface $form_state) {
parent::validateForm($form, $form_state);
$values = $form_state
->getValues();
// TODO: Check for valid URL when we are submitting the form.
// Set default cluster.
$default = Cluster::getDefaultCluster();
if (empty($default) && !$values['default']) {
$default = Cluster::setDefaultCluster($values['cluster_id']);
}
elseif ($values['default']) {
$default = Cluster::setDefaultCluster($values['cluster_id']);
}
if ($values['default'] == 0 && !empty($default) && $default == $values['cluster_id']) {
drupal_set_message(t('There must be a default connection. %name is still the default
connection. Please change the default setting on the cluster you wish
to set as default.', array(
'%name' => $values['name'],
)), 'warning');
}
}
/**
* Build the cluster info table for the edit page.
*/
protected function clusterFormInfo(Cluster $cluster = NULL) {
$element = array();
if (isset($cluster->url)) {
try {
$cluster_info = $cluster
->getClusterInfo();
if ($cluster_info) {
$headers = array(
array(
'data' => t('Cluster name'),
),
array(
'data' => t('Status'),
),
array(
'data' => t('Number of nodes'),
),
);
if (isset($cluster_info['state'])) {
$rows = array(
array(
$cluster_info['health']['cluster_name'],
$cluster_info['health']['status'],
$cluster_info['health']['number_of_nodes'],
),
);
$element = array(
'#theme' => 'table',
'#header' => $headers,
'#rows' => $rows,
'#attributes' => array(
'class' => array(
'admin-elasticsearch',
),
'id' => 'cluster-info',
),
);
}
else {
$rows = array(
array(
t('Unknown'),
t('Unavailable'),
'',
),
);
$element = array(
'#theme' => 'table',
'#header' => $headers,
'#rows' => $rows,
'#attributes' => array(
'class' => array(
'admin-elasticsearch',
),
'id' => 'cluster-info',
),
);
}
}
else {
$element['#type'] = 'markup';
$element['#markup'] = '<div id="cluster-info"> </div>';
}
} catch (\Exception $e) {
drupal_set_message($e
->getMessage(), 'error');
}
}
return $element;
}
/**
* {@inheritdoc}
*/
public function save(array $form, FormStateInterface $form_state) {
// Only save the server if the form doesn't need to be rebuilt.
if (!$form_state
->isRebuilding()) {
try {
$cluster = $this
->getEntity();
$cluster
->save();
drupal_set_message(t('Cluster %label has been updated.', array(
'%label' => $cluster
->label(),
)));
$form_state
->setRedirect('entity.elasticsearch_cluster.canonical', array(
'elasticsearch_cluster' => $cluster
->id(),
));
} catch (Exception $e) {
$form_state
->setRebuild();
watchdog_exception('elasticsearch_connector', $e);
drupal_set_message($this
->t('The cluster could not be saved.'), 'error');
}
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ClusterForm:: |
public | function | ||
ClusterForm:: |
protected | function | Build the cluster info table for the edit page. | |
ClusterForm:: |
public | function |
Gets the actual form array to be built. Overrides EntityForm:: |
|
ClusterForm:: |
public | function |
Form submission handler for the 'save' action. Overrides EntityForm:: |
|
ClusterForm:: |
public | function |
Form validation handler. Overrides FormBase:: |
|
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:: |
public static | function |
Instantiates a new instance of this class. Overrides ContainerInjectionInterface:: |
87 |
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. | |
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. |