blob: 037f9a9aeac2760f7b64a98fff224a44cc915036 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<?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... ";
$success = $wgArticle->doEdit( $text, $summary,
( $minor ? EDIT_MINOR : 0 ) |
( $bot ? EDIT_FORCE_BOT : 0 ) |
( $autoSummary ? EDIT_AUTOSUMMARY : 0 ) |
( $noRC ? EDIT_SUPPRESS_RC : 0 ) );
if ( $success ) {
print "done\n";
} else {
print "failed\n";
exit( 1 );
}
|