27require_once __DIR__ .
'/Maintenance.php';
36 parent::__construct();
37 $this->
addDescription(
'Edit an article from the command line, text is from stdin' );
38 $this->
addOption(
'user',
'Username',
false,
true,
'u' );
39 $this->
addOption(
'summary',
'Edit summary',
false,
true,
's' );
40 $this->
addOption(
'remove',
'Remove a slot (requires --slot).',
false,
false );
41 $this->
addOption(
'minor',
'Minor edit',
false,
false,
'm' );
42 $this->
addOption(
'bot',
'Bot edit',
false,
false,
'b' );
43 $this->
addOption(
'autosummary',
'Enable autosummary',
false,
false,
'a' );
44 $this->
addOption(
'no-rc',
'Do not show the change in recent changes',
false,
false,
'r' );
45 $this->
addOption(
'nocreate',
'Don\'t create new pages',
false,
false );
46 $this->
addOption(
'createonly',
'Only create new pages',
false,
false );
47 $this->
addOption(
'slot',
'Slot role name',
false,
true );
50 'Parse title input as a message, e.g. "{{int:mainpage}}" or "News_{{CURRENTYEAR}}',
53 $this->
addArg(
'title',
'Title of article to edit' );
57 $userName = $this->
getOption(
'user',
false );
58 $summary = $this->
getOption(
'summary',
'' );
62 $autoSummary = $this->
hasOption(
'autosummary' );
64 $slot = $this->
getOption(
'slot', SlotRecord::MAIN );
66 if ( $userName ===
false ) {
74 if ( $user->isAnon() ) {
75 $user->addToDatabase();
79 $titleInput = $this->
getArg( 0 );
81 if ( $this->
hasOption(
'parse-title' ) ) {
82 $titleInput = (
new RawMessage(
'$1' ) )->params( $titleInput )->text();
85 $title = Title::newFromText( $titleInput );
96 $page = MediaWikiServices::getInstance()->getWikiPageFactory()->newFromTitle(
$title );
99 if ( $slot === SlotRecord::MAIN ) {
100 $this->
fatalError(
"Cannot remove main slot! Use --slot to specify." );
111 $this->
output(
"Saving..." );
112 $updater = $page->newPageUpdater( $user );
120 $updater->removeSlot( $slot );
122 $updater->setContent( $slot,
$content );
125 $updater->saveRevision( CommentStoreComment::newUnsavedComment( $summary ), $flags );
126 $status = $updater->getStatus();
128 if ( $status->isOK() ) {
129 $this->
output(
"done\n" );
131 $this->
output(
"failed\n" );
133 if ( !$status->isGood() ) {
134 $this->
output( $status->getMessage(
false,
false,
'en' )->text() .
"\n" );
136 return $status->isOK();
141require_once RUN_MAINTENANCE_IF_MAIN;
Maintenance script to make a page edit.
__construct()
Default constructor.
execute()
Do the actual work.
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.
getStdin( $len=null)
Return input from stdin.
hasOption( $name)
Checks to see if a particular option was set.
getArg( $argId=0, $default=null)
Get an argument.
addDescription( $text)
Set the description text.
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.
Variant of the Message class.
static setUser( $user)
Reset the stub global user to a different "real" user object, while ensuring that any method calls on...
static newFromName( $name, $validate='valid')
static newSystemUser( $name, $options=[])
Static factory method for creation of a "system" user from username.
const MAINTENANCE_SCRIPT_USER
Username used for various maintenance scripts.