3 * Check for articles to fix after adding/deleting namespaces
5 * Copyright © 2005-2007 Brion Vibber <brion@pobox.com>
6 * https://www.mediawiki.org/
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
24 * @ingroup Maintenance
27 require_once __DIR__
. '/Maintenance.php';
30 * Maintenance script that checks for articles to fix after
31 * adding/deleting namespaces.
33 * @ingroup Maintenance
35 class NamespaceConflictChecker
extends Maintenance
{
42 public function __construct() {
43 parent
::__construct();
44 $this->mDescription
= "";
45 $this->addOption( 'fix', 'Attempt to automatically fix errors' );
46 $this->addOption( 'suffix', "Dupes will be renamed with correct namespace with " .
47 "<text> appended after the article name", false, true );
48 $this->addOption( 'prefix', "Do an explicit check for the given title prefix " .
49 "appended after the article name", false, true );
52 public function execute() {
53 $this->db
= wfGetDB( DB_MASTER
);
55 $fix = $this->hasOption( 'fix' );
56 $suffix = $this->getOption( 'suffix', '' );
57 $prefix = $this->getOption( 'prefix', '' );
58 $key = intval( $this->getOption( 'key', 0 ) );
61 $retval = $this->checkPrefix( $key, $prefix, $fix, $suffix );
63 $retval = $this->checkAll( $fix, $suffix );
67 $this->output( "\nLooks good!\n" );
69 $this->output( "\nOh noeees\n" );
75 * @param bool $fix Whether or not to fix broken entries
76 * @param string $suffix Suffix to append to renamed articles
80 private function checkAll( $fix, $suffix = '' ) {
81 global $wgContLang, $wgNamespaceAliases, $wgCapitalLinks;
85 // List interwikis first, so they'll be overridden
86 // by any conflicting local namespaces.
87 foreach ( $this->getInterwikiList() as $prefix ) {
88 $name = $wgContLang->ucfirst( $prefix );
92 // Now pull in all canonical and alias namespaces...
93 foreach ( MWNamespace
::getCanonicalNamespaces() as $ns => $name ) {
94 // This includes $wgExtraNamespaces
99 foreach ( $wgContLang->getNamespaces() as $ns => $name ) {
100 if ( $name !== '' ) {
101 $spaces[$name] = $ns;
104 foreach ( $wgNamespaceAliases as $name => $ns ) {
105 $spaces[$name] = $ns;
107 foreach ( $wgContLang->getNamespaceAliases() as $name => $ns ) {
108 $spaces[$name] = $ns;
111 // We'll need to check for lowercase keys as well,
112 // since we're doing case-sensitive searches in the db.
113 foreach ( $spaces as $name => $ns ) {
114 $moreNames = array();
115 $moreNames[] = $wgContLang->uc( $name );
116 $moreNames[] = $wgContLang->ucfirst( $wgContLang->lc( $name ) );
117 $moreNames[] = $wgContLang->ucwords( $name );
118 $moreNames[] = $wgContLang->ucwords( $wgContLang->lc( $name ) );
119 $moreNames[] = $wgContLang->ucwordbreaks( $name );
120 $moreNames[] = $wgContLang->ucwordbreaks( $wgContLang->lc( $name ) );
121 if ( !$wgCapitalLinks ) {
122 foreach ( $moreNames as $altName ) {
123 $moreNames[] = $wgContLang->lcfirst( $altName );
125 $moreNames[] = $wgContLang->lcfirst( $name );
127 foreach ( array_unique( $moreNames ) as $altName ) {
128 if ( $altName !== $name ) {
129 $spaces[$altName] = $ns;
138 foreach ( $spaces as $name => $ns ) {
139 $ok = $this->checkNamespace( $ns, $name, $fix, $suffix ) && $ok;
146 * Get the interwiki list
150 private function getInterwikiList() {
151 $result = Interwiki
::getAllPrefixes();
153 foreach ( $result as $row ) {
154 $prefixes[] = $row['iw_prefix'];
162 * @param int $ns A namespace id
163 * @param string $name
164 * @param bool $fix Whether to fix broken entries
165 * @param string $suffix Suffix to append to renamed articles
168 private function checkNamespace( $ns, $name, $fix, $suffix = '' ) {
169 $conflicts = $this->getConflicts( $ns, $name );
170 $count = count( $conflicts );
176 foreach ( $conflicts as $row ) {
177 $resolvable = $this->reportConflict( $row, $suffix );
178 $ok = $ok && $resolvable;
179 if ( $fix && ( $resolvable ||
$suffix != '' ) ) {
180 $ok = $this->resolveConflict( $row, $resolvable, $suffix ) && $ok;
188 * @todo Do this for real
190 * @param string $prefix
192 * @param string $suffix
195 private function checkPrefix( $key, $prefix, $fix, $suffix = '' ) {
196 $this->output( "Checking prefix \"$prefix\" vs namespace $key\n" );
198 return $this->checkNamespace( $key, $prefix, $fix, $suffix );
202 * Find pages in mainspace that have a prefix of the new namespace
203 * so we know titles that will need migrating
205 * @param int $ns Namespace id (id for new namespace?)
206 * @param string $name Prefix that is being made a namespace
210 private function getConflicts( $ns, $name ) {
211 $titleSql = "TRIM(LEADING {$this->db->addQuotes( "$name:" )} FROM page_title)";
213 // An interwiki; try an alternate encoding with '-' for ':'
214 $titleSql = $this->db
->buildConcat( array(
215 $this->db
->addQuotes( "$name-" ),
220 return iterator_to_array( $this->db
->select( 'page',
223 'oldtitle' => 'page_title',
224 'namespace' => $this->db
->addQuotes( $ns ) . ' + page_namespace',
225 'title' => $titleSql,
226 'oldnamespace' => 'page_namespace',
229 'page_namespace' => array( 0, 1 ),
230 'page_title' . $this->db
->buildLike( "$name:", $this->db
->anyString() ),
237 * Report any conflicts we find
239 * @param stdClass $row
240 * @param string $suffix
243 private function reportConflict( $row, $suffix ) {
244 $newTitle = Title
::makeTitleSafe( $row->namespace, $row->title
);
245 if ( is_null( $newTitle ) ||
!$newTitle->canExist() ) {
246 // Title is also an illegal title...
247 // For the moment we'll let these slide to cleanupTitles or whoever.
248 $this->output( sprintf( "... %d (%d,\"%s\")\n",
252 $this->output( "... *** cannot resolve automatically; illegal title ***\n" );
257 $this->output( sprintf( "... %d (%d,\"%s\") -> (%d,\"%s\") [[%s]]\n",
261 $newTitle->getNamespace(),
262 $newTitle->getDBkey(),
263 $newTitle->getPrefixedText() ) );
265 $id = $newTitle->getArticleID();
267 $this->output( "... *** cannot resolve automatically; page exists with ID $id ***\n" );
276 * Resolve any conflicts
278 * @param stClass $row Row from the page table to fix
279 * @param bool $resolvable
280 * @param string $suffix Suffix to append to the fixed page
283 private function resolveConflict( $row, $resolvable, $suffix ) {
284 if ( !$resolvable ) {
285 $this->output( "... *** old title {$row->title}\n" );
287 $row->title
.= $suffix;
288 $this->output( "... *** new title {$row->title}\n" );
289 $title = Title
::makeTitleSafe( $row->namespace, $row->title
);
291 $this->output( "... !!! invalid title\n" );
295 $id = $title->getArticleID();
297 $this->output( "... *** page exists with ID $id ***\n" );
302 $this->output( "... *** using suffixed form [[" . $title->getPrefixedText() . "]] ***\n" );
304 $this->resolveConflictOn( $row, 'page', 'page' );
310 * Resolve a given conflict
312 * @param stdClass $row Row from the old broken entry
313 * @param string $table Table to update
314 * @param string $prefix Prefix for column name, like page or ar
317 private function resolveConflictOn( $row, $table, $prefix ) {
318 $this->output( "... resolving on $table... " );
319 $newTitle = Title
::makeTitleSafe( $row->namespace, $row->title
);
320 $this->db
->update( $table,
322 "{$prefix}_namespace" => $newTitle->getNamespace(),
323 "{$prefix}_title" => $newTitle->getDBkey(),
326 // "{$prefix}_namespace" => 0,
327 // "{$prefix}_title" => $row->oldtitle,
328 "{$prefix}_id" => $row->id
,
331 $this->output( "ok.\n" );
337 $maintClass = "NamespaceConflictChecker";
338 require_once RUN_MAINTENANCE_IF_MAIN
;