123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- <?php
- function search_api_drush_command() {
- $items = array();
- $items['search-api-list'] = array(
- 'description' => 'List all search indexes.',
- 'examples' => array(
- 'drush searchapi-list' => dt('List all search indexes.'),
- 'drush sapi-l' => dt('Alias to list all search indexes.'),
- ),
- 'aliases' => array('sapi-l'),
- );
- $items['search-api-status'] = array(
- 'description' => 'Show the status of one or all search indexes.',
- 'examples' => array(
- 'drush searchapi-status' => dt('Show the status of all search indexes.'),
- 'drush sapi-s' => dt('Alias to show the status of all search indexes.'),
- 'drush sapi-s 1' => dt('Show the status of the search index with the ID !id.', array('!id' => 1)),
- 'drush sapi-s default_node_index' => dt('Show the status of the search index with the machine name !name.', array('!name' => 'default_node_index')),
- ),
- 'arguments' => array(
- 'index_id' => dt('The numeric ID or machine name of an index.'),
- ),
- 'aliases' => array('sapi-s'),
- );
- $items['search-api-index'] = array(
- 'description' => 'Index items for one or all enabled search_api indexes.',
- 'examples' => array(
- 'drush searchapi-index' => dt('Index items for all enabled indexes.'),
- 'drush sapi-i' => dt('Alias to index items for all enabled indexes.'),
- 'drush sapi-i 1' => dt('Index items for the index with the ID !id.', array('!id' => 1)),
- 'drush sapi-i default_node_index' => dt('Index items for the index with the machine name !name.', array('!name' => 'default_node_index')),
- 'drush sapi-i 1 100' => dt("Index a maximum number of !limit items (index's cron batch size items per batch run) for the index with the ID !id.", array('!limit' => 100, '!id' => 1)),
- 'drush sapi-i 1 100 10' => dt("Index a maximum number of !limit items (!batch_size items per batch run) for the index with the ID !id.", array('!limit' => 100, '!batch_size' => 10, '!id' => 1)),
- ),
- 'arguments' => array(
- 'index_id' => dt('The numeric ID or machine name of an index.'),
- 'limit' => dt("The number of items to index (index's cron batch size items per run). Set to 0 to index all items. Defaults to 0 (index all)."),
- 'batch_size' => dt("The number of items to index per batch run. Set to 0 to index all items at once. Defaults to the index's cron batch size."),
- ),
- 'aliases' => array('sapi-i'),
- );
- $items['search-api-reindex'] = array(
- 'description' => 'Force reindexing of one or all search indexes, without clearing existing index data.',
- 'examples' => array(
- 'drush searchapi-reindex' => dt('Schedule all search indexes for reindexing.'),
- 'drush sapi-r' => dt('Alias to schedule all search indexes for reindexing .'),
- 'drush sapi-r 1' => dt('Schedule the search index with the ID !id for re-indexing.', array('!id' => 1)),
- 'drush sapi-r default_node_index' => dt('Schedule the search index with the machine name !name for re-indexing.', array('!name' => 'default_node_index')),
- ),
- 'arguments' => array(
- 'index_id' => dt('The numeric ID or machine name of an index.'),
- ),
- 'aliases' => array('sapi-r'),
- );
- $items['search-api-clear'] = array(
- 'description' => 'Clear one or all search indexes and mark them for re-indexing.',
- 'examples' => array(
- 'drush searchapi-clear' => dt('Clear all search indexes.'),
- 'drush sapi-c' => dt('Alias to clear all search indexes.'),
- 'drush sapi-r 1' => dt('Clear the search index with the ID !id.', array('!id' => 1)),
- 'drush sapi-r default_node_index' => dt('Clear the search index with the machine name !name.', array('!name' => 'default_node_index')),
- ),
- 'arguments' => array(
- 'index_id' => dt('The numeric ID or machine name of an index.'),
- ),
- 'aliases' => array('sapi-c'),
- );
- return $items;
- }
- function drush_search_api_list() {
- if (search_api_drush_static(__FUNCTION__)) {
- return;
- }
-
- $indexes = search_api_index_load_multiple(FALSE);
- if (empty($indexes)) {
- drush_print(dt('There are no indexes present.'));
- return;
- }
- $rows[] = array(
- dt('Id'),
- dt('Name'),
- dt('Index'),
- dt('Server'),
- dt('Type'),
- dt('Status'),
- dt('Limit'),
- );
- foreach ($indexes as $index) {
- $type = search_api_get_item_type_info($index->item_type);
- $type = isset($type['name']) ? $type['name'] : $index->item_type;
- $server = $index->server();
- $server = $server ? $server->name : '(' . t('none') . ')';
- $row = array(
- $index->id,
- $index->name,
- $index->machine_name,
- $server,
- $type,
- $index->enabled ? t('enabled') : t('disabled'),
- $index->options['cron_limit'],
- );
- $rows[] = $row;
- }
- drush_print_table($rows);
- }
- function drush_search_api_status($index_id = NULL) {
- if (search_api_drush_static(__FUNCTION__)) {
- return;
- }
- $indexes = search_api_drush_get_index($index_id);
- if (empty($indexes)) {
- return;
- }
-
- $rows = array(array(
- dt('Id'),
- dt('Index'),
- dt('% Complete'),
- dt('Indexed'),
- dt('Total'),
- ));
- foreach ($indexes as $index) {
- $status = search_api_index_status($index);
- $complete = ($status['total'] > 0) ? 100 * round($status['indexed'] / $status['total'], 3) . '%' : '-';
- $row = array(
- $index->id,
- $index->name,
- $complete,
- $status['indexed'],
- $status['total'],
- );
- $rows[] = $row;
- }
- drush_print_table($rows);
- }
- function drush_search_api_index($index_id = NULL, $limit = NULL, $batch_size = NULL) {
- if (search_api_drush_static(__FUNCTION__)) {
- return;
- }
- $indexes = search_api_drush_get_index($index_id);
- if (empty($indexes)) {
- return;
- }
- foreach ($indexes as $index) {
-
- $datasource = $index->datasource();
- $index_status = $datasource->getIndexStatus($index);
- $remaining = $index_status['total'] - $index_status['indexed'];
-
- if (!isset($batch_size)) {
- $batch_size = empty($index->options['cron_limit']) ? SEARCH_API_DEFAULT_CRON_LIMIT : $index->options['cron_limit'];
- }
- elseif ($batch_size <= 0) {
- $batch_size = $remaining;
- }
-
- if (!isset($limit) || !is_int($limit += 0) || $limit <= 0) {
- $limit = $remaining;
- }
- drush_log(dt("Indexing a maximum number of !limit items (!batch_size items per batch run) for the index !index.", array('!index' => $index->name, '!limit' => $limit, '!batch_size' => $batch_size)), 'ok');
-
- if (!_search_api_batch_indexing_create($index, $batch_size, $limit, $remaining, TRUE)) {
- drush_log(dt("Couldn't create a batch, please check the batch size and limit parameters."), 'error');
- }
- else {
-
- drush_backend_batch_process();
- }
- }
- }
- function _search_api_drush_format_plural($count, $singular, $plural, array $args = array(), array $options = array()) {
- $args['@count'] = $count;
- if ($count == 1) {
- return dt($singular, $args, $options);
- }
-
- $index = (function_exists('locale_get_plural')) ? locale_get_plural($count, isset($options['langcode']) ? $options['langcode'] : NULL) : -1;
-
-
- if ($index < 0) {
- return dt($plural, $args, $options);
- }
- else {
- switch ($index) {
- case "0":
- return dt($singular, $args, $options);
- case "1":
- return dt($plural, $args, $options);
- default:
- unset($args['@count']);
- $args['@count[' . $index . ']'] = $count;
- return dt(strtr($plural, array('@count' => '@count[' . $index . ']')), $args, $options);
- }
- }
- }
- function drush_search_api_reindex($index_id = NULL) {
- if (search_api_drush_static(__FUNCTION__)) {
- return;
- }
- $indexes = search_api_drush_get_index($index_id);
- if (empty($indexes)) {
- return;
- }
-
- foreach ($indexes as $index) {
- $index->reindex();
- drush_log(dt('!index was successfully marked for re-indexing.', array('!index' => $index->machine_name)), 'ok');
- }
- }
- function drush_search_api_clear($index_id = NULL) {
- if (search_api_drush_static(__FUNCTION__)) {
- return;
- }
- $indexes = search_api_drush_get_index($index_id);
- if (empty($indexes)) {
- return;
- }
-
- foreach ($indexes as $index) {
- $index->clear();
- drush_log(dt('!index was successfully cleared.', array('!index' => $index->machine_name)), 'ok');
- }
- }
- function search_api_drush_get_index($index_id = NULL) {
- $ids = isset($index_id) ? array($index_id) : FALSE;
- $indexes = search_api_index_load_multiple($ids);
- if (empty($indexes)) {
- drush_set_error(dt('Invalid index_id or no indexes present. Listing all indexes:'));
- drush_print();
- drush_search_api_list();
- }
- return $indexes;
- }
- function search_api_drush_static($function) {
- static $index = array();
- if (isset($index[$function])) {
- return TRUE;
- }
- $index[$function] = TRUE;
- }
|