2010-10-08 05:31:19 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2010-12-21 11:54:11 +01:00
|
|
|
* Documentation Search powered by Lucene. You will need Zend_Lucene installed on your path
|
|
|
|
* to rebuild the indexes run the {@link RebuildLuceneDocsIndex} task. You may wish to setup
|
|
|
|
* a cron job to remake the indexes on a regular basis
|
|
|
|
*
|
2010-12-21 10:42:44 +01:00
|
|
|
* @package sapphiredocs
|
2010-10-08 05:31:19 +02:00
|
|
|
*/
|
|
|
|
|
2010-12-21 10:42:44 +01:00
|
|
|
class DocumentationSearch {
|
|
|
|
|
|
|
|
private static $enabled = false;
|
2010-12-22 09:21:49 +01:00
|
|
|
|
2010-12-21 10:42:44 +01:00
|
|
|
private $results;
|
2010-10-21 22:27:23 +02:00
|
|
|
|
2010-12-21 10:42:44 +01:00
|
|
|
private $totalResults;
|
2010-10-21 22:27:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-12-21 10:42:44 +01:00
|
|
|
* Folder name for indexes (in the temp folder). You can override it using
|
|
|
|
* {@link DocumentationSearch::set_index_location($)}
|
|
|
|
*
|
|
|
|
* @var string
|
2010-10-21 22:27:23 +02:00
|
|
|
*/
|
2010-12-21 10:42:44 +01:00
|
|
|
private static $index_location = 'sapphiredocs';
|
2010-10-21 22:27:23 +02:00
|
|
|
|
2010-12-21 10:42:44 +01:00
|
|
|
static $allowed_actions = array(
|
|
|
|
'buildindex'
|
|
|
|
);
|
2010-10-08 05:31:19 +02:00
|
|
|
|
|
|
|
/**
|
2010-12-21 10:42:44 +01:00
|
|
|
* Generate an array of every single documentation page installed on the system.
|
2010-10-08 05:31:19 +02:00
|
|
|
*
|
2010-12-21 10:42:44 +01:00
|
|
|
* @return DataObjectSet
|
2010-10-08 05:31:19 +02:00
|
|
|
*/
|
2010-12-21 11:54:11 +01:00
|
|
|
public static function get_all_documentation_pages() {
|
2010-10-08 05:31:19 +02:00
|
|
|
DocumentationService::load_automatic_registration();
|
|
|
|
|
|
|
|
$modules = DocumentationService::get_registered_modules();
|
|
|
|
$output = new DataObjectSet();
|
|
|
|
|
|
|
|
if($modules) {
|
|
|
|
foreach($modules as $module) {
|
2010-12-21 10:42:44 +01:00
|
|
|
|
2010-10-08 05:31:19 +02:00
|
|
|
foreach($module->getLanguages() as $language) {
|
2010-10-21 22:27:23 +02:00
|
|
|
try {
|
2010-12-21 10:42:44 +01:00
|
|
|
$pages = DocumentationService::get_pages_from_folder($module);
|
|
|
|
|
2010-10-21 22:27:23 +02:00
|
|
|
if($pages) {
|
|
|
|
foreach($pages as $page) {
|
2010-12-21 10:42:44 +01:00
|
|
|
$output->push($page);
|
2010-10-21 22:27:23 +02:00
|
|
|
}
|
2010-10-08 05:31:19 +02:00
|
|
|
}
|
|
|
|
}
|
2010-12-21 10:42:44 +01:00
|
|
|
catch(Exception $e) {
|
|
|
|
user_error($e, E_USER_WARNING);
|
|
|
|
}
|
2010-10-08 05:31:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-12-21 10:42:44 +01:00
|
|
|
|
2010-10-08 05:31:19 +02:00
|
|
|
return $output;
|
|
|
|
}
|
2010-12-21 10:42:44 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Enable searching documentation
|
|
|
|
*/
|
|
|
|
public static function enable() {
|
|
|
|
self::$enabled = true;
|
2011-01-11 02:35:59 +01:00
|
|
|
|
|
|
|
// include the zend search functionality
|
|
|
|
set_include_path(get_include_path() . PATH_SEPARATOR . dirname(dirname(__FILE__)) . '/thirdparty/');
|
2010-12-21 10:42:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public static function enabled() {
|
|
|
|
return self::$enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string
|
|
|
|
*/
|
|
|
|
public function set_index($index) {
|
|
|
|
self::$index_location = $index;
|
|
|
|
}
|
2010-10-21 22:27:23 +02:00
|
|
|
|
|
|
|
/**
|
2010-12-21 10:42:44 +01:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_index_location() {
|
|
|
|
return TEMP_FOLDER . '/'. trim(self::$index_location, '/');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform a search query on the index
|
2010-10-21 22:27:23 +02:00
|
|
|
*
|
2010-12-21 10:42:44 +01:00
|
|
|
* Rebuilds the index if it out of date
|
2010-10-21 22:27:23 +02:00
|
|
|
*/
|
2010-12-22 09:44:46 +01:00
|
|
|
public function performSearch($query) {
|
2011-01-11 02:35:59 +01:00
|
|
|
try {
|
|
|
|
$index = Zend_Search_Lucene::open(self::get_index_location());
|
2010-12-21 10:42:44 +01:00
|
|
|
|
2011-01-11 02:35:59 +01:00
|
|
|
Zend_Search_Lucene::setResultSetLimit(200);
|
2010-10-21 22:27:23 +02:00
|
|
|
|
2011-01-11 02:35:59 +01:00
|
|
|
$this->results = $index->find($query);
|
|
|
|
$this->totalResults = $index->numDocs();
|
|
|
|
}
|
|
|
|
catch(Zend_Search_Lucene_Exception $e) {
|
|
|
|
// the reindexing task has not been run
|
|
|
|
user_error('DocumentationSearch::performSearch() could not perform search as index does not exist.
|
|
|
|
Please run /dev/tasks/RebuildLuceneDocsIndex', E_USER_ERROR);
|
|
|
|
}
|
2010-12-22 09:21:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return DataObjectSet
|
|
|
|
*/
|
2010-12-22 09:44:46 +01:00
|
|
|
public function getDataArrayFromHits($request) {
|
2010-12-22 09:21:49 +01:00
|
|
|
$data = array(
|
|
|
|
'Results' => null,
|
|
|
|
'Query' => null,
|
|
|
|
'Title' => _t('DocumentationSearch.SEARCHRESULTS', 'Search Results'),
|
|
|
|
'TotalResults' => null,
|
|
|
|
'TotalPages' => null,
|
|
|
|
'ThisPage' => null,
|
|
|
|
'StartResult' => null,
|
|
|
|
'EndResult' => null,
|
|
|
|
'PrevUrl' => DBField::create('Text', 'false'),
|
|
|
|
'NextUrl' => DBField::create('Text', 'false'),
|
|
|
|
'SearchPages' => new DataObjectSet()
|
|
|
|
);
|
2010-12-22 09:44:46 +01:00
|
|
|
|
|
|
|
$start = ($request->requestVar('start')) ? (int)$request->requestVar('start') : 0;
|
|
|
|
$query = ($request->requestVar('Search')) ? $request->requestVar('Search') : '';
|
|
|
|
|
2010-12-22 09:21:49 +01:00
|
|
|
$pageLength = 10;
|
|
|
|
$currentPage = floor( $start / $pageLength ) + 1;
|
2010-12-21 10:42:44 +01:00
|
|
|
|
2010-12-22 09:21:49 +01:00
|
|
|
$totalPages = ceil(count($this->results) / $pageLength );
|
|
|
|
|
|
|
|
if ($totalPages == 0) $totalPages = 1;
|
|
|
|
if ($currentPage > $totalPages) $currentPage = $totalPages;
|
|
|
|
|
|
|
|
$results = new DataObjectSet();
|
|
|
|
|
|
|
|
foreach($this->results as $k => $hit) {
|
|
|
|
if($k < ($currentPage-1)*$pageLength || $k >= ($currentPage*$pageLength)) continue;
|
|
|
|
|
|
|
|
$doc = $hit->getDocument();
|
|
|
|
|
|
|
|
$content = $hit->content;
|
2010-12-21 10:42:44 +01:00
|
|
|
|
2010-12-22 09:21:49 +01:00
|
|
|
// do a simple markdown parse of the file
|
|
|
|
$obj = new ArrayData(array(
|
|
|
|
'Title' => DBField::create('Varchar', $doc->getFieldValue('Title')),
|
|
|
|
'Link' => DBField::create('Varchar',$doc->getFieldValue('Link')),
|
|
|
|
'Language' => DBField::create('Varchar',$doc->getFieldValue('Language')),
|
|
|
|
'Version' => DBField::create('Varchar',$doc->getFieldValue('Version')),
|
|
|
|
'Content' => DBField::create('HTMLText', $content),
|
|
|
|
'Score' => $hit->score,
|
|
|
|
'Number' => $k + 1
|
|
|
|
));
|
|
|
|
|
|
|
|
$results->push($obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
$data['Results'] = $results;
|
2010-12-22 09:44:46 +01:00
|
|
|
$data['Query'] = DBField::create('Text', $query);
|
2010-12-22 09:21:49 +01:00
|
|
|
$data['TotalResults'] = DBField::create('Text', count($this->results));
|
|
|
|
$data['TotalPages'] = DBField::create('Text', $totalPages);
|
|
|
|
$data['ThisPage'] = DBField::create('Text', $currentPage);
|
|
|
|
$data['StartResult'] = $start + 1;
|
|
|
|
$data['EndResult'] = $start + count($results);
|
|
|
|
|
|
|
|
// Pagination links
|
|
|
|
if($currentPage > 1) {
|
|
|
|
$data['PrevUrl'] = DBField::create('Text',
|
|
|
|
$this->buildQueryUrl(array('start' => ($currentPage - 2) * $pageLength))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($currentPage < $totalPages) {
|
|
|
|
$data['NextUrl'] = DBField::create('Text',
|
|
|
|
$this->buildQueryUrl(array('start' => $currentPage * $pageLength))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($totalPages > 1) {
|
|
|
|
// Always show a certain number of pages at the start
|
|
|
|
for ( $i = 1; $i <= $totalPages; $i++ ) {
|
|
|
|
$obj = new DataObject();
|
|
|
|
$obj->IsEllipsis = false;
|
|
|
|
$obj->PageNumber = $i;
|
|
|
|
$obj->Link = $this->buildQueryUrl(array(
|
|
|
|
'start' => ($i - 1) * $pageLength
|
|
|
|
));
|
|
|
|
|
|
|
|
$obj->Current = false;
|
|
|
|
if ( $i == $currentPage ) $obj->Current = true;
|
|
|
|
$data['SearchPages']->push($obj);
|
|
|
|
}
|
2010-12-21 10:42:44 +01:00
|
|
|
}
|
2010-12-22 09:21:49 +01:00
|
|
|
|
|
|
|
return $data;
|
2010-12-21 10:42:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-12-22 09:21:49 +01:00
|
|
|
* @return string
|
2010-12-21 10:42:44 +01:00
|
|
|
*/
|
2010-12-22 09:21:49 +01:00
|
|
|
private function buildQueryUrl($params) {
|
|
|
|
$url = parse_url($_SERVER['REQUEST_URI']);
|
|
|
|
if ( ! array_key_exists('query', $url) ) $url['query'] = '';
|
|
|
|
parse_str($url['query'], $url['query']);
|
|
|
|
if ( ! is_array($url['query']) ) $url['query'] = array();
|
|
|
|
// Remove 'start parameter if it exists
|
|
|
|
if ( array_key_exists('start', $url['query']) ) unset( $url['query']['start'] );
|
|
|
|
// Add extra parameters from argument
|
|
|
|
$url['query'] = array_merge($url['query'], $params);
|
|
|
|
$url['query'] = http_build_query($url['query']);
|
|
|
|
$url = $url['path'] . ($url['query'] ? '?'.$url['query'] : '');
|
|
|
|
|
|
|
|
return $url;
|
2010-12-21 10:42:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getTotalResults() {
|
|
|
|
return (int) $this->totalResults;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function optimizeIndex() {
|
|
|
|
$index = Zend_Search_Lucene::open(self::get_index_location());
|
|
|
|
|
|
|
|
if($index) $index->optimize();
|
2010-10-21 22:27:23 +02:00
|
|
|
}
|
2010-10-08 05:31:19 +02:00
|
|
|
}
|