Go to the documentation of this file.
27 require_once __DIR__ .
'/../Maintenance.php';
51 parent::__construct();
52 $this->mDescription =
"Deletes local password for users.";
55 $this->
addOption(
'user',
'If specified, only checks the given user',
false,
true );
56 $this->
addOption(
'delete',
'Really delete. To prevent accidents, you must provide this flag.' );
57 $this->
addOption(
'prefix',
"Instead of deleting, make passwords invalid by prefixing with "
58 .
"':null:'. Make sure PasswordConfig has a 'null' entry. This is meant for testing before "
60 $this->
addOption(
'unprefix',
'Instead of deleting, undo the effect of --prefix.' );
68 $this->
fatalError(
"Exactly one of the 'delete', 'prefix', 'unprefix' options must be used\n" );
71 $passwordHashTypes = MediaWikiServices::getInstance()->getPasswordFactory()->getTypes();
73 !isset( $passwordHashTypes[
'null'] )
78 'null' password entry missing. To
use password prefixing,
add
80 to your configuration (
and remove once the passwords
were deleted).
87 if (
$user !==
false ) {
89 if ( $this->
user ===
false ) {
102 $this->
output(
"done. (wrote $this->total rows)\n" );
120 [
'user_name' => $userBatch ],
123 } elseif ( $this->
getOption(
'prefix' ) ) {
126 'user_password' ] ) ],
130 'user_password IS NOT NULL',
131 'user_name' => $userBatch,
135 } elseif ( $this->
getOption(
'unprefix' ) ) {
137 [
'user_password = ' . $dbw->
buildSubString(
'user_password', strlen(
':null:' ) + 1 ) ],
140 'user_name' => $userBatch,
146 MediaWikiServices::getInstance()->getDBLoadBalancerFactory()->waitForReplication();
159 if ( !is_null( $this->
user ) ) {
160 $this->
output(
"\t ... querying '$this->user'\n" );
168 $this->
output(
"\t ... querying from '$lastUsername'\n" );
169 $users = $dbw->selectFieldValues(
173 'user_name > ' . $dbw->addQuotes( $lastUsername ),
178 'ORDER BY' =>
'user_name ASC',
183 $lastUsername = end( $users );
getUserDB()
Get the master DB handle for the current user batch.
Delete unused local passwords.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
An extension or a will often add custom code to the function with or without a global variable For someone wanting email notification when an article is shown may add
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
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
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 and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same user
processUsers(array $userBatch, IDatabase $dbw)
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
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
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those were
__construct()
Default constructor.
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))
getUserBatches()
This method iterates through the requested users and returns their names in batches of self::$mBatchS...
static newInvalidPassword()
Create an InvalidPassword.
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
getOption( $name, $default=null)
Get an option, or return the default.
static getCanonicalName( $name, $validate='valid')
Given unvalidated user input, return a canonical username, or false if the username is invalid.
getBatchSize()
Returns batch size.
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
int $total
Number of deleted passwords.
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
string null $user
User to run on, or null for all.
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
hasOption( $name)
Checks to see if a particular option exists.
$wgPasswordConfig
Configuration for built-in password types.
setBatchSize( $s=0)
Set the batch size.
execute()
Do the actual work.