'textfield',
'#title' => t('Solr host name'),
'#default_value' => variable_get('apachesolr_host', 'localhost'),
'#description' => t('Host name of your Solr server, e.g. localhost
or example.com
.'),
'#required' => TRUE,
);
$form['apachesolr_port'] = array(
'#type' => 'textfield',
'#title' => t('Solr port'),
'#default_value' => variable_get('apachesolr_port', '8983'),
'#description' => t('Port on which the Solr server listens. The Jetty example server is 8983, while Tomcat is 8080 by default.'),
'#required' => TRUE,
);
$form['apachesolr_path'] = array(
'#type' => 'textfield',
'#title' => t('Solr path'),
'#default_value' => variable_get('apachesolr_path', '/solr'),
'#description' => t('Path that identifies the Solr request handler to be used.'),
);
$numbers = drupal_map_assoc(array(1, 5, 10, 20, 50, 100, 200));
$default_cron_limit = variable_get('apachesolr_cron_limit', 50);
// apachesolr_cron_limit may be overridden in settings.php. If its current
// value is not among the default set of options, add it.
if (!isset($numbers[$default_cron_limit])) {
$numbers[$default_cron_limit] = $default_cron_limit;
}
$form['apachesolr_cron_limit'] = array(
'#type' => 'select',
'#title' => t('Number of items to index per cron run'),
'#default_value' => $default_cron_limit,
'#options' => $numbers,
'#description' => t('The maximum number of items indexed in each pass of a cron maintenance task. If necessary, reduce the number of items to prevent timeouts and memory errors while indexing.', array('@cron' => url('admin/reports/status')))
);
$options = drupal_map_assoc(array(5, 10, 15, 20, 25, 30, 40, 50, 60, 70, 80, 90, 100));
$form['apachesolr_rows'] = array(
'#type' => 'select',
'#title' => t('Results per page'),
'#default_value' => variable_get('apachesolr_rows', 10),
'#options' => $options,
'#description' => t('The number of results that will be shown per page.'),
);
$form['apachesolr_facetstyle'] = array(
'#type' => 'radios',
'#title' => t('Style of facet links'),
'#default_value' => variable_get('apachesolr_facetstyle', 'checkboxes'),
'#options' => array('links' => t('Links only'), 'checkboxes' => t('Links with checkboxes')),
);
$form['apachesolr_logging'] = array(
'#type' => 'checkbox',
'#title' => t('Log search requests'),
'#default_value' => variable_get('apachesolr_logging', TRUE),
);
$form['apachesolr_failure'] = array(
'#type' => 'select',
'#title' => t('On failure'),
'#options' => array('show_error' => t('Show error message'),
'show_drupal_results' => t('Show core Drupal results'),
'show_no_results' => t('Show no results')
),
'#default_value' => variable_get('apachesolr_failure', 'show_error'),
'#description' => t('What to display if Apache Solr search is not available.'),
);
// Add a link to add more mlt blocks.
$form['mlt_link'] = array(
'#type' => 'item',
'#value' => l(t('Add a new content recommendation block'), 'admin/settings/apachesolr/mlt/add_block'),
'#description' => format_plural(count(apachesolr_mlt_list_blocks()), 'You currently have 1 block.', 'You currenly have @count blocks.'),
);
$form['advanced'] = array(
'#type' => 'fieldset',
'#title' => t('Advanced configuration'),
'#collapsed' => TRUE,
'#collapsible' => TRUE,
);
$form['advanced']['apachesolr_set_nodeapi_messages'] = array(
'#type' => 'radios',
'#title' => t('Extra help messages for administrators'),
'#default_value' => variable_get('apachesolr_set_nodeapi_messages', 1),
'#options' => array(0 => t('Disabled'), 1 => t('Enabled')),
);
$form['advanced']['apachesolr_read_only'] = array(
'#type' => 'radios',
'#title' => t('Index write access'),
'#default_value' => variable_get('apachesolr_read_only', APACHESOLR_READ_WRITE),
'#options' => array(APACHESOLR_READ_WRITE => t('Read and write (normal)'), APACHESOLR_READ_ONLY => t('Read only')),
'#description' => t('Read only stops this site from sending updates to your search index. Useful for development sites.'),
);
return system_settings_form($form);
}
/**
* Validation function for the apachesolr_settings form.
*
* @see apachesolr_settings()
*/
function apachesolr_settings_validate($form, &$form_state) {
if (isset($form['apachesolr_port'])) {
$port = $form_state['values']['apachesolr_port'];
// TODO: Port range should be 0-65535, but 0 crashes apachesolr
if (!ctype_digit($port) || $port < 1 || $port > 65535) {
form_set_error('apachesolr_port', t('The port has to be an integer between 1 and 65535.'));
}
}
}
/**
* Gets information about the fields already in solr index.
*/
function apachesolr_index_page() {
$data = (object) array();
try {
$solr = apachesolr_get_solr();
// TODO: possibly clear this every page view if we are running multi-site.
if (apachesolr_index_get_last_updated()) {
$solr->clearCache();
}
$data = $solr->getLuke();
}
catch (Exception $e) {
watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
drupal_set_message(nl2br(check_plain($e->getMessage())), "warning");
$data->fields = array();
}
$output = '';
if (isset($data->index->numDocs)) {
$pending_docs = $delay_msg = $delete_msg = '';
try {
$stats_summary = $solr->getStatsSummary();
$solr_msg = '
' . t('Using schema.xml version: @schema_version', $stats_summary);
if ($stats_summary['@core_name']) {
$solr_msg .= '
' . t('Solr core name: @core_name', $stats_summary);
}
$delay_msg = '
' . t('The server has a @autocommit_time delay before updates are processed.', $stats_summary) . "
' . t('Number of pending deletions: @deletes_total', $stats_summary) . "
\n"; } catch (Exception $e) { watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR); } $output .= $solr_msg . $delay_msg; $pending_msg = $stats_summary['@pending_docs'] ? t('(@pending_docs sent but not yet processed)', $stats_summary) : ''; $output .= '' . t('Number of documents in index: @num !pending', array('@num' => $data->index->numDocs, '!pending' => $pending_msg)) . "
\n"; $output .= $delete_msg; } $output .= '' . l(t('View more details on the search index contents'), 'admin/reports/apachesolr') . "
\n"; if (variable_get('apachesolr_read_only', APACHESOLR_READ_WRITE) == APACHESOLR_READ_WRITE) { // Display the Index Action form. $output .= drupal_get_form('apachesolr_index_action_form'); } else { drupal_set_message(t('The index is in read-only mode. Options for deleting and re-indexing are therefore not available. The index mode can be changed on the !settings_page', array('!settings_page' => l(t('settings page'), 'admin/settings/apachesolr'))), 'warning'); } return $output; } function apachesolr_index_report() { try { $solr = apachesolr_get_solr(); // TODO: possibly clear this every page view if we are running multi-site. if (apachesolr_index_get_last_updated()) { $solr->clearCache(); } $data = $solr->getLuke(); } catch (Exception $e) { watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR); drupal_set_message(nl2br(check_plain($e->getMessage())), "warning"); $data->fields = array(); } $output = '' . t('Number of documents in index: @num !pending', array('@num' => $data->index->numDocs, '!pending' => '')) . "
\n"; $limit = variable_get('apachesolr_luke_limit', 20000); if (isset($data->index->numDocs) && $data->index->numDocs > $limit) { $output .= '' . t('You have more than @limit documents, so term frequencies are being omitted for performance reasons.', array('@limit' => $limit)) . "
\n"; $not_found = t('Omitted'); } elseif (isset($data->index->numDocs)) { $not_found = t('Not indexed'); try { $solr = apachesolr_get_solr(); // Note: we use 2 since 1 fails on Ubuntu Hardy. $data = $solr->getLuke(2); $output .= '' . t('Number of terms in index: @num', array('@num' => $data->index->numTerms)) . "
\n"; } catch (Exception $e) { watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR); $data->fields = array(); } } $fields = (array)$data->fields; if ($fields) { $output .= '' . t('Number of fields in index: @num', array('@num' => count($fields))) . "
\n"; $rows = array(); foreach ($fields as $name => $field) { // TODO: try to map the name to something more meaningful. $rows[$name] = array($name, $field->type, isset($field->distinct) ? $field->distinct : $not_found); } ksort($rows); // Display the table of Field names, Index Types, and term counts. $output .= theme('table', array(t('Field name'), t('Index type'), t('Distinct terms')), $rows); } else { $output .= '' . t('No data on indexed fields.') . "
\n"; } return $output; } /** * Indicates what order the specified facets should be listed in. This function is used in a usort * invocation. * * @param $a * The first facet. * @param $b * The second facet. * * @return * A signed integer that indicates which of the specified facets should come first. */ function apachesolr_sort_facets($a, $b) { return strcasecmp($a['info'], $b['info']); } /** * This is the submit handler for the active facets form. * * The form values for each module are array filtereed to remove non-enabled items and * stored in the variable table with the name 'apachesolr_enabled_facets'. * * @see apachesolr_enabled_facets_form() */ function apachesolr_enabled_facets_form_submit($form, &$form_state) { $enabled = array(); foreach ($form_state['values']['apachesolr_enabled_facets'] as $module => $facets) { $enabled[$module] = array_filter($facets); } apachesolr_save_enabled_facets($enabled); // This cache being stale can prevent new facet filters from working. apachesolr_clear_cache(); drupal_set_message($form_state['values']['submit_message'], 'warning'); } /** * Creates the form that allows the user to select which facets will be enabled. * * Only enabled facets are sent to solr. Fewer enabled facets can reduce the * load on the search server. Blocks are only offered for enabled facets, so * this also reduces the clutter on the blocks admin page. * * @see apachesolr_enabled_facets_form_submit() */ function apachesolr_enabled_facets_form() { $facets = array(); $module_facets = array(); $module_list = array(); foreach (module_implements('apachesolr_facets') as $module) { $return = module_invoke($module, 'apachesolr_facets'); if (!empty($return)) { $module_facets[$module] = $return; uasort($module_facets[$module], 'apachesolr_sort_facets'); $module_list[$module] = $module; } } $enabled_facets = apachesolr_get_enabled_facets(); $form = array(); $form['apachesolr_enabled_facets']['help'] = array( '#type' => 'item', '#value' => t('You can use this screen to select which search filter blocks should be created by enabling the corresponding filters on this page. For performance reasons, you should only enable filters that you intend to have available to users on the search page. After selecting which filter blocks to create, you will be sent to the blocks page where you can choose which of those blocks should be enabled when your users search by placing each block in a region.'), ); if ($module_list) { $placeholders = implode(', ', array_fill(0, count($module_list), "'%s'")); $result = db_query("SELECT name, info FROM {system} WHERE name IN (". $placeholders .") AND type = 'module'", $module_list); while ($item = db_fetch_array($result)) { $module_list[$item['name']] = unserialize($item['info']); } } foreach ($module_facets as $module => $facets) { $form['apachesolr_enabled_facets'][$module] = array( '#type' => 'fieldset', '#title' => check_plain($module_list[$module]['name']), '#collapsible' => TRUE, '#collapsed' => FALSE, ); // We must use module + delta as the keys since that combination is // guaranteed to be unique. A single module could, for example, have // two different blocks that expose different faceting on the same // field in the index. foreach ($facets as $delta => $data) { $form['apachesolr_enabled_facets'][$module][$delta] = array( '#type' => 'checkbox', '#title' => $data['info'], '#return_value' => $data['facet_field'], '#default_value' => isset($enabled_facets[$module][$delta]) ? $data['facet_field'] : 0, ); } } $has_facets = (bool)$module_facets; $form['submit'] = array( '#type' => 'submit', '#value' => t('Save'), '#access' => $has_facets, ); $form['no-facets-message'] = array( '#value' => t('No filters are available from your currently enabled modules'), '#access' => !$has_facets, ); $form['#tree'] = TRUE; $form['submit_message'] = array( '#type' => 'value', '#value' => t('The Apache Solr filters settings were changed. To arrange the blocks for your enabled filters, visit the blocks administration page.', array('@url' => url('admin/build/block'))), ); return $form; } /** * Create a form for deleting the contents of the Solr index. * * @see apachesolr_index_action_form_submit() */ function apachesolr_index_action_form() { $form = array(); $form['action'] = array( '#value' => '' . check_plain($raw_file) . ''; drupal_set_title(check_plain($name)); } catch (Exception $e) { watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR); drupal_set_message(nl2br(check_plain($e->getMessage())), "warning"); } return $output; } /** * Form to edit moreLikeThis block settings. * * @param int $delta * If editing, the id of the block to edit. * * @return array * The form used for editing. * * TODO: * Add term boost settings. * Enable the user to specify a query, rather then forcing suggestions based * on the node id. * */ function apachesolr_mlt_block_form($delta = NULL) { if (isset($delta)) { $block = apachesolr_mlt_load_block($delta); if (!$block) { return array(); } } else { $block = apachesolr_mlt_block_defaults(); } $form['name'] = array( '#type' => 'textfield', '#title' => t('Block name'), '#description' => t('The block name displayed to site users.'), '#required' => TRUE, '#default_value' => $block['name'], '#weight' => '-2', ); $form['num_results'] = array( '#type' => 'select', '#title' => t('Maximum number of related items to display'), '#default_value' => $block['num_results'], '#options' => drupal_map_assoc(array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15)), '#weight' => -1, ); $form['mlt_fl'] = array( '#type' => 'checkboxes', '#title' => t('Fields for finding related content'), '#description' => t('Choose the fields to be used in calculating similarity. The default combination of %taxonomy_names and %title will provide relevant results for typical sites.', array("%taxonomy_names" => apachesolr_field_name_map("taxonomy_names"), "%title" => apachesolr_field_name_map("title"))), '#options' => apachesolr_mlt_get_fields(), '#required' => TRUE, '#default_value' => $block['mlt_fl'], ); $form['advanced'] = array( '#type' => 'fieldset', '#title' => t('Advanced configuration'), '#weight' => '1', '#collapsible' => TRUE, '#collapsed' => TRUE, ); $options = drupal_map_assoc(array(1, 2, 3, 4, 5, 6, 7)); $form['advanced']['mlt_mintf'] = array( '#type' => 'select', '#title' => t('Minimum term frequency'), '#description' => t('A word must appear this many times in any given document before the document is considered relevant for comparison.'), '#default_value' => $block['mlt_mintf'], '#options' => $options, ); $form['advanced']['mlt_mindf'] = array( '#type' => 'select', '#title' => t('Minimum document frequency'), '#description' => t('A word must occur in at least this many documents before it will be used for similarity comparison.'), '#default_value' => $block['mlt_mindf'], '#options' => $options, ); $form['advanced']['mlt_minwl'] = array( '#type' => 'select', '#title' => t('Minimum word length'), '#description' => 'You can use this to eliminate short words such as "the" and "it" from similarity comparisons. Words must be at least this number of characters or they will be ignored.', '#default_value' => $block['mlt_minwl'], '#options' => $options, ); $form['advanced']['mlt_maxwl'] = array( '#type' => 'select', '#title' => t('Maximum word length'), '#description' => t('You can use this to eliminate very long words from similarity comparisons. Words of more than this number of characters will be ignored.'), '#default_value' => $block['mlt_maxwl'], '#options' => drupal_map_assoc(array(8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20)), ); $form['advanced']['mlt_maxqt'] = array( '#type' => 'select', '#title' => t('Maximum number of query terms'), '#description' => t('The maximum number of query terms that will be included in any query. Lower numbers will result in fewer recommendations but will get results faster. If a content recommendation is not returning any recommendations, you can either check more "Comparison fields" checkboxes or increase the maximum number of query terms here.'), '#options' => drupal_map_assoc(array(3, 5, 7, 10, 12, 15, 20, 25, 30, 35, 40)), '#default_value' => $block['mlt_maxqt'], ); $form['restrictions'] = array( '#type' => 'fieldset', '#title' => t('Filters'), '#weight' => '1', '#collapsible' => TRUE, '#collapsed' => TRUE, ); $type_options = array(); foreach (node_get_types('types') as $key => $type) { $type_options[$key] = $type->name; } $form['restrictions']['mlt_type_filters'] = array( '#type' => 'checkboxes', '#title' => t('Content Types'), '#default_value' => is_array($block['mlt_type_filters']) ? $block['mlt_type_filters'] : array_keys($type_options), '#options' => $type_options, '#description' => t('Select the content types that similarity suggestions should be restricted to. Multiple types are joined with an OR query, so selecting more types results in more recommendations.'), '#weight' => '-2', ); $form['restrictions']['mlt_custom_filters'] = array( '#type' => 'textfield', '#title' => t('Additional Query'), '#description' => t('An additional query, in Lucene syntax, which will further filter the similarity suggestions. Ex. \'title:strategy\' will filter related content further to only those with strategy in the title. ' . 'Likewise \'body:HDTV^3\' will boost the term HDTV by a factor of 3. Here are some more examples:' . '