MediaWiki  1.29.1
edit.php
Go to the documentation of this file.
1 <?php
24 require_once __DIR__ . '/Maintenance.php';
25 
31 class EditCLI extends Maintenance {
32  public function __construct() {
33  parent::__construct();
34  $this->addDescription( 'Edit an article from the command line, text is from stdin' );
35  $this->addOption( 'user', 'Username', false, true, 'u' );
36  $this->addOption( 'summary', 'Edit summary', false, true, 's' );
37  $this->addOption( 'minor', 'Minor edit', false, false, 'm' );
38  $this->addOption( 'bot', 'Bot edit', false, false, 'b' );
39  $this->addOption( 'autosummary', 'Enable autosummary', false, false, 'a' );
40  $this->addOption( 'no-rc', 'Do not show the change in recent changes', false, false, 'r' );
41  $this->addOption( 'nocreate', 'Don\'t create new pages', false, false );
42  $this->addOption( 'createonly', 'Only create new pages', false, false );
43  $this->addArg( 'title', 'Title of article to edit' );
44  }
45 
46  public function execute() {
48 
49  $userName = $this->getOption( 'user', false );
50  $summary = $this->getOption( 'summary', '' );
51  $minor = $this->hasOption( 'minor' );
52  $bot = $this->hasOption( 'bot' );
53  $autoSummary = $this->hasOption( 'autosummary' );
54  $noRC = $this->hasOption( 'no-rc' );
55 
56  if ( $userName === false ) {
57  $wgUser = User::newSystemUser( 'Maintenance script', [ 'steal' => true ] );
58  } else {
59  $wgUser = User::newFromName( $userName );
60  }
61  if ( !$wgUser ) {
62  $this->error( "Invalid username", true );
63  }
64  if ( $wgUser->isAnon() ) {
65  $wgUser->addToDatabase();
66  }
67 
68  $title = Title::newFromText( $this->getArg() );
69  if ( !$title ) {
70  $this->error( "Invalid title", true );
71  }
72 
73  if ( $this->hasOption( 'nocreate' ) && !$title->exists() ) {
74  $this->error( "Page does not exist", true );
75  } elseif ( $this->hasOption( 'createonly' ) && $title->exists() ) {
76  $this->error( "Page already exists", true );
77  }
78 
80 
81  # Read the text
82  $text = $this->getStdin( Maintenance::STDIN_ALL );
84 
85  # Do the edit
86  $this->output( "Saving... " );
87  $status = $page->doEditContent( $content, $summary,
88  ( $minor ? EDIT_MINOR : 0 ) |
89  ( $bot ? EDIT_FORCE_BOT : 0 ) |
90  ( $autoSummary ? EDIT_AUTOSUMMARY : 0 ) |
91  ( $noRC ? EDIT_SUPPRESS_RC : 0 ) );
92  if ( $status->isOK() ) {
93  $this->output( "done\n" );
94  $exit = 0;
95  } else {
96  $this->output( "failed\n" );
97  $exit = 1;
98  }
99  if ( !$status->isGood() ) {
100  $this->output( $status->getWikiText( false, false, 'en' ) . "\n" );
101  }
102  exit( $exit );
103  }
104 }
105 
106 $maintClass = "EditCLI";
107 require_once RUN_MAINTENANCE_IF_MAIN;
$wgUser
$wgUser
Definition: Setup.php:781
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:265
$maintClass
$maintClass
Definition: edit.php:106
Maintenance\getStdin
getStdin( $len=null)
Return input from stdin.
Definition: Maintenance.php:346
EDIT_FORCE_BOT
const EDIT_FORCE_BOT
Definition: Defines.php:154
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:287
$status
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1049
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:556
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
php
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
Definition: injection.txt:35
User\newSystemUser
static newSystemUser( $name, $options=[])
Static factory method for creation of a "system" user from username.
Definition: User.php:684
EditCLI\__construct
__construct()
Default constructor.
Definition: edit.php:32
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
WikiPage\factory
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:120
$content
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content $content
Definition: hooks.txt:1049
$page
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition: hooks.txt:2536
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:215
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
ContentHandler\makeContent
static makeContent( $text, Title $title=null, $modelId=null, $format=null)
Convenience function for creating a Content object from a given textual representation.
Definition: ContentHandler.php:129
EditCLI
Maintenance script to make a page edit.
Definition: edit.php:31
EDIT_AUTOSUMMARY
const EDIT_AUTOSUMMARY
Definition: Defines.php:156
Maintenance\getOption
getOption( $name, $default=null)
Get an option, or return the default.
Definition: Maintenance.php:250
Maintenance\STDIN_ALL
const STDIN_ALL
Definition: Maintenance.php:67
Maintenance\addArg
addArg( $arg, $description, $required=true)
Add some args that are needed.
Definition: Maintenance.php:267
Maintenance\error
error( $err, $die=0)
Throw an error to the user.
Definition: Maintenance.php:392
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:373
EDIT_MINOR
const EDIT_MINOR
Definition: Defines.php:152
EDIT_SUPPRESS_RC
const EDIT_SUPPRESS_RC
Definition: Defines.php:153
Maintenance\hasOption
hasOption( $name)
Checks to see if a particular param exists.
Definition: Maintenance.php:236
Maintenance\getArg
getArg( $argId=0, $default=null)
Get an argument.
Definition: Maintenance.php:306
EditCLI\execute
execute()
Do the actual work.
Definition: edit.php:46