3 * Import pages from text files
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup Maintenance
24 use MediaWiki\MediaWikiServices
;
26 require_once __DIR__
. '/Maintenance.php';
29 * Maintenance script which reads in text files
30 * and imports their content to a page of the wiki.
32 * @ingroup Maintenance
34 class ImportTextFiles
extends Maintenance
{
35 public function __construct() {
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' );
51 public function execute() {
52 $userName = $this->getOption( 'user', false );
53 $summary = $this->getOption( 'summary', 'Imported from text file' );
54 $useTimestamp = $this->hasOption( 'use-timestamp' );
55 $rc = $this->hasOption( 'rc' );
56 $bot = $this->hasOption( 'bot' );
57 $overwrite = $this->hasOption( 'overwrite' );
58 $prefix = $this->getOption( 'prefix', '' );
60 // Get all the arguments. A loop is required since Maintenance doesn't
61 // support an arbitrary number of arguments.
64 while ( $arg = $this->getArg( $i++
) ) {
65 if ( file_exists( $arg ) ) {
66 $files[$arg] = file_get_contents( $arg );
68 // use glob to support the Windows shell, which doesn't automatically
71 foreach ( glob( $arg ) as $filename ) {
73 $files[$filename] = file_get_contents( $filename );
76 $this->error( "Fatal error: The file '$arg' does not exist!", 1 );
81 $count = count( $files );
82 $this->output( "Importing $count pages...\n" );
84 if ( $userName === false ) {
85 $user = User
::newSystemUser( 'Maintenance script', [ 'steal' => true ] );
87 $user = User
::newFromName( $userName );
91 $this->error( "Invalid username\n", true );
93 if ( $user->isAnon() ) {
94 $user->addToDatabase();
103 foreach ( $files as $file => $text ) {
104 $pageName = $prefix . pathinfo( $file, PATHINFO_FILENAME
);
105 $timestamp = $useTimestamp ?
wfTimestamp( TS_UNIX
, filemtime( $file ) ) : wfTimestampNow();
107 $title = Title
::newFromText( $pageName );
108 // Have to check for # manually, since it gets interpreted as a fragment
109 if ( !$title ||
$title->hasFragment() ) {
110 $this->error( "Invalid title $pageName. Skipping.\n" );
115 $exists = $title->exists();
116 $oldRevID = $title->getLatestRevID();
117 $oldRev = $oldRevID ? Revision
::newFromId( $oldRevID ) : null;
118 $actualTitle = $title->getPrefixedText();
121 $touched = wfTimestamp( TS_UNIX
, $title->getTouched() );
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 ) );
136 $rev->setTitle( $title );
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" );
162 // Create the RecentChanges entry if necessary
163 if ( $rc && $status ) {
165 if ( is_object( $oldRev ) ) {
166 $oldContent = $oldRev->getContent();
167 RecentChange
::notifyEdit(
174 $oldRev->getTimestamp(),
177 $oldContent ?
$oldContent->getSize() : 0,
178 $rev->getContent()->getSize(),
180 1 /* the pages don't need to be patrolled */
184 RecentChange
::notifyNew(
192 $rev->getContent()->getSize(),
200 $this->output( "Done! $successCount succeeded, $skipCount skipped.\n" );
202 $this->error( "Import failed with $failCount failed pages.\n", $exit );
207 $maintClass = "ImportTextFiles";
208 require_once RUN_MAINTENANCE_IF_MAIN
;