search_api.api.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611
  1. <?php
  2. /**
  3. * @file
  4. * Hooks provided by the Search API module.
  5. */
  6. /**
  7. * @addtogroup hooks
  8. * @{
  9. */
  10. /**
  11. * Defines one or more search service classes a module offers.
  12. *
  13. * Note: The ids should be valid PHP identifiers.
  14. *
  15. * @return array
  16. * An associative array of search service classes, keyed by a unique
  17. * identifier and containing associative arrays with the following keys:
  18. * - name: The service class' translated name.
  19. * - description: A translated string to be shown to administrators when
  20. * selecting a service class. Should contain all peculiarities of the
  21. * service class, like field type support, supported features (like facets),
  22. * the "direct" parse mode and other specific things to keep in mind. The
  23. * text can contain HTML.
  24. * - class: The service class, which has to implement the
  25. * SearchApiServiceInterface interface.
  26. *
  27. * @see hook_search_api_service_info_alter()
  28. */
  29. function hook_search_api_service_info() {
  30. $services['example_some'] = array(
  31. 'name' => t('Some Service'),
  32. 'description' => t('Service for some search engine.'),
  33. 'class' => 'SomeServiceClass',
  34. // Unknown keys can later be read by the object for additional information.
  35. 'init args' => array('foo' => 'Foo', 'bar' => 42),
  36. );
  37. $services['example_other'] = array(
  38. 'name' => t('Other Service'),
  39. 'description' => t('Service for another search engine.'),
  40. 'class' => 'OtherServiceClass',
  41. );
  42. return $services;
  43. }
  44. /**
  45. * Alter the Search API service info.
  46. *
  47. * Modules may implement this hook to alter the information that defines Search
  48. * API services. All properties that are available in
  49. * hook_search_api_service_info() can be altered here, with the addition of the
  50. * "module" key specifying the module that originally defined the service class.
  51. *
  52. * @param array $service_info
  53. * The Search API service info array, keyed by service id.
  54. *
  55. * @see hook_search_api_service_info()
  56. */
  57. function hook_search_api_service_info_alter(array &$service_info) {
  58. foreach ($service_info as $id => $info) {
  59. $service_info[$id]['class'] = 'MyProxyServiceClass';
  60. $service_info[$id]['example_original_class'] = $info['class'];
  61. }
  62. }
  63. /**
  64. * Define new types of items that can be searched.
  65. *
  66. * This hook allows modules to define their own item types, for which indexes
  67. * can then be created. (Note that the Search API natively provides support for
  68. * all entity types that specify property information, so they should not be
  69. * added here. You should therefore also not use an existing entity type as the
  70. * identifier of a new item type.)
  71. *
  72. * The main part of defining a new item type is implementing its data source
  73. * controller class, which is responsible for loading items, providing metadata
  74. * and tracking existing items. The module defining a certain item type is also
  75. * responsible for observing creations, updates and deletions of items of that
  76. * type and notifying the Search API of them by calling
  77. * search_api_track_item_insert(), search_api_track_item_change() and
  78. * search_api_track_item_delete(), as appropriate.
  79. * The only other restriction for item types is that they have to have a single
  80. * item ID field, with a scalar value. This is, e.g., used to track indexed
  81. * items.
  82. *
  83. * Note, however, that you can also define item types where some of these
  84. * conditions are not met, as long as you are aware that some functionality of
  85. * the Search API and related modules might then not be available for that type.
  86. *
  87. * @return array
  88. * An associative array keyed by item type identifier, and containing type
  89. * information arrays with at least the following keys:
  90. * - name: A human-readable name for the type.
  91. * - datasource controller: A class implementing the
  92. * SearchApiDataSourceControllerInterface interface which will be used as
  93. * the data source controller for this type.
  94. * - entity_type: (optional) If the type represents entities, the entity type.
  95. * This is used by SearchApiAbstractDataSourceController for determining the
  96. * entity type of items. Other datasource controllers might ignore this.
  97. * Other, datasource-specific settings might also be placed here. These should
  98. * be specified with the data source controller in question.
  99. *
  100. * @see hook_search_api_item_type_info_alter()
  101. */
  102. function hook_search_api_item_type_info() {
  103. // Copied from search_api_search_api_item_type_info().
  104. $types = array();
  105. foreach (entity_get_property_info() as $type => $property_info) {
  106. if ($info = entity_get_info($type)) {
  107. $types[$type] = array(
  108. 'name' => $info['label'],
  109. 'datasource controller' => 'SearchApiEntityDataSourceController',
  110. 'entity_type' => $type,
  111. );
  112. }
  113. }
  114. return $types;
  115. }
  116. /**
  117. * Alter the item type info.
  118. *
  119. * Modules may implement this hook to alter the information that defines an
  120. * item type. All properties that are available in
  121. * hook_search_api_item_type_info() can be altered here, with the addition of
  122. * the "module" key specifying the module that originally defined the type.
  123. *
  124. * @param array $infos
  125. * The item type info array, keyed by type identifier.
  126. *
  127. * @see hook_search_api_item_type_info()
  128. */
  129. function hook_search_api_item_type_info_alter(array &$infos) {
  130. // Adds a boolean value is_entity to all type options telling whether the item
  131. // type represents an entity type.
  132. foreach ($infos as $type => $info) {
  133. $info['is_entity'] = (bool) entity_get_info($type);
  134. }
  135. }
  136. /**
  137. * Define new data types for indexed properties.
  138. *
  139. * New data types will appear as new option for the „Type“ field on indexes'
  140. * „Fields“ tabs. Whether choosing a custom data type will have any effect
  141. * depends on the server on which the data is indexed.
  142. *
  143. * @return array
  144. * An array containing custom data type definitions, keyed by their type
  145. * identifier and containing the following keys:
  146. * - name: The human-readable name of the type.
  147. * - fallback: (optional) One of the default data types (the keys from
  148. * search_api_default_field_types()) which should be used as a fallback if
  149. * the server doesn't support this data type. Defaults to "string".
  150. * - conversion callback: (optional) If specified, a callback function for
  151. * converting raw values to the given type, if possible. For the contract
  152. * of such a callback, see example_data_type_conversion().
  153. *
  154. * @see hook_search_api_data_type_info_alter()
  155. * @see search_api_get_data_type_info()
  156. * @see example_data_type_conversion()
  157. */
  158. function hook_search_api_data_type_info() {
  159. return array(
  160. 'example_type' => array(
  161. 'name' => t('Example type'),
  162. // Could be omitted, as "string" is the default.
  163. 'fallback' => 'string',
  164. 'conversion callback' => 'example_data_type_conversion',
  165. ),
  166. );
  167. }
  168. /**
  169. * Alter the data type info.
  170. *
  171. * Modules may implement this hook to alter the information that defines a data
  172. * type, or to add/remove some entirely. All properties that are available in
  173. * hook_search_api_data_type_info() can be altered here.
  174. *
  175. * @param array $infos
  176. * The data type info array, keyed by type identifier.
  177. *
  178. * @see hook_search_api_data_type_info()
  179. */
  180. function hook_search_api_data_type_info_alter(array &$infos) {
  181. $infos['example_type']['name'] .= ' 2';
  182. }
  183. /**
  184. * Define available data alterations.
  185. *
  186. * Registers one or more callbacks that can be called at index time to add
  187. * additional data to the indexed items (e.g. comments or attachments to nodes),
  188. * alter the data in other forms or remove items from the array.
  189. *
  190. * Data-alter callbacks (which are called "Data alterations" in the UI) are
  191. * classes implementing the SearchApiAlterCallbackInterface interface.
  192. *
  193. * @see SearchApiAlterCallbackInterface
  194. *
  195. * @return array
  196. * An associative array keyed by the callback IDs and containing arrays with
  197. * the following keys:
  198. * - name: The name to display for this callback.
  199. * - description: A short description of what the callback does.
  200. * - class: The callback class.
  201. * - weight: (optional) Defines the order in which callbacks are displayed
  202. * (and, therefore, invoked) by default. Defaults to 0.
  203. */
  204. function hook_search_api_alter_callback_info() {
  205. $callbacks['example_random_alter'] = array(
  206. 'name' => t('Random alteration'),
  207. 'description' => t('Alters all passed item data completely randomly.'),
  208. 'class' => 'ExampleRandomAlter',
  209. 'weight' => 100,
  210. );
  211. $callbacks['example_add_comments'] = array(
  212. 'name' => t('Add comments'),
  213. 'description' => t('For nodes and similar entities, adds comments.'),
  214. 'class' => 'ExampleAddComments',
  215. );
  216. return $callbacks;
  217. }
  218. /**
  219. * Alter the available data alterations.
  220. *
  221. * @param array $callbacks
  222. * The callback information to be altered, keyed by callback IDs.
  223. *
  224. * @see hook_search_api_alter_callback_info()
  225. */
  226. function hook_search_api_alter_callback_info_alter(array &$callbacks) {
  227. if (!empty($callbacks['example_random_alter'])) {
  228. $callbacks['example_random_alter']['name'] = t('Even more random alteration');
  229. $callbacks['example_random_alter']['class'] = 'ExampleUltraRandomAlter';
  230. }
  231. }
  232. /**
  233. * Registers one or more processors. These are classes implementing the
  234. * SearchApiProcessorInterface interface which can be used at index and search
  235. * time to pre-process item data or the search query, and at search time to
  236. * post-process the returned search results.
  237. *
  238. * @see SearchApiProcessorInterface
  239. *
  240. * @return array
  241. * An associative array keyed by the processor id and containing arrays
  242. * with the following keys:
  243. * - name: The name to display for this processor.
  244. * - description: A short description of what the processor does at each
  245. * phase.
  246. * - class: The processor class, which has to implement the
  247. * SearchApiProcessorInterface interface.
  248. * - weight: (optional) Defines the order in which processors are displayed
  249. * (and, therefore, invoked) by default. Defaults to 0.
  250. */
  251. function hook_search_api_processor_info() {
  252. $callbacks['example_processor'] = array(
  253. 'name' => t('Example processor'),
  254. 'description' => t('Pre- and post-processes data in really cool ways.'),
  255. 'class' => 'ExampleSearchApiProcessor',
  256. 'weight' => -1,
  257. );
  258. $callbacks['example_processor_minimal'] = array(
  259. 'name' => t('Example processor 2'),
  260. 'description' => t('Processor with minimal description.'),
  261. 'class' => 'ExampleSearchApiProcessor2',
  262. );
  263. return $callbacks;
  264. }
  265. /**
  266. * Alter the available processors.
  267. *
  268. * @param array $processors
  269. * The processor information to be altered, keyed by processor IDs.
  270. *
  271. * @see hook_search_api_processor_info()
  272. */
  273. function hook_search_api_processor_info_alter(array &$processors) {
  274. if (!empty($processors['example_processor'])) {
  275. $processors['example_processor']['weight'] = -20;
  276. }
  277. }
  278. /**
  279. * Allows you to log or alter the items that are indexed.
  280. *
  281. * Please be aware that generally preventing the indexing of certain items is
  282. * deprecated. This is better done with data alterations, which can easily be
  283. * configured and only added to indexes where this behaviour is wanted.
  284. * If your module will use this hook to reject certain items from indexing,
  285. * please document this clearly to avoid confusion.
  286. *
  287. * @param array $items
  288. * The entities that will be indexed (before calling any data alterations).
  289. * @param SearchApiIndex $index
  290. * The search index on which items will be indexed.
  291. */
  292. function hook_search_api_index_items_alter(array &$items, SearchApiIndex $index) {
  293. foreach ($items as $id => $item) {
  294. if ($id % 5 == 0) {
  295. unset($items[$id]);
  296. }
  297. }
  298. example_store_indexed_entity_ids($index->item_type, array_keys($items));
  299. }
  300. /**
  301. * Allows modules to react after items were indexed.
  302. *
  303. * @param SearchApiIndex $index
  304. * The used index.
  305. * @param array $item_ids
  306. * An array containing the indexed items' IDs.
  307. */
  308. function hook_search_api_items_indexed(SearchApiIndex $index, array $item_ids) {
  309. if ($index->getEntityType() == 'node') {
  310. // Flush page cache of the search page.
  311. cache_clear_all(url('search'), 'cache_page');
  312. }
  313. }
  314. /**
  315. * Lets modules alter a search query before executing it.
  316. *
  317. * @param SearchApiQueryInterface $query
  318. * The search query being executed.
  319. */
  320. function hook_search_api_query_alter(SearchApiQueryInterface $query) {
  321. // Exclude entities with ID 0. (Assume the ID field is always indexed.)
  322. if ($query->getIndex()->getEntityType()) {
  323. $info = entity_get_info($query->getIndex()->getEntityType());
  324. $query->condition($info['entity keys']['id'], 0, '<>');
  325. }
  326. }
  327. /**
  328. * Alter the search results before they are returned.
  329. *
  330. * @param array $results
  331. * The results returned by the server, which may be altered. The data
  332. * structure is the same as returned by SearchApiQueryInterface::execute().
  333. * @param SearchApiQueryInterface $query
  334. * The search query that was executed.
  335. */
  336. function hook_search_api_results_alter(array &$results, SearchApiQueryInterface $query) {
  337. if ($query->getOption('search id') == 'search_api_views:my_search_view:page') {
  338. // Log the number of results.
  339. $vars = array(
  340. '@keys' => $query->getOriginalKeys(),
  341. '@num' => $results['result count'],
  342. );
  343. watchdog('my_module', 'Search view with query "@keys" had @num results.', $vars, WATCHDOG_DEBUG);
  344. }
  345. }
  346. /**
  347. * Act on search servers when they are loaded.
  348. *
  349. * @param array $servers
  350. * An array of loaded SearchApiServer objects.
  351. */
  352. function hook_search_api_server_load(array $servers) {
  353. foreach ($servers as $server) {
  354. db_insert('example_search_server_access')
  355. ->fields(array(
  356. 'server' => $server->machine_name,
  357. 'access_time' => REQUEST_TIME,
  358. ))
  359. ->execute();
  360. }
  361. }
  362. /**
  363. * A new search server was created.
  364. *
  365. * @param SearchApiServer $server
  366. * The new server.
  367. */
  368. function hook_search_api_server_insert(SearchApiServer $server) {
  369. db_insert('example_search_server')
  370. ->fields(array(
  371. 'server' => $server->machine_name,
  372. 'insert_time' => REQUEST_TIME,
  373. ))
  374. ->execute();
  375. }
  376. /**
  377. * A search server was edited, enabled or disabled.
  378. *
  379. * @param SearchApiServer $server
  380. * The edited server.
  381. */
  382. function hook_search_api_server_update(SearchApiServer $server) {
  383. if ($server->name != $server->original->name) {
  384. db_insert('example_search_server_name_update')
  385. ->fields(array(
  386. 'server' => $server->machine_name,
  387. 'update_time' => REQUEST_TIME,
  388. ))
  389. ->execute();
  390. }
  391. }
  392. /**
  393. * A search server was deleted.
  394. *
  395. * @param SearchApiServer $server
  396. * The deleted server.
  397. */
  398. function hook_search_api_server_delete(SearchApiServer $server) {
  399. db_insert('example_search_server_update')
  400. ->fields(array(
  401. 'server' => $server->machine_name,
  402. 'update_time' => REQUEST_TIME,
  403. ))
  404. ->execute();
  405. db_delete('example_search_server')
  406. ->condition('server', $server->machine_name)
  407. ->execute();
  408. }
  409. /**
  410. * Define default search servers.
  411. *
  412. * @return array
  413. * An array of default search servers, keyed by machine names.
  414. *
  415. * @see hook_default_search_api_server_alter()
  416. */
  417. function hook_default_search_api_server() {
  418. $defaults['main'] = entity_create('search_api_server', array(
  419. 'name' => 'Main server',
  420. 'machine_name' => 'main',// Must be same as the used array key.
  421. // Other properties ...
  422. ));
  423. return $defaults;
  424. }
  425. /**
  426. * Alter default search servers.
  427. *
  428. * @param array $defaults
  429. * An array of default search servers, keyed by machine names.
  430. *
  431. * @see hook_default_search_api_server()
  432. */
  433. function hook_default_search_api_server_alter(array &$defaults) {
  434. $defaults['main']->name = 'Customized main server';
  435. }
  436. /**
  437. * Act on search indexes when they are loaded.
  438. *
  439. * @param array $indexes
  440. * An array of loaded SearchApiIndex objects.
  441. */
  442. function hook_search_api_index_load(array $indexes) {
  443. foreach ($indexes as $index) {
  444. db_insert('example_search_index_access')
  445. ->fields(array(
  446. 'index' => $index->machine_name,
  447. 'access_time' => REQUEST_TIME,
  448. ))
  449. ->execute();
  450. }
  451. }
  452. /**
  453. * A new search index was created.
  454. *
  455. * @param SearchApiIndex $index
  456. * The new index.
  457. */
  458. function hook_search_api_index_insert(SearchApiIndex $index) {
  459. db_insert('example_search_index')
  460. ->fields(array(
  461. 'index' => $index->machine_name,
  462. 'insert_time' => REQUEST_TIME,
  463. ))
  464. ->execute();
  465. }
  466. /**
  467. * A search index was edited in any way.
  468. *
  469. * @param SearchApiIndex $index
  470. * The edited index.
  471. */
  472. function hook_search_api_index_update(SearchApiIndex $index) {
  473. if ($index->name != $index->original->name) {
  474. db_insert('example_search_index_name_update')
  475. ->fields(array(
  476. 'index' => $index->machine_name,
  477. 'update_time' => REQUEST_TIME,
  478. ))
  479. ->execute();
  480. }
  481. }
  482. /**
  483. * A search index was scheduled for reindexing
  484. *
  485. * @param SearchApiIndex $index
  486. * The edited index.
  487. * @param $clear
  488. * Boolean indicating whether the index was also cleared.
  489. */
  490. function hook_search_api_index_reindex(SearchApiIndex $index, $clear = FALSE) {
  491. db_insert('example_search_index_reindexed')
  492. ->fields(array(
  493. 'index' => $index->id,
  494. 'update_time' => REQUEST_TIME,
  495. ))
  496. ->execute();
  497. }
  498. /**
  499. * A search index was deleted.
  500. *
  501. * @param SearchApiIndex $index
  502. * The deleted index.
  503. */
  504. function hook_search_api_index_delete(SearchApiIndex $index) {
  505. db_insert('example_search_index_update')
  506. ->fields(array(
  507. 'index' => $index->machine_name,
  508. 'update_time' => REQUEST_TIME,
  509. ))
  510. ->execute();
  511. db_delete('example_search_index')
  512. ->condition('index', $index->machine_name)
  513. ->execute();
  514. }
  515. /**
  516. * Define default search indexes.
  517. *
  518. * @return array
  519. * An array of default search indexes, keyed by machine names.
  520. *
  521. * @see hook_default_search_api_index_alter()
  522. */
  523. function hook_default_search_api_index() {
  524. $defaults['main'] = entity_create('search_api_index', array(
  525. 'name' => 'Main index',
  526. 'machine_name' => 'main',// Must be same as the used array key.
  527. // Other properties ...
  528. ));
  529. return $defaults;
  530. }
  531. /**
  532. * Alter default search indexes.
  533. *
  534. * @param array $defaults
  535. * An array of default search indexes, keyed by machine names.
  536. *
  537. * @see hook_default_search_api_index()
  538. */
  539. function hook_default_search_api_index_alter(array &$defaults) {
  540. $defaults['main']->name = 'Customized main index';
  541. }
  542. /**
  543. * @} End of "addtogroup hooks".
  544. */
  545. /**
  546. * Convert a raw value from an entity to a custom data type.
  547. *
  548. * This function will be called for fields of the specific data type to convert
  549. * all individual values of the field to the correct format.
  550. *
  551. * @param mixed $value
  552. * The raw, single value, as extracted from an entity wrapper.
  553. * @param string $original_type
  554. * The original Entity API type of the value.
  555. * @param string $type
  556. * The custom data type to which the value should be converted. Can be ignored
  557. * if the callback is only used for a single data type.
  558. *
  559. * @return mixed|null
  560. * The converted value, if a conversion could be executed. NULL otherwise.
  561. *
  562. * @see hook_search_api_data_type_info()
  563. */
  564. function example_data_type_conversion($value, $original_type, $type) {
  565. if ($type === 'example_type') {
  566. // The example_type type apparently requires a rather complex data format.
  567. return array(
  568. 'value' => $value,
  569. 'original' => $original_type,
  570. );
  571. }
  572. // Someone used this callback for another, unknown type. Return NULL.
  573. // (Normally, you can just assume that the/a correct type is given.)
  574. return NULL;
  575. }