class BasicAuthTestSolrCloudConnector in Search API Solr 8.3
Same name and namespace in other branches
- 4.x tests/modules/search_api_solr_test/src/Plugin/SolrConnector/BasicAuthTestSolrCloudConnector.php \Drupal\search_api_solr_test\Plugin\SolrConnector\BasicAuthTestSolrCloudConnector
Basic auth Solr test connector.
Plugin annotation
@SolrConnector(
  id = "solr_cloud_basic_auth_test",
  label = @Translation("Solr Cloud Basic Auth Test"),
  description = @Translation("A connector usable for Solr installations protected by basic authentication.")
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait- class \Drupal\search_api\Plugin\HideablePluginBase implements HideablePluginInterface- class \Drupal\search_api\Plugin\ConfigurablePluginBase implements ConfigurablePluginInterface uses PluginDependencyTrait- class \Drupal\search_api_solr\SolrConnector\SolrConnectorPluginBase implements PluginFormInterface, SolrConnectorInterface uses LoggerTrait, PluginFormTrait- class \Drupal\search_api_solr\Plugin\SolrConnector\StandardSolrConnector- class \Drupal\search_api_solr\Plugin\SolrConnector\StandardSolrCloudConnector implements SolrCloudConnectorInterface- class \Drupal\search_api_solr\Plugin\SolrConnector\BasicAuthSolrCloudConnector uses BasicAuthTrait- class \Drupal\search_api_solr_test\Plugin\SolrConnector\BasicAuthTestSolrCloudConnector
 
 
- class \Drupal\search_api_solr\Plugin\SolrConnector\BasicAuthSolrCloudConnector uses BasicAuthTrait
 
- class \Drupal\search_api_solr\Plugin\SolrConnector\StandardSolrCloudConnector implements SolrCloudConnectorInterface
 
- class \Drupal\search_api_solr\Plugin\SolrConnector\StandardSolrConnector
 
- class \Drupal\search_api_solr\SolrConnector\SolrConnectorPluginBase implements PluginFormInterface, SolrConnectorInterface uses LoggerTrait, PluginFormTrait
 
- class \Drupal\search_api\Plugin\ConfigurablePluginBase implements ConfigurablePluginInterface uses PluginDependencyTrait
 
- class \Drupal\search_api\Plugin\HideablePluginBase implements HideablePluginInterface
 
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of BasicAuthTestSolrCloudConnector
File
- tests/modules/ search_api_solr_test/ src/ Plugin/ SolrConnector/ BasicAuthTestSolrCloudConnector.php, line 22 
Namespace
Drupal\search_api_solr_test\Plugin\SolrConnectorView source
class BasicAuthTestSolrCloudConnector extends BasicAuthSolrCloudConnector {
  /**
   * The Solarium query.
   *
   * @var \Solarium\Core\Query\QueryInterface
   */
  protected static $query;
  /**
   * The Solarium request.
   *
   * @var \Solarium\Core\Client\Request
   */
  protected static $request;
  /**
   * Whether to intercept the query/request or not.
   *
   * @var bool
   */
  protected $intercept = FALSE;
  /**
   * {@inheritdoc}
   */
  public function execute(QueryInterface $query, Endpoint $endpoint = NULL) {
    self::$query = $query;
    if ($this->intercept) {
      /** @var \Solarium\Core\Query\AbstractQuery $query */
      return new Result($query, new Response(''));
    }
    return parent::execute($query, $endpoint);
  }
  /**
   * {@inheritdoc}
   */
  public function executeRequest(Request $request, Endpoint $endpoint = NULL) {
    self::$request = $request;
    if ($this->intercept) {
      return new Response('');
    }
    return parent::executeRequest($request, $endpoint);
  }
  /**
   * Gets the Solarium query.
   */
  public function getQuery() {
    return self::$query;
  }
  /**
   * Gets the Solarium request.
   */
  public function getRequest() {
    return self::$request;
  }
  /**
   * Gets the Solarium request parameters.
   */
  public function getRequestParams() {
    return Utility::parseRequestParams(self::$request);
  }
  /**
   * Sets the intercept property.
   */
  public function setIntercept(bool $intercept) {
    $this->intercept = $intercept;
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| BasicAuthTestSolrCloudConnector:: | protected | property | Whether to intercept the query/request or not. | |
| BasicAuthTestSolrCloudConnector:: | protected static | property | The Solarium query. | |
| BasicAuthTestSolrCloudConnector:: | protected static | property | The Solarium request. | |
| BasicAuthTestSolrCloudConnector:: | public | function | Executes any query. Overrides SolrConnectorPluginBase:: | |
| BasicAuthTestSolrCloudConnector:: | public | function | Executes a request and returns the response. Overrides SolrConnectorPluginBase:: | |
| BasicAuthTestSolrCloudConnector:: | public | function | Gets the Solarium query. | |
| BasicAuthTestSolrCloudConnector:: | public | function | Gets the Solarium request. | |
| BasicAuthTestSolrCloudConnector:: | public | function | Gets the Solarium request parameters. | |
| BasicAuthTestSolrCloudConnector:: | public | function | Sets the intercept property. | |
| BasicAuthTrait:: | public | function | ||
| BasicAuthTrait:: | public | function | ||
| BasicAuthTrait:: | public | function | ||
| BasicAuthTrait:: | public | function | ||
| BasicAuthTrait:: | public | function | ||
| ConfigurablePluginBase:: | public | function | Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: | 6 | 
| ConfigurablePluginBase:: | protected | function | Calculates and adds dependencies of a specific plugin instance. | |
| ConfigurablePluginBase:: | public | function | Gets this plugin's configuration. Overrides ConfigurableInterface:: | |
| ConfigurablePluginBase:: | public | function | Returns the plugin's description. Overrides ConfigurablePluginInterface:: | |
| ConfigurablePluginBase:: | protected | function | Calculates and returns dependencies of a specific plugin instance. | |
| ConfigurablePluginBase:: | public | function | Returns the label for use on the administration pages. Overrides ConfigurablePluginInterface:: | |
| ConfigurablePluginBase:: | protected | function | Wraps the module handler. | |
| ConfigurablePluginBase:: | public | function | Informs the plugin that some of its dependencies are being removed. Overrides ConfigurablePluginInterface:: | 5 | 
| ConfigurablePluginBase:: | protected | function | Wraps the theme handler. | |
| ConfigurablePluginBase:: | public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: | 2 | 
| 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 | 2 | |
| DependencyTrait:: | protected | property | The object's dependencies. | |
| DependencyTrait:: | protected | function | Adds multiple dependencies. | |
| DependencyTrait:: | protected | function | Adds a dependency. | |
| HideablePluginBase:: | public | function | Determines whether this plugin should be hidden in the UI. Overrides HideablePluginInterface:: | 1 | 
| LoggerTrait:: | protected | property | The logging channel to use. | |
| LoggerTrait:: | public | function | Retrieves the logger. | |
| LoggerTrait:: | protected | function | Logs an exception. | |
| LoggerTrait:: | public | function | Sets the logger. | |
| MessengerTrait:: | protected | property | The messenger. | 29 | 
| MessengerTrait:: | public | function | Gets the messenger. | 29 | 
| MessengerTrait:: | public | function | Sets the messenger. | |
| PluginBase:: | protected | property | Configuration information passed into the plugin. | 1 | 
| PluginBase:: | protected | property | The plugin implementation definition. | 1 | 
| PluginBase:: | protected | property | The plugin_id. | |
| PluginBase:: | constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
| PluginBase:: | public | function | Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: | |
| PluginBase:: | public | function | Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: | |
| PluginBase:: | public | function | Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: | 3 | 
| PluginBase:: | public | function | Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: | |
| PluginBase:: | public | function | Determines if the plugin is configurable. | |
| PluginDependencyTrait:: | protected | function | Calculates and adds dependencies of a specific plugin instance. Aliased as: traitCalculatePluginDependencies | 1 | 
| PluginDependencyTrait:: | protected | function | Calculates and returns dependencies of a specific plugin instance. Aliased as: traitGetPluginDependencies | |
| PluginDependencyTrait:: | protected | function | Wraps the module handler. Aliased as: traitModuleHandler | 1 | 
| PluginDependencyTrait:: | protected | function | Wraps the theme handler. Aliased as: traitThemeHandler | 1 | 
| PluginFormTrait:: | public | function | Form submission handler. Aliased as: traitSubmitConfigurationForm | 7 | 
| SolrConnectorInterface:: | constant | |||
| SolrConnectorInterface:: | constant | |||
| SolrConnectorInterface:: | constant | |||
| SolrConnectorInterface:: | constant | |||
| SolrConnectorPluginBase:: | protected | property | The event dispatcher. | |
| SolrConnectorPluginBase:: | protected | property | A connection to the Solr server. | |
| SolrConnectorPluginBase:: | public | function | Sets a new timeout for queries, but not for indexing or optimization. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | protected | function | Prepares the connection to the Solr server. | |
| SolrConnectorPluginBase:: | public | function | Sends a REST GET request to the Solr core and returns the result. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Sends a REST POST request to the Solr core and returns the result. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public static | function | Creates an instance of the plugin. Overrides ConfigurablePluginBase:: | |
| SolrConnectorPluginBase:: | protected | function | Create a Client. | |
| SolrConnectorPluginBase:: | public | function | Creates an endpoint. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Creates a result from a response. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | protected | function | Creates a CustomizeRequest object. | |
| SolrConnectorPluginBase:: | public | function | Executes an extract query. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Gets the content from an extract query result. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Gets information about the Solr Core. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Returns a link to the Solr core, if the necessary options are set. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | protected | function | Gets data from a Solr endpoint using a given handler. | |
| SolrConnectorPluginBase:: | public | function | Returns an endpoint. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Creates a new Solarium extract query. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Retrieves a config file or file list from the Solr server. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Get the finalize timeout. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Get the index timeout. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Gets the LuceneMatchVersion string. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Gets meta-data about the index. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Get the optimize timeout. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Returns a Solarium query helper object. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Gets the schema version number. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Gets the full schema version string the core is using. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Gets information about the Solr server. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Returns a link to the Solr server. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | protected | function | Returns a the Solr server URI. | |
| SolrConnectorPluginBase:: | public | function | Gets the current Solr branch name. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Gets the current Solr major version. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Gets the current Solr version. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Get the query timeout. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Creates a new Solarium update query. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | protected | function | Converts a HttpException in an easier to read SearchApiSolrException. | |
| SolrConnectorPluginBase:: | public | function | Optimizes the Solr index. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Pings the Solr server to tell whether it can be accessed. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | protected | function | Sends a REST request to the Solr server endpoint and returns the result. | |
| SolrConnectorPluginBase:: | public | function | Sends a REST GET request to the Solr server and returns the result. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Sends a REST POST request to the Solr server and returns the result. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | Sets the configuration for this plugin instance. Overrides ConfigurablePluginBase:: | |
| SolrConnectorPluginBase:: | public | function | Executes an update query and applies some tweaks. Overrides SolrConnectorInterface:: | |
| SolrConnectorPluginBase:: | public | function | ||
| SolrConnectorPluginBase:: | public | function | Form validation handler. Overrides PluginFormTrait:: | |
| SolrConnectorPluginBase:: | public | function | Overrides DependencySerializationTrait:: | |
| StandardSolrCloudConnector:: | public | function | Alter the newly assembled Solr configuration files. Overrides SolrConnectorPluginBase:: | |
| StandardSolrCloudConnector:: | public | function | Deletes all checkpoints for given index/site. Overrides SolrCloudConnectorInterface:: | |
| StandardSolrCloudConnector:: | public | function | Creates a new Solarium autocomplete query. Overrides SolrConnectorPluginBase:: | |
| StandardSolrCloudConnector:: | public | function | Returns the Solr collection endpoint used to store topic checkpoints. Overrides SolrCloudConnectorInterface:: | |
| StandardSolrCloudConnector:: | public | function | Returns the Solr collection name used to store topic checkpoints. Overrides SolrCloudConnectorInterface:: | |
| StandardSolrCloudConnector:: | public | function | Gets information about the Solr Collection. Overrides SolrCloudConnectorInterface:: | |
| StandardSolrCloudConnector:: | public | function | Returns a link to the Solr collection, if the necessary options are set. Overrides SolrCloudConnectorInterface:: | |
| StandardSolrCloudConnector:: | public | function | Returns the Solr collection name. Overrides SolrCloudConnectorInterface:: | |
| StandardSolrCloudConnector:: | public | function | Creates a new Solarium graph query. Overrides SolrCloudConnectorInterface:: | |
| StandardSolrCloudConnector:: | public | function | Creates a new Solarium more like this query. Overrides SolrConnectorPluginBase:: | |
| StandardSolrCloudConnector:: | public | function | Creates a new Solarium update query. Overrides SolrConnectorPluginBase:: | |
| StandardSolrCloudConnector:: | public | function | Creates a new Solarium suggester query. Overrides SolrConnectorPluginBase:: | |
| StandardSolrCloudConnector:: | public | function | Gets summary information about the Solr Core. Overrides SolrConnectorPluginBase:: | |
| StandardSolrCloudConnector:: | public | function | Creates a new Solarium stream query. Overrides SolrCloudConnectorInterface:: | |
| StandardSolrCloudConnector:: | public | function | Creates a new Solarium suggester query. Overrides SolrConnectorPluginBase:: | |
| StandardSolrCloudConnector:: | public | function | Creates a new Solarium terms query. Overrides SolrConnectorPluginBase:: | |
| StandardSolrCloudConnector:: | public | function | Executes a graph query. Overrides SolrCloudConnectorInterface:: | |
| StandardSolrCloudConnector:: | public | function | Returns TRUE for Cloud. Overrides SolrConnectorPluginBase:: | |
| StandardSolrCloudConnector:: | public | function | Pings the Solr collection to tell whether it can be accessed. Overrides SolrCloudConnectorInterface:: | |
| StandardSolrCloudConnector:: | public | function | Pings the Solr core to tell whether it can be accessed. Overrides SolrConnectorPluginBase:: | |
| StandardSolrCloudConnector:: | public | function | Reloads collection. | |
| StandardSolrCloudConnector:: | public | function | Reloads the Solr core. Overrides StandardSolrConnector:: | |
| StandardSolrCloudConnector:: | public | function | Temporarily set a different collection name for the connection. Overrides SolrCloudConnectorInterface:: | |
| StandardSolrCloudConnector:: | public | function | Executes a stream query. Overrides SolrCloudConnectorInterface:: | |
| 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. | 
