Go to the documentation of this file.
26 require_once __DIR__ .
'/Maintenance.php';
36 parent::__construct();
37 $this->
addDescription(
'Reads in text files and imports their content to pages of the wiki' );
38 $this->
addOption(
'user',
'Username to which edits should be attributed. ' .
39 'Default: "Maintenance script"',
false,
true,
'u' );
40 $this->
addOption(
'summary',
'Specify edit summary for the edits',
false,
true,
's' );
41 $this->
addOption(
'use-timestamp',
'Use the modification date of the text file ' .
42 'as the timestamp for the edit' );
43 $this->
addOption(
'overwrite',
'Overwrite existing pages. If --use-timestamp is passed, this ' .
44 'will only overwrite pages if the file has been modified since the page was last modified.' );
45 $this->
addOption(
'prefix',
'A string to place in front of the file name',
false,
true,
'p' );
46 $this->
addOption(
'bot',
'Mark edits as bot edits in the recent changes list.' );
47 $this->
addOption(
'rc',
'Place revisions in RecentChanges.' );
48 $this->
addArg(
'files',
'Files to import' );
52 $userName = $this->
getOption(
'user',
false );
53 $summary = $this->
getOption(
'summary',
'Imported from text file' );
54 $useTimestamp = $this->
hasOption(
'use-timestamp' );
57 $overwrite = $this->
hasOption(
'overwrite' );
58 $prefix = $this->
getOption(
'prefix',
'' );
64 while ( $arg = $this->
getArg( $i++ ) ) {
65 if ( file_exists( $arg ) ) {
66 $files[$arg] = file_get_contents( $arg );
71 foreach ( glob( $arg ) as $filename ) {
73 $files[$filename] = file_get_contents( $filename );
76 $this->
fatalError(
"Fatal error: The file '$arg' does not exist!" );
81 $count = count( $files );
82 $this->
output(
"Importing $count pages...\n" );
84 if ( $userName ===
false ) {
93 if ( $user->isAnon() ) {
94 $user->addToDatabase();
103 foreach ( $files as
$file => $text ) {
104 $pageName = $prefix . pathinfo(
$file, PATHINFO_FILENAME );
110 $this->
error(
"Invalid title $pageName. Skipping.\n" );
115 $exists =
$title->exists();
116 $oldRevID =
$title->getLatestRevID();
118 $actualTitle =
$title->getPrefixedText();
123 $this->
output(
"Title $actualTitle already exists. Skipping.\n" );
126 } elseif ( $useTimestamp && intval( $touched ) >= intval( $timestamp ) ) {
127 $this->
output(
"File for title $actualTitle has not been modified since the " .
128 "destination page was touched. Skipping.\n" );
134 $rev =
new WikiRevision( MediaWikiServices::getInstance()->getMainConfig() );
135 $rev->setText( rtrim( $text ) );
137 $rev->setUserObj( $user );
138 $rev->setComment( $summary );
139 $rev->setTimestamp( $timestamp );
141 if ( $exists && $overwrite && $rev->getContent()->equals( $oldRev->getContent() ) ) {
142 $this->
output(
"File for title $actualTitle contains no changes from the current " .
143 "revision. Skipping.\n" );
148 $status = $rev->importOldRevision();
149 $newId =
$title->getLatestRevID();
152 $action = $exists ?
'updated' :
'created';
153 $this->
output(
"Successfully $action $actualTitle\n" );
156 $action = $exists ?
'update' :
'create';
157 $this->
output(
"Failed to $action $actualTitle\n" );
165 if ( is_object( $oldRev ) ) {
166 $oldContent = $oldRev->getContent();
174 $oldRev->getTimestamp(),
177 $oldContent ? $oldContent->getSize() : 0,
178 $rev->getContent()->getSize(),
192 $rev->getContent()->getSize(),
200 $this->
output(
"Done! $successCount succeeded, $skipCount skipped.\n" );
202 $this->
fatalError(
"Import failed with $failCount failed pages.\n", $exit );
const RUN_MAINTENANCE_IF_MAIN
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
static newFromId( $id, $flags=0)
Load a page revision from a given revision ID number.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
addDescription( $text)
Set the description text.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Item class for a filearchive table row.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
static newSystemUser( $name, $options=[])
Static factory method for creation of a "system" user from username.
__construct()
Default constructor.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
static notifyEdit( $timestamp, $title, $minor, $user, $comment, $oldId, $lastTimestamp, $bot, $ip='', $oldSize=0, $newSize=0, $newId=0, $patrol=0, $tags=[])
Makes an entry in the database corresponding to an edit.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
Maintenance script which reads in text files and imports their content to a page of the wiki.
getOption( $name, $default=null)
Get an option, or return the default.
Represents a revision, log entry or upload during the import process.
static notifyNew( $timestamp, $title, $minor, $user, $comment, $bot, $ip='', $size=0, $newId=0, $patrol=0, $tags=[])
Makes an entry in the database corresponding to page creation Note: the title object must be loaded w...
addArg( $arg, $description, $required=true)
Add some args that are needed.
execute()
Do the actual work.
error( $err, $die=0)
Throw an error to the user.
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular option exists.
getArg( $argId=0, $default=null)
Get an argument.