wiki.techinc.nl/maintenance/edit.php
Tim Starling 95e847e5b5 Re r41198: if you're going to break the interface, you may as well do it properly. Rather than Article::doEdit() returning some random fragment of data that your current application requires, how about we have it return a general, extensible object?
Also:
* Fixed EDIT_NEW on existing article to return an error status instead of throw a DB exception
* Fixed a bug dating from MW 1.5 whereby there's a short interval where an edit conflict can be missed, and an edit overwritten. See comment before updateRevisionOn() call.
* Reduced some indenting levels using early returns
2008-09-25 10:15:19 +00:00

77 lines
1.6 KiB
PHP

<?php
/**
* @file
* @ingroup Maintenance
*/
$optionsWithArgs = array( 'u', 's' );
require_once( 'commandLine.inc' );
if ( count( $args ) == 0 || isset( $options['help'] ) ) {
print <<<EOT
Edit an article from the command line
Usage: php edit.php [options...] <title>
Options:
-u <user> Username
-s <summary> Edit summary
-m Minor edit
-b Bot (hidden) edit
-a Enable autosummary
--no-rc Do not show the change in recent changes
If the specified user does not exist, it will be created.
The text for the edit will be read from stdin.
EOT;
exit( 1 );
}
$userName = isset( $options['u'] ) ? $options['u'] : 'Maintenance script';
$summary = isset( $options['s'] ) ? $options['s'] : '';
$minor = isset( $options['m'] );
$bot = isset( $options['b'] );
$autoSummary = isset( $options['a'] );
$noRC = isset( $options['no-rc'] );
$wgUser = User::newFromName( $userName );
if ( !$wgUser ) {
print "Invalid username\n";
exit( 1 );
}
if ( $wgUser->isAnon() ) {
$wgUser->addToDatabase();
}
$wgTitle = Title::newFromText( $args[0] );
if ( !$wgTitle ) {
print "Invalid title\n";
exit( 1 );
}
$wgArticle = new Article( $wgTitle );
# Read the text
$text = file_get_contents( 'php://stdin' );
# Do the edit
print "Saving... ";
$status = $wgArticle->doEdit( $text, $summary,
( $minor ? EDIT_MINOR : 0 ) |
( $bot ? EDIT_FORCE_BOT : 0 ) |
( $autoSummary ? EDIT_AUTOSUMMARY : 0 ) |
( $noRC ? EDIT_SUPPRESS_RC : 0 ) );
if ( $status->isOK() ) {
print "done\n";
$exit = 0;
} else {
print "failed\n";
$exit = 1;
}
if ( !$status->isGood() ) {
print $status->getWikiText() . "\n";
}
exit( $exit );