0")); return array('remaining' => $remaining, 'total' => $total); case 'admin': $form = array(); // Output form for defining rank factor weights. $form['content_ranking'] = array( '#type' => 'fieldset', '#title' => t('Content ranking'), ); $form['content_ranking']['#theme'] = 'node_search_admin'; $form['content_ranking']['info'] = array( '#value' => '' . t('The following numbers control which properties the content search should favor when ordering the results. Higher numbers mean more influence, zero means the property is ignored. Changing these numbers does not require the search index to be rebuilt. Changes take effect immediately.') . '' ); // Note: reversed to reflect that higher number = higher ranking. $options = drupal_map_assoc(range(0, 10)); foreach (module_invoke_all('ranking') as $var => $values) { $form['content_ranking']['factors']['node_rank_' . $var] = array( '#title' => $values['title'], '#type' => 'select', '#options' => $options, '#default_value' => variable_get('node_rank_' . $var, 0), ); } return $form; case 'search': // Build matching conditions list($join1, $where1) = _db_rewrite_sql(); $arguments1 = array(); $conditions1 = 'n.status = 1'; if ($type = search_query_extract($keys, 'type')) { $types = array(); foreach (explode(',', $type) as $t) { $types[] = "n.type = '%s'"; $arguments1[] = $t; } $conditions1 .= ' AND (' . implode(' OR ', $types) . ')'; $keys = search_query_insert($keys, 'type'); } if ($category = search_query_extract($keys, 'category')) { $categories = array(); foreach (explode(',', $category) as $c) { $categories[] = "tn.tid = %d"; $arguments1[] = $c; } $conditions1 .= ' AND (' . implode(' OR ', $categories) . ')'; $join1 .= ' INNER JOIN {taxonomy_term_node} tn ON n.vid = tn.vid'; $keys = search_query_insert($keys, 'category'); } if ($languages = search_query_extract($keys, 'language')) { $categories = array(); foreach (explode(',', $languages) as $l) { $categories[] = "n.language = '%s'"; $arguments1[] = $l; } $conditions1 .= ' AND (' . implode(' OR ', $categories) . ')'; $keys = search_query_insert($keys, 'language'); } // Get the ranking expressions. $rankings = _node_rankings(); // When all search factors are disabled (ie they have a weight of zero), // The default score is based only on keyword relevance. if ($rankings['total'] == 0) { $total = 1; $arguments2 = array(); $join2 = ''; $select2 = 'i.relevance AS score'; } else { $total = $rankings['total']; $arguments2 = $rankings['arguments']; $join2 = implode(' ', $rankings['join']); $select2 = '(' . implode(' + ', $rankings['score']) . ') AS score'; } // Do search. $find = do_search($keys, 'node', 'INNER JOIN {node} n ON n.nid = i.sid ' . $join1, $conditions1 . (empty($where1) ? '' : ' AND ' . $where1), $arguments1, $select2, $join2, $arguments2); // Load results. $results = array(); foreach ($find as $item) { // Build the node body. $node = node_load($item->sid); $node->build_mode = NODE_BUILD_SEARCH_RESULT; $node = node_build_content($node, FALSE, FALSE); $node->body = drupal_render($node->content); // Fetch comments for snippet. $node->body .= module_invoke('comment', 'node', $node, 'update_index'); // Fetch terms for snippet. $node->body .= module_invoke('taxonomy', 'node', $node, 'update_index'); $extra = node_invoke_node($node, 'search_result'); $results[] = array( 'link' => url('node/' . $item->sid, array('absolute' => TRUE)), 'type' => check_plain(node_get_types('name', $node)), 'title' => $node->title, 'user' => theme('username', $node), 'date' => $node->changed, 'node' => $node, 'extra' => $extra, 'score' => $total ? ($item->score / $total) : 0, 'snippet' => search_excerpt($keys, $node->body), ); } return $results; } } /** * Preprocess text for the search index. * * This hook is called both for text added to the search index, as well as * the keywords users have submitted for searching. * * This is required for example to allow Japanese or Chinese text to be * searched. As these languages do not use spaces, it needs to be split into * separate words before it can be indexed. There are various external * libraries for this. * * @param $text * The text to split. This is a single piece of plain-text that was * extracted from between two HTML tags. Will not contain any HTML entities. * @return * The text after processing. */ function hook_search_preprocess($text) { // Do processing on $text return $text; } /** * Update Drupal's full-text index for this module. * * Modules can implement this hook if they want to use the full-text indexing * mechanism in Drupal. * * This hook is called every cron run if search.module is enabled. A module * should check which of its items were modified or added since the last * run. It is advised that you implement a throttling mechanism which indexes * at most 'search_cron_limit' items per run (see example below). * * You should also be aware that indexing may take too long and be aborted if * there is a PHP time limit. That's why you should update your internal * bookkeeping multiple times per run, preferably after every item that * is indexed. * * Per item that needs to be indexed, you should call search_index() with * its content as a single HTML string. The search indexer will analyse the * HTML and use it to assign higher weights to important words (such as * titles). It will also check for links that point to nodes, and use them to * boost the ranking of the target nodes. * * @ingroup search */ function hook_update_index() { $last = variable_get('node_cron_last', 0); $limit = (int)variable_get('search_cron_limit', 100); $result = db_query_range('SELECT n.nid, c.last_comment_timestamp FROM {node} n LEFT JOIN {node_comment_statistics} c ON n.nid = c.nid WHERE n.status = 1 AND n.moderate = 0 AND (n.created > %d OR n.changed > %d OR c.last_comment_timestamp > %d) ORDER BY GREATEST(n.created, n.changed, c.last_comment_timestamp) ASC', $last, $last, $last, 0, $limit); while ($node = db_fetch_object($result)) { $last_comment = $node->last_comment_timestamp; $node = node_load(array('nid' => $node->nid)); // We update this variable per node in case cron times out, or if the node // cannot be indexed (PHP nodes which call drupal_goto, for example). // In rare cases this can mean a node is only partially indexed, but the // chances of this happening are very small. variable_set('node_cron_last', max($last_comment, $node->changed, $node->created)); // Get node output (filtered and with module-specific fields). if (node_hook($node, 'view')) { node_invoke($node, 'view', false, false); } else { $node = node_prepare($node, false); } // Allow modules to change $node->body before viewing. node_invoke_node($node, 'view', false, false); $text = '