class SearchApiFederatedSolrSearchAppSettingsForm in Search API Federated Solr 8
Same name and namespace in other branches
- 8.3 src/Form/SearchApiFederatedSolrSearchAppSettingsForm.php \Drupal\search_api_federated_solr\Form\SearchApiFederatedSolrSearchAppSettingsForm
- 8.2 src/Form/SearchApiFederatedSolrSearchAppSettingsForm.php \Drupal\search_api_federated_solr\Form\SearchApiFederatedSolrSearchAppSettingsForm
- 4.x src/Form/SearchApiFederatedSolrSearchAppSettingsForm.php \Drupal\search_api_federated_solr\Form\SearchApiFederatedSolrSearchAppSettingsForm
Class SearchApiFederatedSolrSearchAppSettingsForm.
@package Drupal\search_api_federated_solr\Form
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
- class \Drupal\search_api_federated_solr\Form\SearchApiFederatedSolrSearchAppSettingsForm
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
Expanded class hierarchy of SearchApiFederatedSolrSearchAppSettingsForm
1 string reference to 'SearchApiFederatedSolrSearchAppSettingsForm'
File
- src/
Form/ SearchApiFederatedSolrSearchAppSettingsForm.php, line 18 - Contains \Drupal\search_api_solr_federated\Form\SearchApiFederatedSolrSearchAppSettingsForm.
Namespace
Drupal\search_api_federated_solr\FormView source
class SearchApiFederatedSolrSearchAppSettingsForm extends ConfigFormBase {
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'search_api_federated_solr_search_app_settings';
}
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames() {
return [
'search_api_federated_solr.search_app.settings',
];
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form['#validate'][] = [
$this,
'formValidationPathValidate',
];
$config = $this
->config('search_api_federated_solr.search_app.settings');
$index_options = [];
$search_api_indexes = \Drupal::entityTypeManager()
->getStorage('search_api_index')
->loadMultiple();
/* @var $search_api_index \Drupal\search_api\IndexInterface */
foreach ($search_api_indexes as $search_api_index) {
$index_options[$search_api_index
->id()] = $search_api_index
->label();
}
$form['path'] = [
'#type' => 'textfield',
'#title' => $this
->t('Search app path'),
'#default_value' => $config
->get('path'),
'#description' => $this
->t('The path for the search app (Default: "/search-app").'),
];
$form['page_title'] = [
'#type' => 'textfield',
'#title' => $this
->t('Search results page title'),
'#default_value' => $config
->get('page_title'),
'#description' => $this
->t('The title that will live in the header tag of the search results page (leave empty to hide completely).'),
];
$form['search_index'] = [
'#type' => 'select',
'#title' => $this
->t('Search API index'),
'#description' => $this
->t('Defines <a href="/admin/config/search/search-api">which search_api index and server</a> the search app should use.'),
'#options' => $index_options,
'#default_value' => $config
->get('index.id'),
'#required' => TRUE,
'#ajax' => [
'callback' => [
$this,
'getSiteName',
],
'event' => 'change',
'wrapper' => 'site-name-property',
],
];
$form['site_name_property'] = [
'#type' => 'hidden',
'#attributes' => [
'id' => [
'site-name-property',
],
],
'#value' => $config
->get('index.has_site_name_property') ? 'true' : '',
];
$form['search_index_basic_auth'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Search Index Basic Authentication'),
'#description' => $this
->t('If your Solr server is protected by basic HTTP authentication, enter the login data here. This will be accessible to the client in an obscured, but non-secure method. It should, therefore, only provide read access to the index AND be different from that provided when configuring the server in Search API. The Password field is intentionally not obscured to emphasize this distinction.'),
];
$form['search_index_basic_auth']['username'] = [
'#type' => 'textfield',
'#title' => $this
->t('Username'),
'#default_value' => $config
->get('index.username'),
];
$form['search_index_basic_auth']['password'] = [
'#type' => 'textfield',
'#title' => $this
->t('Password'),
'#default_value' => $config
->get('index.password'),
];
$form['set_search_site'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Set the "Site name" facet to this site'),
'#default_value' => $config
->get('facet.site_name.set_default'),
'#description' => $this
->t('When checked, only search results from this site will be shown, by default, until this site\'s checkbox is unchecked in the search app\'s "Site name" facet.'),
'#states' => [
'visible' => [
':input[name="site_name_property"]' => [
'value' => "true",
],
],
],
];
$form['show_empty_search_results'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Show results for empty search'),
'#default_value' => $config
->get('content.show_empty_search_results'),
'#description' => $this
->t(' When checked, this option allows users to see all results when no search term is entered. By default, empty searches are disabled and yield no results.'),
];
$form['no_results_text'] = [
'#type' => 'textfield',
'#title' => $this
->t('No results text'),
'#default_value' => $config
->get('content.no_results'),
'#description' => $this
->t('This text is shown when a query returns no results. (Default: "Your search yielded no results.")'),
];
$form['search_prompt_text'] = [
'#type' => 'textfield',
'#title' => $this
->t('Search prompt text'),
'#default_value' => $config
->get('content.search_prompt'),
'#description' => $this
->t('This text is shown when no query term has been entered. (Default: "Please enter a search term.")'),
];
$form['rows'] = [
'#type' => 'number',
'#title' => $this
->t('Number of search results per page'),
'#default_value' => $config
->get('results.rows'),
'#description' => $this
->t('The max number of results to render per search results page. (Default: 20)'),
];
$form['page_buttons'] = [
'#type' => 'number',
'#title' => $this
->t('Number of pagination buttons'),
'#default_value' => $config
->get('pagination.buttons'),
'#description' => $this
->t('The max number of numbered pagination buttons to show at a given time. (Default: 5)'),
];
$form['#cache'] = [
'max-age' => 0,
];
return parent::buildForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
// Retrieve the search app configuration.
$config = $this->configFactory
->getEditable('search_api_federated_solr.search_app.settings');
// Set the search app path.
$path = $form_state
->getValue('path');
$current_path = $config
->get('path');
$rebuild_routes = FALSE;
if ($path && $path !== $current_path) {
$config
->set('path', $path);
$rebuild_routes = TRUE;
}
// Set the search results page title.
$page_title = $form_state
->getValue('page_title');
$config
->set('page_title', $page_title);
// Set the search app config setting for the default search site flag.
$set_search_site = $form_state
->getValue('set_search_site');
$config
->set('facet.site_name.set_default', $set_search_site);
// Set the search app configuration setting for the default search site flag.
$show_empty_search_results = $form_state
->getValue('show_empty_search_results');
$config
->set('content.show_empty_search_results', $show_empty_search_results);
// Get the id of the chosen index.
$search_index = $form_state
->getValue('search_index');
// Save the selected index option in search app config (for form state).
$config
->set('index.id', $search_index);
// Get the index configuration object.
$index_config = \Drupal::config('search_api.index.' . $search_index);
$site_name_property = $index_config
->get('field_settings.site_name.configuration.site_name');
$config
->set('index.has_site_name_property', $site_name_property ? TRUE : FALSE);
// Get the id of the chosen index's server.
$index_server = $index_config
->get('server');
// Get the server url.
$server_config = \Drupal::config('search_api.server.' . $index_server);
$server = $server_config
->get('backend_config.connector_config');
// Get the required server config field data.
$server_url = $server['scheme'] . '://' . $server['host'] . ':' . $server['port'];
// Check for the non-required server config field data before appending.
$server_url .= $server['path'] ?: '';
$server_url .= $server['core'] ? '/' . $server['core'] : '';
// Append the request handler.
$server_url .= '/select';
// Set the search app configuration setting for the solr backend url.
$config
->set('index.server_url', $server_url);
// Set the Basic Auth username and password.
$config
->set('index.username', $form_state
->getValue('username'));
$config
->set('index.password', $form_state
->getValue('password'));
// Set the no results text.
$config
->set('content.no_results', $form_state
->getValue('no_results_text'));
// Set the search prompt text.
$config
->set('content.search_prompt', $form_state
->getValue('search_prompt_text'));
// Set the number of rows.
$config
->set('results.rows', $form_state
->getValue('rows'));
// Set the number of pagination buttons.
$config
->set('pagination.buttons', $form_state
->getValue('page_buttons'));
$config
->save();
if ($rebuild_routes) {
// Rebuild the routing information without clearing all the caches.
\Drupal::service('router.builder')
->rebuild();
}
parent::submitForm($form, $form_state);
}
/**
* Get the name of the site.
*
* @param array $form
* An associative array containing the structure of the form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
*/
public function getSiteName(array &$form, FormStateInterface $form_state) {
// Get the id of the chosen index.
$search_index = $form_state
->getValue('search_index');
// Get the index configuration object.
$index_config = \Drupal::config('search_api.index.' . $search_index);
$is_site_name_property = $index_config
->get('field_settings.site_name.configuration.site_name') ? 'true' : '';
$elem = [
'#type' => 'hidden',
'#name' => 'site_name_property',
'#value' => $is_site_name_property,
'#attributes' => [
'id' => [
'site-name-property',
],
],
];
return $elem;
}
/**
* Validates that the provided search path is not in use by an existing route.
*
* @param array $form
* An associative array containing the structure of the form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
*/
public function formValidationPathValidate(array &$form, FormStateInterface $form_state) {
$path = $form_state
->getValue('path');
if ($path) {
// Check if a route with the config path value already exists.
$router = \Drupal::service('router.no_access_checks');
$result = FALSE;
try {
$result = $router
->match($path);
} catch (\Exception $e) {
// This is what we want, indicates the route path doesn't exist.
}
// If the route path exists for something other than the search route,
// set an error on the form.
if ($result && $result['_route'] !== "search_api_federated_solr.search") {
$form_state
->setErrorByName('path', t('The path you have entered already exists'));
}
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigFormBase:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
13 |
ConfigFormBase:: |
public | function | Constructs a \Drupal\system\ConfigFormBase object. | 11 |
ConfigFormBaseTrait:: |
protected | function | Retrieves a configuration object. | |
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 | |
FormBase:: |
protected | property | The config factory. | 1 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
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. | |
SearchApiFederatedSolrSearchAppSettingsForm:: |
public | function |
Form constructor. Overrides ConfigFormBase:: |
|
SearchApiFederatedSolrSearchAppSettingsForm:: |
public | function | Validates that the provided search path is not in use by an existing route. | |
SearchApiFederatedSolrSearchAppSettingsForm:: |
protected | function |
Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait:: |
|
SearchApiFederatedSolrSearchAppSettingsForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
SearchApiFederatedSolrSearchAppSettingsForm:: |
public | function | Get the name of the site. | |
SearchApiFederatedSolrSearchAppSettingsForm:: |
public | function |
Form submission handler. Overrides ConfigFormBase:: |
|
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. |