MediaWiki  1.33.0
deleteEqualMessages.php
Go to the documentation of this file.
1 <?php
23 
24 require_once __DIR__ . '/Maintenance.php';
25 
33  public function __construct() {
34  parent::__construct();
35  $this->addDescription( 'Deletes all pages in the MediaWiki namespace that are equal to '
36  . 'the default message' );
37  $this->addOption( 'delete', 'Actually delete the pages (default: dry run)' );
38  $this->addOption( 'delete-talk', 'Don\'t leave orphaned talk pages behind during deletion' );
39  $this->addOption( 'lang-code', 'Check for subpages of this language code (default: root '
40  . 'page against content language). Use value "*" to run for all mwfile language code '
41  . 'subpages (including the base pages that override content language).', false, true );
42  }
43 
48  protected function fetchMessageInfo( $langCode, array &$messageInfo ) {
49  $contLang = MediaWikiServices::getInstance()->getContentLanguage();
50  if ( $langCode ) {
51  $this->output( "\n... fetching message info for language: $langCode" );
52  $nonContentLanguage = true;
53  } else {
54  $this->output( "\n... fetching message info for content language" );
55  $langCode = $contLang->getCode();
56  $nonContentLanguage = false;
57  }
58 
59  /* Based on SpecialAllmessages::reallyDoQuery #filter=modified */
60 
61  $l10nCache = Language::getLocalisationCache();
62  $messageNames = $l10nCache->getSubitemList( 'en', 'messages' );
63  // Normalise message names for NS_MEDIAWIKI page_title
64  $messageNames = array_map( [ $contLang, 'ucfirst' ], $messageNames );
65 
67  $messageNames, $langCode, $nonContentLanguage );
68  // getCustomisedStatuses is stripping the sub page from the page titles, add it back
69  $titleSuffix = $nonContentLanguage ? "/$langCode" : '';
70 
71  foreach ( $messageNames as $key ) {
72  $customised = isset( $statuses['pages'][$key] );
73  if ( $customised ) {
74  $actual = wfMessage( $key )->inLanguage( $langCode )->plain();
75  $default = wfMessage( $key )->inLanguage( $langCode )->useDatabase( false )->plain();
76 
77  $messageInfo['relevantPages']++;
78 
79  if (
80  // Exclude messages that are empty by default, such as sitenotice, specialpage
81  // summaries and accesskeys.
82  $default !== '' && $default !== '-' &&
83  $actual === $default
84  ) {
85  $hasTalk = isset( $statuses['talks'][$key] );
86  $messageInfo['results'][] = [
87  'title' => $key . $titleSuffix,
88  'hasTalk' => $hasTalk,
89  ];
90  $messageInfo['equalPages']++;
91  if ( $hasTalk ) {
92  $messageInfo['equalPagesTalks']++;
93  }
94  }
95  }
96  }
97  }
98 
99  public function execute() {
100  $doDelete = $this->hasOption( 'delete' );
101  $doDeleteTalk = $this->hasOption( 'delete-talk' );
102  $langCode = $this->getOption( 'lang-code' );
103 
104  $messageInfo = [
105  'relevantPages' => 0,
106  'equalPages' => 0,
107  'equalPagesTalks' => 0,
108  'results' => [],
109  ];
110 
111  $this->output( 'Checking for pages with default message...' );
112 
113  // Load message information
114  if ( $langCode ) {
115  $langCodes = Language::fetchLanguageNames( null, 'mwfile' );
116  if ( $langCode === '*' ) {
117  // All valid lang-code subpages in NS_MEDIAWIKI that
118  // override the messsages in that language
119  foreach ( $langCodes as $key => $value ) {
120  $this->fetchMessageInfo( $key, $messageInfo );
121  }
122  // Lastly, the base pages in NS_MEDIAWIKI that override
123  // messages in content language
124  $this->fetchMessageInfo( false, $messageInfo );
125  } else {
126  if ( !isset( $langCodes[$langCode] ) ) {
127  $this->fatalError( 'Invalid language code: ' . $langCode );
128  }
129  $this->fetchMessageInfo( $langCode, $messageInfo );
130  }
131  } else {
132  $this->fetchMessageInfo( false, $messageInfo );
133  }
134 
135  if ( $messageInfo['equalPages'] === 0 ) {
136  // No more equal messages left
137  $this->output( "\ndone.\n" );
138 
139  return;
140  }
141 
142  $this->output( "\n{$messageInfo['relevantPages']} pages in the MediaWiki namespace "
143  . "override messages." );
144  $this->output( "\n{$messageInfo['equalPages']} pages are equal to the default message "
145  . "(+ {$messageInfo['equalPagesTalks']} talk pages).\n" );
146 
147  if ( !$doDelete ) {
148  $list = '';
149  foreach ( $messageInfo['results'] as $result ) {
151  $list .= "* [[$title]]\n";
152  if ( $result['hasTalk'] ) {
154  $list .= "* [[$title]]\n";
155  }
156  }
157  $this->output( "\nList:\n$list\nRun the script again with --delete to delete these pages" );
158  if ( $messageInfo['equalPagesTalks'] !== 0 ) {
159  $this->output( " (include --delete-talk to also delete the talk pages)" );
160  }
161  $this->output( "\n" );
162 
163  return;
164  }
165 
166  $user = User::newSystemUser( 'MediaWiki default', [ 'steal' => true ] );
167  if ( !$user ) {
168  $this->fatalError( "Invalid username" );
169  }
170  global $wgUser;
171  $wgUser = $user;
172 
173  // Hide deletions from RecentChanges
174  $user->addGroup( 'bot' );
175 
176  // Handle deletion
177  $this->output( "\n...deleting equal messages (this may take a long time!)..." );
178  $dbw = $this->getDB( DB_MASTER );
179  foreach ( $messageInfo['results'] as $result ) {
180  wfWaitForSlaves();
181  $dbw->ping();
183  $this->output( "\n* [[$title]]" );
184  $page = WikiPage::factory( $title );
185  $error = ''; // Passed by ref
186  $success = $page->doDeleteArticle( 'No longer required', false, 0, true, $error, $user );
187  if ( !$success ) {
188  $this->output( " (Failed!)" );
189  }
190  if ( $result['hasTalk'] && $doDeleteTalk ) {
192  $this->output( "\n* [[$title]]" );
193  $page = WikiPage::factory( $title );
194  $error = ''; // Passed by ref
195  $success = $page->doDeleteArticle( 'Orphaned talk page of no longer required message',
196  false, 0, true, $error, $user );
197  if ( !$success ) {
198  $this->output( " (Failed!)" );
199  }
200  }
201  }
202  $this->output( "\n\ndone!\n" );
203  }
204 }
205 
207 require_once RUN_MAINTENANCE_IF_MAIN;
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
Maintenance\fatalError
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Definition: Maintenance.php:485
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:329
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1983
DeleteEqualMessages\execute
execute()
Do the actual work.
Definition: deleteEqualMessages.php:99
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
$success
$success
Definition: NoLocalSettings.php:42
wfWaitForSlaves
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
Definition: GlobalFunctions.php:2790
php
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
Definition: injection.txt:35
User\newSystemUser
static newSystemUser( $name, $options=[])
Static factory method for creation of a "system" user from username.
Definition: User.php:813
AllMessagesTablePager\getCustomisedStatuses
static getCustomisedStatuses( $messageNames, $langcode='en', $foreign=false)
Determine which of the MediaWiki and MediaWiki_talk namespace pages exist.
Definition: AllMessagesTablePager.php:129
Language\getLocalisationCache
static getLocalisationCache()
Get the LocalisationCache instance.
Definition: Language.php:447
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:925
WikiPage\factory
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:138
NS_MEDIAWIKI_TALK
const NS_MEDIAWIKI_TALK
Definition: Defines.php:73
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:248
use
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
Definition: MIT-LICENSE.txt:10
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:576
DB_MASTER
const DB_MASTER
Definition: defines.php:26
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
DeleteEqualMessages\fetchMessageInfo
fetchMessageInfo( $langCode, array &$messageInfo)
Definition: deleteEqualMessages.php:48
$value
$value
Definition: styleTest.css.php:49
Maintenance\getOption
getOption( $name, $default=null)
Get an option, or return the default.
Definition: Maintenance.php:283
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
Maintenance\getDB
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
Definition: Maintenance.php:1373
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:434
NS_MEDIAWIKI
const NS_MEDIAWIKI
Definition: Defines.php:72
class
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
Definition: maintenance.txt:52
DeleteEqualMessages
Maintenance script that deletes all pages in the MediaWiki namespace of which the content is equal to...
Definition: deleteEqualMessages.php:32
MediaWikiServices
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
Definition: injection.txt:23
DeleteEqualMessages\__construct
__construct()
Default constructor.
Definition: deleteEqualMessages.php:33
Maintenance\hasOption
hasOption( $name)
Checks to see if a particular option exists.
Definition: Maintenance.php:269
Language\fetchLanguageNames
static fetchLanguageNames( $inLanguage=self::AS_AUTONYMS, $include='mw')
Get an array of language names, indexed by code.
Definition: Language.php:836
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
$maintClass
$maintClass
Definition: deleteEqualMessages.php:206