summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/FulltextSearchTableRebuildJob.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/FulltextSearchTableRebuildJob.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/FulltextSearchTableRebuildJob.php73
1 files changed, 73 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/FulltextSearchTableRebuildJob.php b/www/wiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/FulltextSearchTableRebuildJob.php
new file mode 100644
index 00000000..031280f4
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/FulltextSearchTableRebuildJob.php
@@ -0,0 +1,73 @@
+<?php
+
+namespace SMW\MediaWiki\Jobs;
+
+use SMW\MediaWiki\Job;
+use SMW\ApplicationFactory;
+use SMW\SQLStore\QueryEngine\FulltextSearchTableFactory;
+use Title;
+
+/**
+ * @license GNU GPL v2+
+ * @since 2.5
+ *
+ * @author mwjames
+ */
+class FulltextSearchTableRebuildJob extends Job {
+
+ /**
+ * @since 2.5
+ *
+ * @param Title $title
+ * @param array $params job parameters
+ */
+ public function __construct( Title $title, $params = [] ) {
+ parent::__construct( 'smw.fulltextSearchTableRebuild', $title, $params );
+ }
+
+ /**
+ * @see Job::run
+ *
+ * @since 2.5
+ */
+ public function run() {
+
+ if ( $this->waitOnCommandLineMode() ) {
+ return true;
+ }
+
+ $fulltextSearchTableFactory = new FulltextSearchTableFactory();
+
+ // Only the SQLStore is supported
+ $searchTableRebuilder = $fulltextSearchTableFactory->newSearchTableRebuilder(
+ ApplicationFactory::getInstance()->getStore( '\SMW\SQLStore\SQLStore' )
+ );
+
+ if ( $this->hasParameter( 'table' ) ) {
+ $searchTableRebuilder->rebuildByTable( $this->getParameter( 'table' ) );
+ } elseif ( $this->hasParameter( 'mode' ) && $this->getParameter( 'mode' ) === 'full' ) {
+ $searchTableRebuilder->rebuild();
+ } else {
+ $searchTableRebuilder->flushTable();
+ $this->createJobsFromTableList( $searchTableRebuilder->getQualifiedTableList() );
+ }
+
+ return true;
+ }
+
+ private function createJobsFromTableList( $tableList ) {
+
+ if ( $tableList === [] ) {
+ return;
+ }
+
+ foreach ( $tableList as $tableName ) {
+ $fulltextSearchTableRebuildJob = new self( $this->getTitle(), [
+ 'table' => $tableName
+ ] );
+
+ $fulltextSearchTableRebuildJob->insert();
+ }
+ }
+
+}