2011-05-02 06:33:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
Solr::include_client_api();
|
|
|
|
|
|
|
|
abstract class SolrIndex extends SearchIndex {
|
|
|
|
|
|
|
|
static $fulltextTypeMap = array(
|
|
|
|
'*' => 'text',
|
|
|
|
'HTMLVarchar' => 'htmltext',
|
|
|
|
'HTMLText' => 'htmltext'
|
|
|
|
);
|
|
|
|
|
|
|
|
static $filterTypeMap = array(
|
|
|
|
'*' => 'string',
|
|
|
|
'Boolean' => 'boolean',
|
|
|
|
'Date' => 'tdate',
|
|
|
|
'SSDatetime' => 'tdate',
|
|
|
|
'SS_Datetime' => 'tdate',
|
|
|
|
'ForeignKey' => 'tint',
|
|
|
|
'Int' => 'tint',
|
|
|
|
'Float' => 'tfloat',
|
|
|
|
'Double' => 'tdouble'
|
|
|
|
);
|
|
|
|
|
2012-08-23 12:38:41 +02:00
|
|
|
static $sortTypeMap = array();
|
|
|
|
|
2012-09-03 22:53:23 +02:00
|
|
|
protected $analyzerFields = array();
|
|
|
|
|
2012-09-05 18:16:40 +02:00
|
|
|
protected $copyFields = array();
|
|
|
|
|
2012-09-05 18:09:45 +02:00
|
|
|
protected $extrasPath = null;
|
|
|
|
|
|
|
|
protected $templatesPath = null;
|
|
|
|
/**
|
|
|
|
* @return String Absolute path to the folder containing
|
|
|
|
* templates which are used for generating the schema and field definitions.
|
|
|
|
*/
|
|
|
|
function getTemplatesPath() {
|
|
|
|
return $this->templatesPath ? $this->templatesPath : Solr::$solr_options['templatespath'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return String Absolute path to the configuration default files,
|
|
|
|
* e.g. solrconfig.xml.
|
|
|
|
*/
|
|
|
|
function getExtrasPath() {
|
|
|
|
return $this->extrasPath ? $this->extrasPath : Solr::$solr_options['extraspath'];
|
|
|
|
}
|
|
|
|
|
2011-05-02 06:33:05 +02:00
|
|
|
function generateSchema() {
|
2012-09-05 18:09:45 +02:00
|
|
|
return $this->renderWith($this->getTemplatesPath() . '/schema.ss');
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function getIndexName() {
|
|
|
|
return get_class($this);
|
|
|
|
}
|
|
|
|
|
|
|
|
function getTypes() {
|
2012-09-05 18:09:45 +02:00
|
|
|
return $this->renderWith($this->getTemplatesPath() . '/types.ss');
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|
|
|
|
|
2012-09-03 22:53:23 +02:00
|
|
|
/**
|
|
|
|
* Index-time analyzer which is applied to a specific field.
|
|
|
|
* Can be used to remove HTML tags, apply stemming, etc.
|
|
|
|
*
|
|
|
|
* @see http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.WhitespaceTokenizerFactory
|
|
|
|
*
|
|
|
|
* @param String $field
|
|
|
|
* @param String $type
|
|
|
|
* @param Array $params Parameters for the analyzer, usually at least a "class"
|
|
|
|
*/
|
|
|
|
function addAnalyzer($field, $type, $params) {
|
|
|
|
$fullFields = $this->fieldData($field);
|
|
|
|
if($fullFields) foreach($fullFields as $fullField => $spec) {
|
|
|
|
if(!isset($this->analyzerFields[$fullField])) $this->analyzerFields[$fullField] = array();
|
|
|
|
$this->analyzerFields[$fullField][$type] = $params;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-02 06:33:05 +02:00
|
|
|
function getFieldDefinitions() {
|
|
|
|
$xml = array();
|
|
|
|
$stored = Director::isDev() ? "stored='true'" : "stored='false'";
|
|
|
|
|
|
|
|
$xml[] = "";
|
|
|
|
|
|
|
|
// Add the hardcoded field definitions
|
|
|
|
|
|
|
|
$xml[] = "<field name='_documentid' type='string' indexed='true' stored='true' required='true' />";
|
|
|
|
|
|
|
|
$xml[] = "<field name='ID' type='tint' indexed='true' stored='true' required='true' />";
|
|
|
|
$xml[] = "<field name='ClassName' type='string' indexed='true' stored='true' required='true' />";
|
|
|
|
$xml[] = "<field name='ClassHierarchy' type='string' indexed='true' stored='true' required='true' multiValued='true' />";
|
|
|
|
|
|
|
|
// Add the fulltext collation field
|
|
|
|
|
|
|
|
$xml[] = "<field name='_text' type='htmltext' indexed='true' $stored multiValued='true' />" ;
|
|
|
|
|
|
|
|
// Add the user-specified fields
|
|
|
|
|
|
|
|
foreach ($this->fulltextFields as $name => $field) {
|
2012-09-03 22:52:44 +02:00
|
|
|
$xml[] = $this->getFieldDefinition($name, $field, self::$fulltextTypeMap);
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($this->filterFields as $name => $field) {
|
|
|
|
if ($field['fullfield'] == 'ID' || $field['fullfield'] == 'ClassName') continue;
|
2012-09-03 22:52:44 +02:00
|
|
|
$xml[] = $this->getFieldDefinition($name, $field);
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($this->sortFields as $name => $field) {
|
|
|
|
if ($field['fullfield'] == 'ID' || $field['fullfield'] == 'ClassName') continue;
|
2012-09-03 22:52:44 +02:00
|
|
|
$xml[] = $this->getFieldDefinition($name, $field);
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return implode("\n\t\t", $xml);
|
|
|
|
}
|
|
|
|
|
2012-09-03 22:52:44 +02:00
|
|
|
/**
|
|
|
|
* @param String $name
|
|
|
|
* @param Array $spec
|
|
|
|
* @param Array $typeMap
|
|
|
|
* @return String XML
|
|
|
|
*/
|
|
|
|
protected function getFieldDefinition($name, $spec, $typeMap = null) {
|
|
|
|
if(!$typeMap) $typeMap = self::$filterTypeMap;
|
|
|
|
$multiValued = (isset($spec['multi_valued']) && $spec['multi_valued']) ? "true" : '';
|
|
|
|
$type = isset($typeMap[$spec['type']]) ? $typeMap[$spec['type']] : $typeMap['*'];
|
|
|
|
|
2012-09-03 22:53:23 +02:00
|
|
|
$analyzerXml = '';
|
|
|
|
if(isset($this->analyzerFields[$name])) {
|
|
|
|
foreach($this->analyzerFields[$name] as $analyzerType => $analyzerParams) {
|
|
|
|
$analyzerXml .= $this->toXmlTag($analyzerType, $analyzerParams);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-03 22:52:44 +02:00
|
|
|
$fieldParams = array_merge(
|
|
|
|
array(
|
|
|
|
'name' => $name,
|
|
|
|
'type' => $type,
|
|
|
|
'indexed' => 'true',
|
|
|
|
'stored' => Director::isDev() ? 'true' : 'false',
|
|
|
|
'multiValued' => $multiValued
|
|
|
|
),
|
|
|
|
isset($spec['extra_options']) ? $spec['extra_options'] : array()
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->toXmlTag(
|
|
|
|
"field",
|
2012-09-03 22:53:23 +02:00
|
|
|
$fieldParams,
|
|
|
|
$analyzerXml ? "<analyzer>$analyzerXml</analyzer>" : null
|
2012-09-03 22:52:44 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert definition to XML tag
|
|
|
|
*
|
|
|
|
* @param String $tag
|
|
|
|
* @param String $attrs Map of attributes
|
|
|
|
* @param String $content Inner content
|
|
|
|
* @return String XML tag
|
|
|
|
*/
|
|
|
|
protected function toXmlTag($tag, $attrs, $content = null) {
|
|
|
|
$xml = "<$tag ";
|
|
|
|
if($attrs) {
|
|
|
|
$attrStrs = array();
|
|
|
|
foreach($attrs as $attrName => $attrVal) $attrStrs[] = "$attrName='$attrVal'";
|
|
|
|
$xml .= $attrStrs ? implode(' ', $attrStrs) : '';
|
|
|
|
}
|
|
|
|
$xml .= $content ? ">$content</$tag>" : '/>';
|
|
|
|
return $xml;
|
|
|
|
}
|
|
|
|
|
2012-09-05 18:16:40 +02:00
|
|
|
/**
|
|
|
|
* @param String $source Composite field name (<class>_<fieldname>)
|
|
|
|
* @param String $dest
|
|
|
|
*/
|
|
|
|
function addCopyField($source, $dest, $extraOptions = array()) {
|
|
|
|
if(!isset($this->copyFields[$source])) $this->copyFields[$source] = array();
|
|
|
|
$this->copyFields[$source][] = array_merge(
|
|
|
|
array('source' => $source, 'dest' => $dest),
|
|
|
|
$extraOptions
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-05-02 06:33:05 +02:00
|
|
|
function getCopyFieldDefinitions() {
|
|
|
|
$xml = array();
|
|
|
|
|
|
|
|
foreach ($this->fulltextFields as $name => $field) {
|
|
|
|
$xml[] = "<copyField source='{$name}' dest='_text' />";
|
|
|
|
}
|
|
|
|
|
2012-09-05 18:16:40 +02:00
|
|
|
foreach ($this->copyFields as $source => $fields) {
|
|
|
|
foreach($fields as $fieldAttrs) {
|
|
|
|
$xml[] = $this->toXmlTag('copyField', $fieldAttrs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-02 06:33:05 +02:00
|
|
|
return implode("\n\t", $xml);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function _addField($doc, $object, $field) {
|
|
|
|
$class = get_class($object);
|
2012-07-19 02:22:13 +02:00
|
|
|
if ($class != $field['origin'] && !is_subclass_of($class, $field['origin'])) return;
|
2011-05-02 06:33:05 +02:00
|
|
|
|
|
|
|
$value = $this->_getFieldValue($object, $field);
|
2012-08-23 17:49:32 +02:00
|
|
|
|
2011-05-02 06:33:05 +02:00
|
|
|
$type = isset(self::$filterTypeMap[$field['type']]) ? self::$filterTypeMap[$field['type']] : self::$filterTypeMap['*'];
|
|
|
|
|
|
|
|
if (is_array($value)) foreach($value as $sub) {
|
|
|
|
/* Solr requires dates in the form 1995-12-31T23:59:59Z */
|
2012-08-29 21:00:40 +02:00
|
|
|
if ($type == 'tdate') {
|
|
|
|
if(!$sub) continue;
|
|
|
|
$sub = gmdate('Y-m-d\TH:i:s\Z', strtotime($sub));
|
|
|
|
}
|
|
|
|
|
2011-05-02 06:33:05 +02:00
|
|
|
/* Solr requires numbers to be valid if presented, not just empty */
|
|
|
|
if (($type == 'tint' || $type == 'tfloat' || $type == 'tdouble') && !is_numeric($sub)) continue;
|
|
|
|
|
|
|
|
$doc->addField($field['name'], $sub);
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
/* Solr requires dates in the form 1995-12-31T23:59:59Z */
|
2012-08-29 21:00:40 +02:00
|
|
|
if ($type == 'tdate') {
|
|
|
|
if(!$value) return;
|
|
|
|
$value = gmdate('Y-m-d\TH:i:s\Z', strtotime($value));
|
|
|
|
}
|
|
|
|
|
2011-05-02 06:33:05 +02:00
|
|
|
/* Solr requires numbers to be valid if presented, not just empty */
|
|
|
|
if (($type == 'tint' || $type == 'tfloat' || $type == 'tdouble') && !is_numeric($value)) return;
|
|
|
|
|
|
|
|
$doc->setField($field['name'], $value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function _addAs($object, $base, $options) {
|
|
|
|
$includeSubs = $options['include_children'];
|
|
|
|
|
|
|
|
$doc = new Apache_Solr_Document();
|
|
|
|
|
|
|
|
// Always present fields
|
|
|
|
|
|
|
|
$doc->setField('_documentid', $this->getDocumentID($object, $base, $includeSubs));
|
|
|
|
$doc->setField('ID', $object->ID);
|
|
|
|
$doc->setField('ClassName', $object->ClassName);
|
|
|
|
|
|
|
|
foreach (SearchIntrospection::hierarchy(get_class($object), false) as $class) $doc->addField('ClassHierarchy', $class);
|
|
|
|
|
|
|
|
// Add the user-specified fields
|
|
|
|
|
|
|
|
foreach ($this->getFieldsIterator() as $name => $field) {
|
|
|
|
if ($field['base'] == $base) $this->_addField($doc, $object, $field);
|
|
|
|
}
|
|
|
|
|
2013-02-12 21:52:06 +01:00
|
|
|
try {
|
|
|
|
$this->getService()->addDocument($doc);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
SS_Log::log($e, SS_Log::WARN);
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-29 21:00:40 +02:00
|
|
|
|
|
|
|
return $doc;
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function add($object) {
|
|
|
|
$class = get_class($object);
|
2012-08-29 21:00:40 +02:00
|
|
|
$docs = array();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
|
|
|
foreach ($this->getClasses() as $searchclass => $options) {
|
2012-07-19 02:22:13 +02:00
|
|
|
if ($searchclass == $class || ($options['include_children'] && is_subclass_of($class, $searchclass))) {
|
2012-08-29 21:00:40 +02:00
|
|
|
$docs[] = $this->_addAs($object, $searchclass, $options);
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|
|
|
|
}
|
2012-08-29 21:00:40 +02:00
|
|
|
|
|
|
|
return $docs;
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function canAdd($class) {
|
|
|
|
foreach ($this->classes as $searchclass => $options) {
|
2012-07-19 02:22:13 +02:00
|
|
|
if ($searchclass == $class || ($options['include_children'] && is_subclass_of($class, $searchclass))) return true;
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function delete($base, $id, $state) {
|
|
|
|
$documentID = $this->getDocumentIDForState($base, $id, $state);
|
2013-02-12 21:52:06 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
$this->getService()->deleteById($documentID);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
SS_Log::log($e, SS_Log::WARN);
|
|
|
|
return false;
|
|
|
|
}
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function commit() {
|
2013-02-12 21:52:06 +01:00
|
|
|
try {
|
|
|
|
$this->getService()->commit(false, false, false);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
SS_Log::log($e, SS_Log::WARN);
|
|
|
|
return false;
|
|
|
|
}
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|
|
|
|
|
2012-08-23 17:49:32 +02:00
|
|
|
/**
|
|
|
|
* @param SearchQuery $query
|
|
|
|
* @param integer $offset
|
|
|
|
* @param integer $limit
|
2012-09-03 16:20:22 +02:00
|
|
|
* @param Array $params Extra request parameters passed through to Solr
|
2012-08-23 17:49:32 +02:00
|
|
|
* @return ArrayData Map with the following keys:
|
|
|
|
* - 'Matches': ArrayList of the matched object instances
|
|
|
|
*/
|
2012-09-03 16:20:22 +02:00
|
|
|
public function search(SearchQuery $query, $offset = -1, $limit = -1, $params = array()) {
|
2012-08-23 17:49:32 +02:00
|
|
|
$service = $this->getService();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
|
|
|
SearchVariant::with(count($query->classes) == 1 ? $query->classes[0]['class'] : null)->call('alterQuery', $query, $this);
|
|
|
|
|
|
|
|
$q = array();
|
|
|
|
$fq = array();
|
|
|
|
|
|
|
|
// Build the search itself
|
|
|
|
|
|
|
|
foreach ($query->search as $search) {
|
|
|
|
$text = $search['text'];
|
|
|
|
preg_match_all('/"[^"]*"|\S+/', $text, $parts);
|
|
|
|
|
|
|
|
$fuzzy = $search['fuzzy'] ? '~' : '';
|
|
|
|
|
|
|
|
foreach ($parts[0] as $part) {
|
2012-08-23 17:49:32 +02:00
|
|
|
$fields = (isset($search['fields'])) ? $search['fields'] : array();
|
|
|
|
if(isset($search['boost'])) $fields = array_merge($fields, array_keys($search['boost']));
|
|
|
|
if ($fields) {
|
2011-05-02 06:33:05 +02:00
|
|
|
$searchq = array();
|
2012-08-23 17:49:32 +02:00
|
|
|
foreach ($fields as $field) {
|
|
|
|
$boost = (isset($search['boost'][$field])) ? '^' . $search['boost'][$field] : '';
|
|
|
|
$searchq[] = "{$field}:".$part.$fuzzy.$boost;
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|
2012-08-23 17:49:32 +02:00
|
|
|
$q[] = '+('.implode(' OR ', $searchq).')';
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$q[] = '+'.$part;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter by class if requested
|
|
|
|
|
|
|
|
$classq = array();
|
|
|
|
|
|
|
|
foreach ($query->classes as $class) {
|
|
|
|
if ($class['includeSubclasses']) $classq[] = 'ClassHierarchy:'.$class['class'];
|
|
|
|
else $classq[] = 'ClassName:'.$class['class'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($classq) $fq[] = '+('.implode(' ', $classq).')';
|
|
|
|
|
|
|
|
// Filter by filters
|
|
|
|
|
|
|
|
foreach ($query->require as $field => $values) {
|
|
|
|
$requireq = array();
|
|
|
|
|
|
|
|
foreach ($values as $value) {
|
|
|
|
if ($value === SearchQuery::$missing) {
|
|
|
|
$requireq[] = "(*:* -{$field}:[* TO *])";
|
|
|
|
}
|
|
|
|
else if ($value === SearchQuery::$present) {
|
|
|
|
$requireq[] = "{$field}:[* TO *]";
|
|
|
|
}
|
|
|
|
else if ($value instanceof SearchQuery_Range) {
|
|
|
|
$start = $value->start; if ($start === null) $start = '*';
|
|
|
|
$end = $value->end; if ($end === null) $end = '*';
|
|
|
|
$requireq[] = "$field:[$start TO $end]";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$requireq[] = $field.':"'.$value.'"';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$fq[] = '+('.implode(' ', $requireq).')';
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($query->exclude as $field => $values) {
|
|
|
|
$excludeq = array();
|
|
|
|
$missing = false;
|
|
|
|
|
|
|
|
foreach ($values as $value) {
|
|
|
|
if ($value === SearchQuery::$missing) {
|
|
|
|
$missing = true;
|
|
|
|
}
|
|
|
|
else if ($value === SearchQuery::$present) {
|
|
|
|
$excludeq[] = "{$field}:[* TO *]";
|
|
|
|
}
|
|
|
|
else if ($value instanceof SearchQuery_Range) {
|
|
|
|
$start = $value->start; if ($start === null) $start = '*';
|
|
|
|
$end = $value->end; if ($end === null) $end = '*';
|
|
|
|
$excludeq[] = "$field:[$start TO $end]";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$excludeq[] = $field.':"'.$value.'"';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$fq[] = ($missing ? "+{$field}:[* TO *] " : '') . '-('.implode(' ', $excludeq).')';
|
|
|
|
}
|
|
|
|
|
2012-08-23 17:49:32 +02:00
|
|
|
if(!headers_sent()) {
|
|
|
|
if ($q) header('X-Query: '.implode(' ', $q));
|
|
|
|
if ($fq) header('X-Filters: "'.implode('", "', $fq).'"');
|
|
|
|
}
|
2011-05-02 06:33:05 +02:00
|
|
|
|
|
|
|
if ($offset == -1) $offset = $query->start;
|
|
|
|
if ($limit == -1) $limit = $query->limit;
|
|
|
|
if ($limit == -1) $limit = SearchQuery::$default_page_size;
|
|
|
|
|
2012-09-03 16:20:22 +02:00
|
|
|
$params = array_merge($params, array('fq' => implode(' ', $fq)));
|
|
|
|
|
2012-08-23 17:49:32 +02:00
|
|
|
$res = $service->search(
|
|
|
|
$q ? implode(' ', $q) : '*:*',
|
|
|
|
$offset,
|
|
|
|
$limit,
|
2012-09-03 16:20:22 +02:00
|
|
|
$params,
|
2012-08-23 17:49:32 +02:00
|
|
|
Apache_Solr_Service::METHOD_POST
|
|
|
|
);
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2012-07-19 03:46:46 +02:00
|
|
|
$results = new ArrayList();
|
2012-08-23 17:49:32 +02:00
|
|
|
if($res->getHttpStatus() >= 200 && $res->getHttpStatus() < 300) {
|
|
|
|
foreach ($res->response->docs as $doc) {
|
|
|
|
$result = DataObject::get_by_id($doc->ClassName, $doc->ID);
|
2013-02-12 22:36:20 +01:00
|
|
|
if($result) {
|
|
|
|
$results->push($result);
|
|
|
|
|
|
|
|
// Add highlighting (optional)
|
|
|
|
$docId = $doc->_documentid;
|
|
|
|
if($res->highlighting && $res->highlighting->$docId) {
|
|
|
|
// TODO Create decorator class for search results rather than adding arbitrary object properties
|
|
|
|
// TODO Allow specifying highlighted field, and lazy loading
|
|
|
|
// in case the search API needs another query (similar to SphinxSearchable->buildExcerpt()).
|
|
|
|
$combinedHighlights = array();
|
|
|
|
foreach($res->highlighting->$docId as $field => $highlights) {
|
|
|
|
$combinedHighlights = array_merge($combinedHighlights, $highlights);
|
|
|
|
}
|
2013-02-13 02:03:50 +01:00
|
|
|
$result->Excerpt = DBField::create_field('HTMLText', implode(' ... ', $combinedHighlights));
|
2012-09-03 16:30:05 +02:00
|
|
|
}
|
|
|
|
}
|
2012-08-23 17:49:32 +02:00
|
|
|
}
|
|
|
|
$numFound = $res->response->numFound;
|
|
|
|
} else {
|
|
|
|
$numFound = 0;
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|
2012-07-19 14:35:24 +02:00
|
|
|
|
2011-05-02 06:33:05 +02:00
|
|
|
$ret = array();
|
2012-07-19 03:46:46 +02:00
|
|
|
$ret['Matches'] = new PaginatedList($results);
|
|
|
|
$ret['Matches']->setLimitItems(false);
|
|
|
|
// Tell PaginatedList how many results there are
|
2012-08-23 17:49:32 +02:00
|
|
|
$ret['Matches']->setTotalItems($numFound);
|
2012-07-19 03:46:46 +02:00
|
|
|
// Results for current page start at $offset
|
|
|
|
$ret['Matches']->setPageStart($offset);
|
|
|
|
// Results per page
|
|
|
|
$ret['Matches']->setPageLength($limit);
|
2012-09-05 18:16:20 +02:00
|
|
|
// Suggestions (requires custom setup, assumes spellcheck.collate=true)
|
|
|
|
if(isset($res->spellcheck->suggestions->collation)) {
|
|
|
|
$ret['Suggestion'] = $res->spellcheck->suggestions->collation;
|
|
|
|
}
|
2011-05-02 06:33:05 +02:00
|
|
|
|
|
|
|
return new ArrayData($ret);
|
|
|
|
}
|
2012-08-23 17:49:32 +02:00
|
|
|
|
|
|
|
protected $service;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return SolrService
|
|
|
|
*/
|
|
|
|
public function getService() {
|
|
|
|
if(!$this->service) $this->service = Solr::service(get_class($this));
|
|
|
|
return $this->service;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setService(SolrService $service) {
|
|
|
|
$this->service = $service;
|
|
|
|
return $this;
|
|
|
|
}
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|