Go to the documentation of this file.
30 require_once __DIR__ .
'/cleanupTable.inc';
39 parent::__construct();
40 $this->
addDescription(
'Script to clean up broken, unparseable titles' );
41 $this->batchSize = 1000;
49 $verified = MediaWikiServices::getInstance()->getContentLanguage()->normalize( $display );
54 &&
$title->getNamespace() == $row->page_namespace
55 &&
$title->getDBkey() === $row->page_title
62 if ( $row->page_namespace ==
NS_FILE && $this->fileExists( $row->page_title ) ) {
63 $this->
output(
"file $row->page_title needs cleanup, please run cleanupImages.php.\n" );
65 } elseif ( is_null(
$title ) ) {
66 $this->
output(
"page $row->page_id ($display) is illegal.\n" );
70 $this->
output(
"page $row->page_id ($display) doesn't match self.\n" );
84 $row =
$dbr->selectRow(
'image', [
'img_name' ], [
'img_name' =>
$name ], __METHOD__ );
86 return $row !==
false;
93 $legal =
'A-Za-z0-9_/\\\\-';
94 $legalized = preg_replace_callback(
"!([^$legal])!",
97 if ( $legalized ==
'.' ) {
100 if ( $legalized ==
'_' ) {
101 $legalized =
'(space)';
103 $legalized =
'Broken/' . $legalized;
106 if ( is_null(
$title ) ) {
107 $clean =
'Broken/id:' . $row->page_id;
108 $this->
output(
"Couldn't legalize; form '$legalized' still invalid; using '$clean'\n" );
110 } elseif (
$title->exists() ) {
111 $clean =
'Broken/id:' . $row->page_id;
112 $this->
output(
"Legalized for '$legalized' exists; using '$clean'\n" );
116 $dest =
$title->getDBkey();
117 if ( $this->dryrun ) {
118 $this->
output(
"DRY RUN: would rename $row->page_id ($row->page_namespace," .
119 "'$row->page_title') to ($row->page_namespace,'$dest')\n" );
121 $this->
output(
"renaming $row->page_id ($row->page_namespace," .
122 "'$row->page_title') to ($row->page_namespace,'$dest')\n" );
124 $dbw->update(
'page',
125 [
'page_title' => $dest ],
126 [
'page_id' => $row->page_id ],
140 $titleImpossible =
$title->getInterwiki() || !
$title->canExist();
141 if ( $titleImpossible ) {
142 $prior =
$title->getPrefixedDBkey();
144 $prior =
$title->getDBkey();
147 # Old cleanupTitles could move articles there. See T25147.
148 $ns = $row->page_namespace;
153 # Namespace which no longer exists. Put the page in the main namespace
154 # since we don't have any idea of the old namespace name. See T70501.
159 if ( !$titleImpossible && !
$title->exists() ) {
163 $clean =
'Broken/' . $prior;
166 if ( !$verified || $verified->exists() ) {
167 $blah =
"Broken/id:" . $row->page_id;
168 $this->
output(
"Couldn't legalize; form '$clean' exists; using '$blah'\n" );
173 if ( is_null(
$title ) ) {
174 $this->
fatalError(
"Something awry; empty title." );
176 $ns =
$title->getNamespace();
177 $dest =
$title->getDBkey();
179 if ( $this->dryrun ) {
180 $this->
output(
"DRY RUN: would rename $row->page_id ($row->page_namespace," .
181 "'$row->page_title') to ($ns,'$dest')\n" );
183 $this->
output(
"renaming $row->page_id ($row->page_namespace," .
184 "'$row->page_title') to ($ns,'$dest')\n" );
186 $dbw->update(
'page',
188 'page_namespace' => $ns,
189 'page_title' => $dest
191 [
'page_id' => $row->page_id ],
193 MediaWikiServices::getInstance()->getLinkCache()->clear();
__construct()
Default constructor.
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Maintenance script to clean up broken, unparseable titles.
static makeName( $ns, $title, $fragment='', $interwiki='', $canonicalNamespace=false)
Make a prefixed DB key from a DB key and a namespace index.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
addDescription( $text)
Set the description text.
require_once RUN_MAINTENANCE_IF_MAIN
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
namespace and then decline to actually register it file or subcat img or subcat $title
moveInconsistentPage( $row, Title $title)
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Allows to change the fields on the form that will be generated $name
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Generic class to cleanup a database table.
const GAID_FOR_UPDATE
Used to be GAID_FOR_UPDATE define.
static exists( $index)
Returns whether the specified namespace exists.
Represents a title within MediaWiki.
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
output( $out, $channel=null)
Throw some output to the user.
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices