MediaWiki REL1_31
rebuildtextindex.php
Go to the documentation of this file.
1<?php
28require_once __DIR__ . '/Maintenance.php';
29
32
39 const RTI_CHUNK_SIZE = 500;
40
44 private $db;
45
46 public function __construct() {
47 parent::__construct();
48 $this->addDescription( 'Rebuild search index table from scratch' );
49 }
50
51 public function getDbType() {
53 }
54
55 public function execute() {
56 // Shouldn't be needed for Postgres
57 $this->db = $this->getDB( DB_MASTER );
58 if ( $this->db->getType() == 'postgres' ) {
59 $this->fatalError( "This script is not needed when using Postgres.\n" );
60 }
61
62 if ( $this->db->getType() == 'sqlite' ) {
63 if ( !DatabaseSqlite::getFulltextSearchModule() ) {
64 $this->fatalError( "Your version of SQLite module for PHP doesn't "
65 . "support full-text search (FTS3).\n" );
66 }
67 if ( !$this->db->checkForEnabledSearch() ) {
68 $this->fatalError( "Your database schema is not configured for "
69 . "full-text search support. Run update.php.\n" );
70 }
71 }
72
73 if ( $this->db->getType() == 'mysql' ) {
74 $this->dropMysqlTextIndex();
75 $this->clearSearchIndex();
76 $this->populateSearchIndex();
77 $this->createMysqlTextIndex();
78 } else {
79 $this->clearSearchIndex();
80 $this->populateSearchIndex();
81 }
82
83 $this->output( "Done.\n" );
84 }
85
89 protected function populateSearchIndex() {
90 $res = $this->db->select( 'page', 'MAX(page_id) AS count' );
91 $s = $this->db->fetchObject( $res );
92 $count = $s->count;
93 $this->output( "Rebuilding index fields for {$count} pages...\n" );
94 $n = 0;
95
96 $revQuery = Revision::getQueryInfo( [ 'page', 'text' ] );
97
98 while ( $n < $count ) {
99 if ( $n ) {
100 $this->output( $n . "\n" );
101 }
102 $end = $n + self::RTI_CHUNK_SIZE - 1;
103
104 $res = $this->db->select(
105 $revQuery['tables'],
106 $revQuery['fields'],
107 [ "page_id BETWEEN $n AND $end", 'page_latest = rev_id', 'rev_text_id = old_id' ],
108 __METHOD__,
109 [],
110 $revQuery['joins']
111 );
112
113 foreach ( $res as $s ) {
114 $title = Title::makeTitle( $s->page_namespace, $s->page_title );
115 try {
116 $rev = new Revision( $s );
117 $content = $rev->getContent();
118
119 $u = new SearchUpdate( $s->page_id, $title, $content );
120 $u->doUpdate();
121 } catch ( MWContentSerializationException $ex ) {
122 $this->output( "Failed to deserialize content of revision {$s->rev_id} of page "
123 . "`" . $title->getPrefixedDBkey() . "`!\n" );
124 }
125 }
127 }
128 }
129
133 private function dropMysqlTextIndex() {
134 $searchindex = $this->db->tableName( 'searchindex' );
135 if ( $this->db->indexExists( 'searchindex', 'si_title', __METHOD__ ) ) {
136 $this->output( "Dropping index...\n" );
137 $sql = "ALTER TABLE $searchindex DROP INDEX si_title, DROP INDEX si_text";
138 $this->db->query( $sql, __METHOD__ );
139 }
140 }
141
145 private function createMysqlTextIndex() {
146 $searchindex = $this->db->tableName( 'searchindex' );
147 $this->output( "\nRebuild the index...\n" );
148 foreach ( [ 'si_title', 'si_text' ] as $field ) {
149 $sql = "ALTER TABLE $searchindex ADD FULLTEXT $field ($field)";
150 $this->db->query( $sql, __METHOD__ );
151 }
152 }
153
157 private function clearSearchIndex() {
158 $this->output( 'Clearing searchindex table...' );
159 $this->db->delete( 'searchindex', '*', __METHOD__ );
160 $this->output( "Done\n" );
161 }
162}
163
164$maintClass = RebuildTextIndex::class;
165require_once RUN_MAINTENANCE_IF_MAIN;
Exception representing a failure to serialize or unserialize a content object.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
addDescription( $text)
Set the description text.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Maintenance script that rebuilds search index table from scratch.
execute()
Do the actual work.
dropMysqlTextIndex()
(MySQL only) Drops fulltext index before populating the table.
createMysqlTextIndex()
(MySQL only) Adds back fulltext index after populating the table.
clearSearchIndex()
Deletes everything from search index.
IMaintainableDatabase $db
getDbType()
Does the script need different DB access? By default, we give Maintenance scripts normal rights to th...
__construct()
Default constructor.
populateSearchIndex()
Populates the search index with content from all pages.
Database independant search index updater.
$res
Definition database.txt:21
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition hooks.txt:1777
Advanced database interface for IDatabase handles that include maintenance methods.
require_once RUN_MAINTENANCE_IF_MAIN
const DB_MASTER
Definition defines.php:29