27require_once __DIR__ .
'/Maintenance.php';
35 parent::__construct();
37 $this->
addDescription(
'Pass through all users and change one of their options.
38The new option is NOT validated.' );
40 $this->
addOption(
'list',
'List available user options and their default value' );
41 $this->
addOption(
'usage',
'Report all options statistics or just one if you specify it' );
42 $this->
addOption(
'old',
'The value to look for',
false,
true );
43 $this->
addOption(
'new',
'Rew value to update users with',
false,
true );
44 $this->
addOption(
'nowarn',
'Hides the 5 seconds warning' );
45 $this->
addOption(
'dry',
'Do not save user settings back to database' );
46 $this->
addArg(
'option name',
'Name of the option to change or provide statistics about',
false );
55 } elseif ( $this->
hasOption(
'usage' ) ) {
74 foreach ( $def as $opt => $value ) {
75 $maxOpt = max( $maxOpt, strlen( $opt ) );
77 foreach ( $def as $opt => $value ) {
78 $this->
output( sprintf(
"%-{$maxOpt}s: %s\n", $opt, $value ) );
86 $option = $this->
getArg( 0 );
93 $result =
$dbr->select(
'user',
99 foreach ( $result as $id ) {
104 if ( !array_key_exists( $option, $defaultOptions ) ) {
105 $this->
fatalError(
"Invalid user option. Use --list to see valid choices\n" );
108 $userValue = $user->getOption( $option );
109 if ( $userValue <> $defaultOptions[$option] ) {
110 $ret[$option][$userValue] = ( $ret[$option][$userValue] ?? 0 ) + 1;
113 foreach ( $defaultOptions as $name => $defaultValue ) {
114 $userValue = $user->getOption( $name );
115 if ( $userValue != $defaultValue ) {
116 $ret[$name][$userValue] = ( $ret[$name][$userValue] ?? 0 ) + 1;
122 foreach ( $ret as $optionName => $usageStats ) {
123 $this->
output(
"Usage for <$optionName> (default: '{$defaultOptions[$optionName]}'):\n" );
124 foreach ( $usageStats as $value => $count ) {
125 $this->
output(
" $count user(s): '$value'\n" );
136 $option = $this->
getArg( 0 );
141 $this->
warn( $option, $from, $to );
147 $result =
$dbr->select(
'user',
153 foreach ( $result as $id ) {
156 $curValue = $user->getOption( $option );
157 $username = $user->getName();
159 if ( $curValue == $from ) {
160 $this->
output(
"Setting {$option} for $username from '{$from}' to '{$to}'): " );
163 $user->setOption( $option, $to );
167 $user->saveSettings();
171 $this->
output(
"Not changing '$username' using <{$option}> = '$curValue'\n" );
183 private function warn( $option, $from, $to ) {
189The script is about to change the options
for ALL USERS in the database.
190Users with option <$option> =
'$from' will be made to use
'$to'.
192Abort with control-c in the next five seconds....
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
const RUN_MAINTENANCE_IF_MAIN
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
addArg( $arg, $description, $required=true)
Add some args that are needed.
output( $out, $channel=null)
Throw some output to the user.
hasArg( $argId=0)
Does a given argument exist?
hasOption( $name)
Checks to see if a particular option exists.
countDown( $seconds)
Count down from $seconds to zero on the terminal, with a one-second pause between showing each number...
getArg( $argId=0, $default=null)
Get an argument.
addDescription( $text)
Set the description text.
maybeHelp( $force=false)
Maybe show the help.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
execute()
Do the actual work.
updateOptions()
Change our users options.
warn( $option, $from, $to)
The warning message and countdown.
showUsageStats()
List options usage.
__construct()
Default constructor.
listAvailableOptions()
List default options and their value.
static newFromId( $id)
Static factory method for creation from a given user ID.
static getDefaultOptions()
Combine the language default options with any site-specific options and add the default language vari...
while(( $__line=Maintenance::readconsole()) !==false) print