123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611 |
- <?php
- /**
- * @file
- * Hooks provided by the Search API module.
- */
- /**
- * @addtogroup hooks
- * @{
- */
- /**
- * Defines one or more search service classes a module offers.
- *
- * Note: The ids should be valid PHP identifiers.
- *
- * @return array
- * An associative array of search service classes, keyed by a unique
- * identifier and containing associative arrays with the following keys:
- * - name: The service class' translated name.
- * - description: A translated string to be shown to administrators when
- * selecting a service class. Should contain all peculiarities of the
- * service class, like field type support, supported features (like facets),
- * the "direct" parse mode and other specific things to keep in mind. The
- * text can contain HTML.
- * - class: The service class, which has to implement the
- * SearchApiServiceInterface interface.
- *
- * @see hook_search_api_service_info_alter()
- */
- function hook_search_api_service_info() {
- $services['example_some'] = array(
- 'name' => t('Some Service'),
- 'description' => t('Service for some search engine.'),
- 'class' => 'SomeServiceClass',
- // Unknown keys can later be read by the object for additional information.
- 'init args' => array('foo' => 'Foo', 'bar' => 42),
- );
- $services['example_other'] = array(
- 'name' => t('Other Service'),
- 'description' => t('Service for another search engine.'),
- 'class' => 'OtherServiceClass',
- );
- return $services;
- }
- /**
- * Alter the Search API service info.
- *
- * Modules may implement this hook to alter the information that defines Search
- * API services. All properties that are available in
- * hook_search_api_service_info() can be altered here, with the addition of the
- * "module" key specifying the module that originally defined the service class.
- *
- * @param array $service_info
- * The Search API service info array, keyed by service id.
- *
- * @see hook_search_api_service_info()
- */
- function hook_search_api_service_info_alter(array &$service_info) {
- foreach ($service_info as $id => $info) {
- $service_info[$id]['class'] = 'MyProxyServiceClass';
- $service_info[$id]['example_original_class'] = $info['class'];
- }
- }
- /**
- * Define new types of items that can be searched.
- *
- * This hook allows modules to define their own item types, for which indexes
- * can then be created. (Note that the Search API natively provides support for
- * all entity types that specify property information, so they should not be
- * added here. You should therefore also not use an existing entity type as the
- * identifier of a new item type.)
- *
- * The main part of defining a new item type is implementing its data source
- * controller class, which is responsible for loading items, providing metadata
- * and tracking existing items. The module defining a certain item type is also
- * responsible for observing creations, updates and deletions of items of that
- * type and notifying the Search API of them by calling
- * search_api_track_item_insert(), search_api_track_item_change() and
- * search_api_track_item_delete(), as appropriate.
- * The only other restriction for item types is that they have to have a single
- * item ID field, with a scalar value. This is, e.g., used to track indexed
- * items.
- *
- * Note, however, that you can also define item types where some of these
- * conditions are not met, as long as you are aware that some functionality of
- * the Search API and related modules might then not be available for that type.
- *
- * @return array
- * An associative array keyed by item type identifier, and containing type
- * information arrays with at least the following keys:
- * - name: A human-readable name for the type.
- * - datasource controller: A class implementing the
- * SearchApiDataSourceControllerInterface interface which will be used as
- * the data source controller for this type.
- * - entity_type: (optional) If the type represents entities, the entity type.
- * This is used by SearchApiAbstractDataSourceController for determining the
- * entity type of items. Other datasource controllers might ignore this.
- * Other, datasource-specific settings might also be placed here. These should
- * be specified with the data source controller in question.
- *
- * @see hook_search_api_item_type_info_alter()
- */
- function hook_search_api_item_type_info() {
- // Copied from search_api_search_api_item_type_info().
- $types = array();
- foreach (entity_get_property_info() as $type => $property_info) {
- if ($info = entity_get_info($type)) {
- $types[$type] = array(
- 'name' => $info['label'],
- 'datasource controller' => 'SearchApiEntityDataSourceController',
- 'entity_type' => $type,
- );
- }
- }
- return $types;
- }
- /**
- * Alter the item type info.
- *
- * Modules may implement this hook to alter the information that defines an
- * item type. All properties that are available in
- * hook_search_api_item_type_info() can be altered here, with the addition of
- * the "module" key specifying the module that originally defined the type.
- *
- * @param array $infos
- * The item type info array, keyed by type identifier.
- *
- * @see hook_search_api_item_type_info()
- */
- function hook_search_api_item_type_info_alter(array &$infos) {
- // Adds a boolean value is_entity to all type options telling whether the item
- // type represents an entity type.
- foreach ($infos as $type => $info) {
- $info['is_entity'] = (bool) entity_get_info($type);
- }
- }
- /**
- * Define new data types for indexed properties.
- *
- * New data types will appear as new option for the „Type“ field on indexes'
- * „Fields“ tabs. Whether choosing a custom data type will have any effect
- * depends on the server on which the data is indexed.
- *
- * @return array
- * An array containing custom data type definitions, keyed by their type
- * identifier and containing the following keys:
- * - name: The human-readable name of the type.
- * - fallback: (optional) One of the default data types (the keys from
- * search_api_default_field_types()) which should be used as a fallback if
- * the server doesn't support this data type. Defaults to "string".
- * - conversion callback: (optional) If specified, a callback function for
- * converting raw values to the given type, if possible. For the contract
- * of such a callback, see example_data_type_conversion().
- *
- * @see hook_search_api_data_type_info_alter()
- * @see search_api_get_data_type_info()
- * @see example_data_type_conversion()
- */
- function hook_search_api_data_type_info() {
- return array(
- 'example_type' => array(
- 'name' => t('Example type'),
- // Could be omitted, as "string" is the default.
- 'fallback' => 'string',
- 'conversion callback' => 'example_data_type_conversion',
- ),
- );
- }
- /**
- * Alter the data type info.
- *
- * Modules may implement this hook to alter the information that defines a data
- * type, or to add/remove some entirely. All properties that are available in
- * hook_search_api_data_type_info() can be altered here.
- *
- * @param array $infos
- * The data type info array, keyed by type identifier.
- *
- * @see hook_search_api_data_type_info()
- */
- function hook_search_api_data_type_info_alter(array &$infos) {
- $infos['example_type']['name'] .= ' 2';
- }
- /**
- * Define available data alterations.
- *
- * Registers one or more callbacks that can be called at index time to add
- * additional data to the indexed items (e.g. comments or attachments to nodes),
- * alter the data in other forms or remove items from the array.
- *
- * Data-alter callbacks (which are called "Data alterations" in the UI) are
- * classes implementing the SearchApiAlterCallbackInterface interface.
- *
- * @see SearchApiAlterCallbackInterface
- *
- * @return array
- * An associative array keyed by the callback IDs and containing arrays with
- * the following keys:
- * - name: The name to display for this callback.
- * - description: A short description of what the callback does.
- * - class: The callback class.
- * - weight: (optional) Defines the order in which callbacks are displayed
- * (and, therefore, invoked) by default. Defaults to 0.
- */
- function hook_search_api_alter_callback_info() {
- $callbacks['example_random_alter'] = array(
- 'name' => t('Random alteration'),
- 'description' => t('Alters all passed item data completely randomly.'),
- 'class' => 'ExampleRandomAlter',
- 'weight' => 100,
- );
- $callbacks['example_add_comments'] = array(
- 'name' => t('Add comments'),
- 'description' => t('For nodes and similar entities, adds comments.'),
- 'class' => 'ExampleAddComments',
- );
- return $callbacks;
- }
- /**
- * Alter the available data alterations.
- *
- * @param array $callbacks
- * The callback information to be altered, keyed by callback IDs.
- *
- * @see hook_search_api_alter_callback_info()
- */
- function hook_search_api_alter_callback_info_alter(array &$callbacks) {
- if (!empty($callbacks['example_random_alter'])) {
- $callbacks['example_random_alter']['name'] = t('Even more random alteration');
- $callbacks['example_random_alter']['class'] = 'ExampleUltraRandomAlter';
- }
- }
- /**
- * Registers one or more processors. These are classes implementing the
- * SearchApiProcessorInterface interface which can be used at index and search
- * time to pre-process item data or the search query, and at search time to
- * post-process the returned search results.
- *
- * @see SearchApiProcessorInterface
- *
- * @return array
- * An associative array keyed by the processor id and containing arrays
- * with the following keys:
- * - name: The name to display for this processor.
- * - description: A short description of what the processor does at each
- * phase.
- * - class: The processor class, which has to implement the
- * SearchApiProcessorInterface interface.
- * - weight: (optional) Defines the order in which processors are displayed
- * (and, therefore, invoked) by default. Defaults to 0.
- */
- function hook_search_api_processor_info() {
- $callbacks['example_processor'] = array(
- 'name' => t('Example processor'),
- 'description' => t('Pre- and post-processes data in really cool ways.'),
- 'class' => 'ExampleSearchApiProcessor',
- 'weight' => -1,
- );
- $callbacks['example_processor_minimal'] = array(
- 'name' => t('Example processor 2'),
- 'description' => t('Processor with minimal description.'),
- 'class' => 'ExampleSearchApiProcessor2',
- );
- return $callbacks;
- }
- /**
- * Alter the available processors.
- *
- * @param array $processors
- * The processor information to be altered, keyed by processor IDs.
- *
- * @see hook_search_api_processor_info()
- */
- function hook_search_api_processor_info_alter(array &$processors) {
- if (!empty($processors['example_processor'])) {
- $processors['example_processor']['weight'] = -20;
- }
- }
- /**
- * Allows you to log or alter the items that are indexed.
- *
- * Please be aware that generally preventing the indexing of certain items is
- * deprecated. This is better done with data alterations, which can easily be
- * configured and only added to indexes where this behaviour is wanted.
- * If your module will use this hook to reject certain items from indexing,
- * please document this clearly to avoid confusion.
- *
- * @param array $items
- * The entities that will be indexed (before calling any data alterations).
- * @param SearchApiIndex $index
- * The search index on which items will be indexed.
- */
- function hook_search_api_index_items_alter(array &$items, SearchApiIndex $index) {
- foreach ($items as $id => $item) {
- if ($id % 5 == 0) {
- unset($items[$id]);
- }
- }
- example_store_indexed_entity_ids($index->item_type, array_keys($items));
- }
- /**
- * Allows modules to react after items were indexed.
- *
- * @param SearchApiIndex $index
- * The used index.
- * @param array $item_ids
- * An array containing the indexed items' IDs.
- */
- function hook_search_api_items_indexed(SearchApiIndex $index, array $item_ids) {
- if ($index->getEntityType() == 'node') {
- // Flush page cache of the search page.
- cache_clear_all(url('search'), 'cache_page');
- }
- }
- /**
- * Lets modules alter a search query before executing it.
- *
- * @param SearchApiQueryInterface $query
- * The search query being executed.
- */
- function hook_search_api_query_alter(SearchApiQueryInterface $query) {
- // Exclude entities with ID 0. (Assume the ID field is always indexed.)
- if ($query->getIndex()->getEntityType()) {
- $info = entity_get_info($query->getIndex()->getEntityType());
- $query->condition($info['entity keys']['id'], 0, '<>');
- }
- }
- /**
- * Alter the search results before they are returned.
- *
- * @param array $results
- * The results returned by the server, which may be altered. The data
- * structure is the same as returned by SearchApiQueryInterface::execute().
- * @param SearchApiQueryInterface $query
- * The search query that was executed.
- */
- function hook_search_api_results_alter(array &$results, SearchApiQueryInterface $query) {
- if ($query->getOption('search id') == 'search_api_views:my_search_view:page') {
- // Log the number of results.
- $vars = array(
- '@keys' => $query->getOriginalKeys(),
- '@num' => $results['result count'],
- );
- watchdog('my_module', 'Search view with query "@keys" had @num results.', $vars, WATCHDOG_DEBUG);
- }
- }
- /**
- * Act on search servers when they are loaded.
- *
- * @param array $servers
- * An array of loaded SearchApiServer objects.
- */
- function hook_search_api_server_load(array $servers) {
- foreach ($servers as $server) {
- db_insert('example_search_server_access')
- ->fields(array(
- 'server' => $server->machine_name,
- 'access_time' => REQUEST_TIME,
- ))
- ->execute();
- }
- }
- /**
- * A new search server was created.
- *
- * @param SearchApiServer $server
- * The new server.
- */
- function hook_search_api_server_insert(SearchApiServer $server) {
- db_insert('example_search_server')
- ->fields(array(
- 'server' => $server->machine_name,
- 'insert_time' => REQUEST_TIME,
- ))
- ->execute();
- }
- /**
- * A search server was edited, enabled or disabled.
- *
- * @param SearchApiServer $server
- * The edited server.
- */
- function hook_search_api_server_update(SearchApiServer $server) {
- if ($server->name != $server->original->name) {
- db_insert('example_search_server_name_update')
- ->fields(array(
- 'server' => $server->machine_name,
- 'update_time' => REQUEST_TIME,
- ))
- ->execute();
- }
- }
- /**
- * A search server was deleted.
- *
- * @param SearchApiServer $server
- * The deleted server.
- */
- function hook_search_api_server_delete(SearchApiServer $server) {
- db_insert('example_search_server_update')
- ->fields(array(
- 'server' => $server->machine_name,
- 'update_time' => REQUEST_TIME,
- ))
- ->execute();
- db_delete('example_search_server')
- ->condition('server', $server->machine_name)
- ->execute();
- }
- /**
- * Define default search servers.
- *
- * @return array
- * An array of default search servers, keyed by machine names.
- *
- * @see hook_default_search_api_server_alter()
- */
- function hook_default_search_api_server() {
- $defaults['main'] = entity_create('search_api_server', array(
- 'name' => 'Main server',
- 'machine_name' => 'main',// Must be same as the used array key.
- // Other properties ...
- ));
- return $defaults;
- }
- /**
- * Alter default search servers.
- *
- * @param array $defaults
- * An array of default search servers, keyed by machine names.
- *
- * @see hook_default_search_api_server()
- */
- function hook_default_search_api_server_alter(array &$defaults) {
- $defaults['main']->name = 'Customized main server';
- }
- /**
- * Act on search indexes when they are loaded.
- *
- * @param array $indexes
- * An array of loaded SearchApiIndex objects.
- */
- function hook_search_api_index_load(array $indexes) {
- foreach ($indexes as $index) {
- db_insert('example_search_index_access')
- ->fields(array(
- 'index' => $index->machine_name,
- 'access_time' => REQUEST_TIME,
- ))
- ->execute();
- }
- }
- /**
- * A new search index was created.
- *
- * @param SearchApiIndex $index
- * The new index.
- */
- function hook_search_api_index_insert(SearchApiIndex $index) {
- db_insert('example_search_index')
- ->fields(array(
- 'index' => $index->machine_name,
- 'insert_time' => REQUEST_TIME,
- ))
- ->execute();
- }
- /**
- * A search index was edited in any way.
- *
- * @param SearchApiIndex $index
- * The edited index.
- */
- function hook_search_api_index_update(SearchApiIndex $index) {
- if ($index->name != $index->original->name) {
- db_insert('example_search_index_name_update')
- ->fields(array(
- 'index' => $index->machine_name,
- 'update_time' => REQUEST_TIME,
- ))
- ->execute();
- }
- }
- /**
- * A search index was scheduled for reindexing
- *
- * @param SearchApiIndex $index
- * The edited index.
- * @param $clear
- * Boolean indicating whether the index was also cleared.
- */
- function hook_search_api_index_reindex(SearchApiIndex $index, $clear = FALSE) {
- db_insert('example_search_index_reindexed')
- ->fields(array(
- 'index' => $index->id,
- 'update_time' => REQUEST_TIME,
- ))
- ->execute();
- }
- /**
- * A search index was deleted.
- *
- * @param SearchApiIndex $index
- * The deleted index.
- */
- function hook_search_api_index_delete(SearchApiIndex $index) {
- db_insert('example_search_index_update')
- ->fields(array(
- 'index' => $index->machine_name,
- 'update_time' => REQUEST_TIME,
- ))
- ->execute();
- db_delete('example_search_index')
- ->condition('index', $index->machine_name)
- ->execute();
- }
- /**
- * Define default search indexes.
- *
- * @return array
- * An array of default search indexes, keyed by machine names.
- *
- * @see hook_default_search_api_index_alter()
- */
- function hook_default_search_api_index() {
- $defaults['main'] = entity_create('search_api_index', array(
- 'name' => 'Main index',
- 'machine_name' => 'main',// Must be same as the used array key.
- // Other properties ...
- ));
- return $defaults;
- }
- /**
- * Alter default search indexes.
- *
- * @param array $defaults
- * An array of default search indexes, keyed by machine names.
- *
- * @see hook_default_search_api_index()
- */
- function hook_default_search_api_index_alter(array &$defaults) {
- $defaults['main']->name = 'Customized main index';
- }
- /**
- * @} End of "addtogroup hooks".
- */
- /**
- * Convert a raw value from an entity to a custom data type.
- *
- * This function will be called for fields of the specific data type to convert
- * all individual values of the field to the correct format.
- *
- * @param mixed $value
- * The raw, single value, as extracted from an entity wrapper.
- * @param string $original_type
- * The original Entity API type of the value.
- * @param string $type
- * The custom data type to which the value should be converted. Can be ignored
- * if the callback is only used for a single data type.
- *
- * @return mixed|null
- * The converted value, if a conversion could be executed. NULL otherwise.
- *
- * @see hook_search_api_data_type_info()
- */
- function example_data_type_conversion($value, $original_type, $type) {
- if ($type === 'example_type') {
- // The example_type type apparently requires a rather complex data format.
- return array(
- 'value' => $value,
- 'original' => $original_type,
- );
- }
- // Someone used this callback for another, unknown type. Return NULL.
- // (Normally, you can just assume that the/a correct type is given.)
- return NULL;
- }
|