mirror of
https://github.com/silverstripe/silverstripe-docsviewer
synced 2024-10-22 11:05:56 +02:00
bd186a0a73
Avoids clashes between CLI and web modes (e.g. wrongly configured $_FILE_TO_URL_MAPPING lookups).
124 lines
3.5 KiB
PHP
Executable File
124 lines
3.5 KiB
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Rebuilds the search indexes for the documentation pages.
|
|
*
|
|
* For the hourly cron rebuild use RebuildLuceneDocusIndex_Hourly
|
|
*
|
|
* @package docsviewer
|
|
* @subpackage tasks
|
|
*/
|
|
|
|
class RebuildLuceneDocsIndex extends BuildTask {
|
|
|
|
protected $title = "Rebuild Documentation Search Indexes";
|
|
|
|
protected $description = "
|
|
Rebuilds the indexes used for the search engine in the docsviewer.";
|
|
|
|
function run($request) {
|
|
$this->rebuildIndexes();
|
|
}
|
|
|
|
function rebuildIndexes($quiet = false) {
|
|
require_once(DOCSVIEWER_PATH .'/thirdparty/markdown/markdown.php');
|
|
require_once 'Zend/Search/Lucene.php';
|
|
|
|
ini_set("memory_limit", -1);
|
|
ini_set('max_execution_time', 0);
|
|
|
|
Filesystem::makeFolder(DocumentationSearch::get_index_location());
|
|
|
|
// only rebuild the index if we have to. Check for either flush or the time write.lock.file
|
|
// was last altered
|
|
$lock = DocumentationSearch::get_index_location() .'/write.lock.file';
|
|
$lockFileFresh = (file_exists($lock) && filemtime($lock) > (time() - (60 * 60 * 24)));
|
|
|
|
echo "Building index in ". DocumentationSearch::get_index_location() . PHP_EOL;
|
|
|
|
if($lockFileFresh && !isset($_REQUEST['flush'])) {
|
|
if(!$quiet) {
|
|
echo "Index recently rebuilt. If you want to force reindex use ?flush=1";
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
try {
|
|
$index = Zend_Search_Lucene::open(DocumentationSearch::get_index_location());
|
|
$index->removeReference();
|
|
}
|
|
catch (Zend_Search_Lucene_Exception $e) {
|
|
// user_error($e);
|
|
}
|
|
|
|
try {
|
|
$index = Zend_Search_Lucene::create(DocumentationSearch::get_index_location());
|
|
}
|
|
catch(Zend_Search_Lucene_Exception $c) {
|
|
user_error($c);
|
|
}
|
|
|
|
// includes registration
|
|
$pages = DocumentationSearch::get_all_documentation_pages();
|
|
|
|
if($pages) {
|
|
$count = 0;
|
|
|
|
// iconv complains about all the markdown formatting
|
|
// turn off notices while we parse
|
|
$error = error_reporting();
|
|
error_reporting('E_ALL ^ E_NOTICE');
|
|
|
|
foreach($pages as $page) {
|
|
$count++;
|
|
|
|
if(!is_dir($page->getPath())) {
|
|
$doc = new Zend_Search_Lucene_Document();
|
|
$content = $page->getMarkdown();
|
|
if($content) $content = Markdown($content);
|
|
|
|
$entity = ($entity = $page->getEntity()) ? $entity->getTitle() : "";
|
|
|
|
$doc->addField(Zend_Search_Lucene_Field::Text('content', $content));
|
|
$doc->addField($titleField = Zend_Search_Lucene_Field::Text('Title', $page->getTitle()));
|
|
$doc->addField($breadcrumbField = Zend_Search_Lucene_Field::Text('BreadcrumbTitle', $page->getBreadcrumbTitle()));
|
|
$doc->addField(Zend_Search_Lucene_Field::Keyword('Version', $page->getVersion()));
|
|
$doc->addField(Zend_Search_Lucene_Field::Keyword('Language', $page->getLang()));
|
|
$doc->addField(Zend_Search_Lucene_Field::Keyword('Entity', $entity));
|
|
$doc->addField(Zend_Search_Lucene_Field::Keyword('Link', $page->getLink(false)));
|
|
|
|
// custom boosts
|
|
$titleField->boost = 3;
|
|
$breadcrumbField->boost = 1.5;
|
|
foreach(DocumentationSearch::$boost_by_path as $pathExpr => $boost) {
|
|
if(preg_match($pathExpr, $page->getRelativePath())) $doc->boost = $boost;
|
|
}
|
|
|
|
$index->addDocument($doc);
|
|
}
|
|
|
|
if(!$quiet) echo "adding ". $page->getPath() ."\n";
|
|
}
|
|
|
|
error_reporting($error);
|
|
}
|
|
|
|
$index->commit();
|
|
|
|
if(!$quiet) echo "complete.";
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @package docsviewer
|
|
* @subpackage tasks
|
|
*/
|
|
class RebuildLuceneDocusIndex_Hourly extends HourlyTask {
|
|
|
|
function process() {
|
|
$reindex = new RebuildLuceneDocusIndex();
|
|
|
|
$reindex->rebuildIndexes(true);
|
|
}
|
|
} |