You are here

public function SearchExcludeNodeSearch::updateIndex in Search Exclude (Node) 8

Same name and namespace in other branches
  1. 2.x src/Plugin/Search/SearchExcludeNodeSearch.php \Drupal\search_exclude\Plugin\Search\SearchExcludeNodeSearch::updateIndex()
  2. 2.0.x src/Plugin/Search/SearchExcludeNodeSearch.php \Drupal\search_exclude\Plugin\Search\SearchExcludeNodeSearch::updateIndex()

Updates the search index for this plugin.

This method is called every cron run if the plugin has been set as an active search module on the Search settings page (admin/config/search/pages). It allows your module to add items to the built-in search index by calling the index() method on the search.index service class, or to add them to your module's own indexing mechanism.

When implementing this method, your module should index content items that were modified or added since the last run. There is a time limit for cron, so it is advisable to limit how many items you index per run using config('search.settings')->get('index.cron_limit') or with your own setting. And since the cron run could time out and abort in the middle of your run, you should update any needed internal bookkeeping on when items have last been indexed as you go rather than waiting to the end of indexing.

Overrides NodeSearch::updateIndex

File

src/Plugin/Search/SearchExcludeNodeSearch.php, line 24

Class

SearchExcludeNodeSearch
Search plugin to exclude node bundles from the Search module index.

Namespace

Drupal\search_exclude\Plugin\Search

Code

public function updateIndex() {

  // Interpret the cron limit setting as the maximum number of nodes to index
  // per cron run.
  $limit = (int) $this->searchSettings
    ->get('index.cron_limit');
  $query = db_select('node', 'n', array(
    'target' => 'replica',
  ));
  $query
    ->addField('n', 'nid');
  $query
    ->leftJoin('search_dataset', 'sd', 'sd.sid = n.nid AND sd.type = :type', array(
    ':type' => $this
      ->getPluginId(),
  ));
  $query
    ->addExpression('CASE MAX(sd.reindex) WHEN NULL THEN 0 ELSE 1 END', 'ex');
  $query
    ->addExpression('MAX(sd.reindex)', 'ex2');
  if (!empty($this->configuration['excluded_bundles'])) {
    $query
      ->condition('n.type', $this->configuration['excluded_bundles'], 'NOT IN');
  }
  $query
    ->condition($query
    ->orConditionGroup()
    ->where('sd.sid IS NULL')
    ->condition('sd.reindex', 0, '<>'));
  $query
    ->orderBy('ex', 'DESC')
    ->orderBy('ex2')
    ->orderBy('n.nid')
    ->groupBy('n.nid')
    ->range(0, $limit);
  $nids = $query
    ->execute()
    ->fetchCol();
  if (!$nids) {
    return;
  }
  $node_storage = $this->entityManager
    ->getStorage('node');
  $words = [];
  try {
    foreach ($node_storage
      ->loadMultiple($nids) as $node) {
      $words += $this
        ->indexNode($node);
    }
  } finally {
    if (isset($this->searchIndex)) {
      $this->searchIndex
        ->updateWordWeights($words);
    }
  }
}