In ApiMain, gather Vary headers in OutputPage
[lhc/web/wiklou.git] / includes / Import.php
1 <?php
2 /**
3 * MediaWiki page data importer
4 *
5 * Copyright © 2003,2005 Brion Vibber <brion@pobox.com>
6 * http://www.mediawiki.org/
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 * @ingroup SpecialPage
25 */
26
27 /**
28 * XML file reader for the page data importer
29 *
30 * implements Special:Import
31 * @ingroup SpecialPage
32 */
33 class WikiImporter {
34 private $reader = null;
35 private $mLogItemCallback, $mUploadCallback, $mRevisionCallback, $mPageCallback;
36 private $mSiteInfoCallback, $mTargetNamespace, $mPageOutCallback;
37 private $mNoticeCallback, $mDebug;
38 private $mImportUploads, $mImageBasePath;
39 private $mNoUpdates = false;
40
41 /**
42 * Creates an ImportXMLReader drawing from the source provided
43 * @param $source
44 */
45 function __construct( $source ) {
46 $this->reader = new XMLReader();
47
48 stream_wrapper_register( 'uploadsource', 'UploadSourceAdapter' );
49 $id = UploadSourceAdapter::registerSource( $source );
50 if (defined( 'LIBXML_PARSEHUGE' ) ) {
51 $this->reader->open( "uploadsource://$id", null, LIBXML_PARSEHUGE );
52 } else {
53 $this->reader->open( "uploadsource://$id" );
54 }
55
56 // Default callbacks
57 $this->setRevisionCallback( array( $this, "importRevision" ) );
58 $this->setUploadCallback( array( $this, 'importUpload' ) );
59 $this->setLogItemCallback( array( $this, 'importLogItem' ) );
60 $this->setPageOutCallback( array( $this, 'finishImportPage' ) );
61 }
62
63 private function throwXmlError( $err ) {
64 $this->debug( "FAILURE: $err" );
65 wfDebug( "WikiImporter XML error: $err\n" );
66 }
67
68 private function debug( $data ) {
69 if( $this->mDebug ) {
70 wfDebug( "IMPORT: $data\n" );
71 }
72 }
73
74 private function warn( $data ) {
75 wfDebug( "IMPORT: $data\n" );
76 }
77
78 private function notice( $msg /*, $param, ...*/ ) {
79 $params = func_get_args();
80 array_shift( $params );
81
82 if ( is_callable( $this->mNoticeCallback ) ) {
83 call_user_func( $this->mNoticeCallback, $msg, $params );
84 } else { # No ImportReporter -> CLI
85 echo wfMessage( $msg, $params )->text() . "\n";
86 }
87 }
88
89 /**
90 * Set debug mode...
91 * @param $debug bool
92 */
93 function setDebug( $debug ) {
94 $this->mDebug = $debug;
95 }
96
97 /**
98 * Set 'no updates' mode. In this mode, the link tables will not be updated by the importer
99 * @param $noupdates bool
100 */
101 function setNoUpdates( $noupdates ) {
102 $this->mNoUpdates = $noupdates;
103 }
104
105 /**
106 * Set a callback that displays notice messages
107 *
108 * @param $callback callback
109 * @return callback
110 */
111 public function setNoticeCallback( $callback ) {
112 return wfSetVar( $this->mNoticeCallback, $callback );
113 }
114
115 /**
116 * Sets the action to perform as each new page in the stream is reached.
117 * @param $callback callback
118 * @return callback
119 */
120 public function setPageCallback( $callback ) {
121 $previous = $this->mPageCallback;
122 $this->mPageCallback = $callback;
123 return $previous;
124 }
125
126 /**
127 * Sets the action to perform as each page in the stream is completed.
128 * Callback accepts the page title (as a Title object), a second object
129 * with the original title form (in case it's been overridden into a
130 * local namespace), and a count of revisions.
131 *
132 * @param $callback callback
133 * @return callback
134 */
135 public function setPageOutCallback( $callback ) {
136 $previous = $this->mPageOutCallback;
137 $this->mPageOutCallback = $callback;
138 return $previous;
139 }
140
141 /**
142 * Sets the action to perform as each page revision is reached.
143 * @param $callback callback
144 * @return callback
145 */
146 public function setRevisionCallback( $callback ) {
147 $previous = $this->mRevisionCallback;
148 $this->mRevisionCallback = $callback;
149 return $previous;
150 }
151
152 /**
153 * Sets the action to perform as each file upload version is reached.
154 * @param $callback callback
155 * @return callback
156 */
157 public function setUploadCallback( $callback ) {
158 $previous = $this->mUploadCallback;
159 $this->mUploadCallback = $callback;
160 return $previous;
161 }
162
163 /**
164 * Sets the action to perform as each log item reached.
165 * @param $callback callback
166 * @return callback
167 */
168 public function setLogItemCallback( $callback ) {
169 $previous = $this->mLogItemCallback;
170 $this->mLogItemCallback = $callback;
171 return $previous;
172 }
173
174 /**
175 * Sets the action to perform when site info is encountered
176 * @param $callback callback
177 * @return callback
178 */
179 public function setSiteInfoCallback( $callback ) {
180 $previous = $this->mSiteInfoCallback;
181 $this->mSiteInfoCallback = $callback;
182 return $previous;
183 }
184
185 /**
186 * Set a target namespace to override the defaults
187 * @param $namespace
188 * @return bool
189 */
190 public function setTargetNamespace( $namespace ) {
191 if( is_null( $namespace ) ) {
192 // Don't override namespaces
193 $this->mTargetNamespace = null;
194 } elseif( $namespace >= 0 ) {
195 // @todo FIXME: Check for validity
196 $this->mTargetNamespace = intval( $namespace );
197 } else {
198 return false;
199 }
200 }
201
202 /**
203 * @param $dir
204 */
205 public function setImageBasePath( $dir ) {
206 $this->mImageBasePath = $dir;
207 }
208
209 /**
210 * @param $import
211 */
212 public function setImportUploads( $import ) {
213 $this->mImportUploads = $import;
214 }
215
216 /**
217 * Default per-revision callback, performs the import.
218 * @param $revision WikiRevision
219 * @return bool
220 */
221 public function importRevision( $revision ) {
222 $dbw = wfGetDB( DB_MASTER );
223 return $dbw->deadlockLoop( array( $revision, 'importOldRevision' ) );
224 }
225
226 /**
227 * Default per-revision callback, performs the import.
228 * @param $rev WikiRevision
229 * @return bool
230 */
231 public function importLogItem( $rev ) {
232 $dbw = wfGetDB( DB_MASTER );
233 return $dbw->deadlockLoop( array( $rev, 'importLogItem' ) );
234 }
235
236 /**
237 * Dummy for now...
238 * @param $revision
239 * @return bool
240 */
241 public function importUpload( $revision ) {
242 $dbw = wfGetDB( DB_MASTER );
243 return $dbw->deadlockLoop( array( $revision, 'importUpload' ) );
244 }
245
246 /**
247 * Mostly for hook use
248 * @param $title
249 * @param $origTitle
250 * @param $revCount
251 * @param $sRevCount
252 * @param $pageInfo
253 * @return
254 */
255 public function finishImportPage( $title, $origTitle, $revCount, $sRevCount, $pageInfo ) {
256 $args = func_get_args();
257 return wfRunHooks( 'AfterImportPage', $args );
258 }
259
260 /**
261 * Alternate per-revision callback, for debugging.
262 * @param $revision WikiRevision
263 */
264 public function debugRevisionHandler( &$revision ) {
265 $this->debug( "Got revision:" );
266 if( is_object( $revision->title ) ) {
267 $this->debug( "-- Title: " . $revision->title->getPrefixedText() );
268 } else {
269 $this->debug( "-- Title: <invalid>" );
270 }
271 $this->debug( "-- User: " . $revision->user_text );
272 $this->debug( "-- Timestamp: " . $revision->timestamp );
273 $this->debug( "-- Comment: " . $revision->comment );
274 $this->debug( "-- Text: " . $revision->text );
275 }
276
277 /**
278 * Notify the callback function when a new <page> is reached.
279 * @param $title Title
280 */
281 function pageCallback( $title ) {
282 if( isset( $this->mPageCallback ) ) {
283 call_user_func( $this->mPageCallback, $title );
284 }
285 }
286
287 /**
288 * Notify the callback function when a </page> is closed.
289 * @param $title Title
290 * @param $origTitle Title
291 * @param $revCount Integer
292 * @param $sucCount Int: number of revisions for which callback returned true
293 * @param $pageInfo Array: associative array of page information
294 */
295 private function pageOutCallback( $title, $origTitle, $revCount, $sucCount, $pageInfo ) {
296 if( isset( $this->mPageOutCallback ) ) {
297 $args = func_get_args();
298 call_user_func_array( $this->mPageOutCallback, $args );
299 }
300 }
301
302 /**
303 * Notify the callback function of a revision
304 * @param $revision WikiRevision object
305 * @return bool|mixed
306 */
307 private function revisionCallback( $revision ) {
308 if ( isset( $this->mRevisionCallback ) ) {
309 return call_user_func_array( $this->mRevisionCallback,
310 array( $revision, $this ) );
311 } else {
312 return false;
313 }
314 }
315
316 /**
317 * Notify the callback function of a new log item
318 * @param $revision WikiRevision object
319 * @return bool|mixed
320 */
321 private function logItemCallback( $revision ) {
322 if ( isset( $this->mLogItemCallback ) ) {
323 return call_user_func_array( $this->mLogItemCallback,
324 array( $revision, $this ) );
325 } else {
326 return false;
327 }
328 }
329
330 /**
331 * Shouldn't something like this be built-in to XMLReader?
332 * Fetches text contents of the current element, assuming
333 * no sub-elements or such scary things.
334 * @return string
335 * @access private
336 */
337 private function nodeContents() {
338 if( $this->reader->isEmptyElement ) {
339 return "";
340 }
341 $buffer = "";
342 while( $this->reader->read() ) {
343 switch( $this->reader->nodeType ) {
344 case XmlReader::TEXT:
345 case XmlReader::SIGNIFICANT_WHITESPACE:
346 $buffer .= $this->reader->value;
347 break;
348 case XmlReader::END_ELEMENT:
349 return $buffer;
350 }
351 }
352
353 $this->reader->close();
354 return '';
355 }
356
357 # --------------
358
359 /** Left in for debugging */
360 private function dumpElement() {
361 static $lookup = null;
362 if (!$lookup) {
363 $xmlReaderConstants = array(
364 "NONE",
365 "ELEMENT",
366 "ATTRIBUTE",
367 "TEXT",
368 "CDATA",
369 "ENTITY_REF",
370 "ENTITY",
371 "PI",
372 "COMMENT",
373 "DOC",
374 "DOC_TYPE",
375 "DOC_FRAGMENT",
376 "NOTATION",
377 "WHITESPACE",
378 "SIGNIFICANT_WHITESPACE",
379 "END_ELEMENT",
380 "END_ENTITY",
381 "XML_DECLARATION",
382 );
383 $lookup = array();
384
385 foreach( $xmlReaderConstants as $name ) {
386 $lookup[constant("XmlReader::$name")] = $name;
387 }
388 }
389
390 print( var_dump(
391 $lookup[$this->reader->nodeType],
392 $this->reader->name,
393 $this->reader->value
394 )."\n\n" );
395 }
396
397 /**
398 * Primary entry point
399 * @return bool
400 */
401 public function doImport() {
402 $this->reader->read();
403
404 if ( $this->reader->name != 'mediawiki' ) {
405 throw new MWException( "Expected <mediawiki> tag, got ".
406 $this->reader->name );
407 }
408 $this->debug( "<mediawiki> tag is correct." );
409
410 $this->debug( "Starting primary dump processing loop." );
411
412 $keepReading = $this->reader->read();
413 $skip = false;
414 while ( $keepReading ) {
415 $tag = $this->reader->name;
416 $type = $this->reader->nodeType;
417
418 if ( !wfRunHooks( 'ImportHandleToplevelXMLTag', $this ) ) {
419 // Do nothing
420 } elseif ( $tag == 'mediawiki' && $type == XmlReader::END_ELEMENT ) {
421 break;
422 } elseif ( $tag == 'siteinfo' ) {
423 $this->handleSiteInfo();
424 } elseif ( $tag == 'page' ) {
425 $this->handlePage();
426 } elseif ( $tag == 'logitem' ) {
427 $this->handleLogItem();
428 } elseif ( $tag != '#text' ) {
429 $this->warn( "Unhandled top-level XML tag $tag" );
430
431 $skip = true;
432 }
433
434 if ($skip) {
435 $keepReading = $this->reader->next();
436 $skip = false;
437 $this->debug( "Skip" );
438 } else {
439 $keepReading = $this->reader->read();
440 }
441 }
442
443 return true;
444 }
445
446 /**
447 * @return bool
448 * @throws MWException
449 */
450 private function handleSiteInfo() {
451 // Site info is useful, but not actually used for dump imports.
452 // Includes a quick short-circuit to save performance.
453 if ( ! $this->mSiteInfoCallback ) {
454 $this->reader->next();
455 return true;
456 }
457 throw new MWException( "SiteInfo tag is not yet handled, do not set mSiteInfoCallback" );
458 }
459
460 private function handleLogItem() {
461 $this->debug( "Enter log item handler." );
462 $logInfo = array();
463
464 // Fields that can just be stuffed in the pageInfo object
465 $normalFields = array( 'id', 'comment', 'type', 'action', 'timestamp',
466 'logtitle', 'params' );
467
468 while ( $this->reader->read() ) {
469 if ( $this->reader->nodeType == XmlReader::END_ELEMENT &&
470 $this->reader->name == 'logitem') {
471 break;
472 }
473
474 $tag = $this->reader->name;
475
476 if ( !wfRunHooks( 'ImportHandleLogItemXMLTag',
477 $this, $logInfo ) ) {
478 // Do nothing
479 } elseif ( in_array( $tag, $normalFields ) ) {
480 $logInfo[$tag] = $this->nodeContents();
481 } elseif ( $tag == 'contributor' ) {
482 $logInfo['contributor'] = $this->handleContributor();
483 } elseif ( $tag != '#text' ) {
484 $this->warn( "Unhandled log-item XML tag $tag" );
485 }
486 }
487
488 $this->processLogItem( $logInfo );
489 }
490
491 /**
492 * @param $logInfo
493 * @return bool|mixed
494 */
495 private function processLogItem( $logInfo ) {
496 $revision = new WikiRevision;
497
498 $revision->setID( $logInfo['id'] );
499 $revision->setType( $logInfo['type'] );
500 $revision->setAction( $logInfo['action'] );
501 $revision->setTimestamp( $logInfo['timestamp'] );
502 $revision->setParams( $logInfo['params'] );
503 $revision->setTitle( Title::newFromText( $logInfo['logtitle'] ) );
504 $revision->setNoUpdates( $this->mNoUpdates );
505
506 if ( isset( $logInfo['comment'] ) ) {
507 $revision->setComment( $logInfo['comment'] );
508 }
509
510 if ( isset( $logInfo['contributor']['ip'] ) ) {
511 $revision->setUserIP( $logInfo['contributor']['ip'] );
512 }
513 if ( isset( $logInfo['contributor']['username'] ) ) {
514 $revision->setUserName( $logInfo['contributor']['username'] );
515 }
516
517 return $this->logItemCallback( $revision );
518 }
519
520 private function handlePage() {
521 // Handle page data.
522 $this->debug( "Enter page handler." );
523 $pageInfo = array( 'revisionCount' => 0, 'successfulRevisionCount' => 0 );
524
525 // Fields that can just be stuffed in the pageInfo object
526 $normalFields = array( 'title', 'id', 'redirect', 'restrictions' );
527
528 $skip = false;
529 $badTitle = false;
530
531 while ( $skip ? $this->reader->next() : $this->reader->read() ) {
532 if ( $this->reader->nodeType == XmlReader::END_ELEMENT &&
533 $this->reader->name == 'page') {
534 break;
535 }
536
537 $tag = $this->reader->name;
538
539 if ( $badTitle ) {
540 // The title is invalid, bail out of this page
541 $skip = true;
542 } elseif ( !wfRunHooks( 'ImportHandlePageXMLTag', array( $this,
543 &$pageInfo ) ) ) {
544 // Do nothing
545 } elseif ( in_array( $tag, $normalFields ) ) {
546 $pageInfo[$tag] = $this->nodeContents();
547 if ( $tag == 'title' ) {
548 $title = $this->processTitle( $pageInfo['title'] );
549
550 if ( !$title ) {
551 $badTitle = true;
552 $skip = true;
553 }
554
555 $this->pageCallback( $title );
556 list( $pageInfo['_title'], $origTitle ) = $title;
557 }
558 } elseif ( $tag == 'revision' ) {
559 $this->handleRevision( $pageInfo );
560 } elseif ( $tag == 'upload' ) {
561 $this->handleUpload( $pageInfo );
562 } elseif ( $tag != '#text' ) {
563 $this->warn( "Unhandled page XML tag $tag" );
564 $skip = true;
565 }
566 }
567
568 $this->pageOutCallback( $pageInfo['_title'], $origTitle,
569 $pageInfo['revisionCount'],
570 $pageInfo['successfulRevisionCount'],
571 $pageInfo );
572 }
573
574 /**
575 * @param $pageInfo array
576 */
577 private function handleRevision( &$pageInfo ) {
578 $this->debug( "Enter revision handler" );
579 $revisionInfo = array();
580
581 $normalFields = array( 'id', 'timestamp', 'comment', 'minor', 'text' );
582
583 $skip = false;
584
585 while ( $skip ? $this->reader->next() : $this->reader->read() ) {
586 if ( $this->reader->nodeType == XmlReader::END_ELEMENT &&
587 $this->reader->name == 'revision') {
588 break;
589 }
590
591 $tag = $this->reader->name;
592
593 if ( !wfRunHooks( 'ImportHandleRevisionXMLTag', $this,
594 $pageInfo, $revisionInfo ) ) {
595 // Do nothing
596 } elseif ( in_array( $tag, $normalFields ) ) {
597 $revisionInfo[$tag] = $this->nodeContents();
598 } elseif ( $tag == 'contributor' ) {
599 $revisionInfo['contributor'] = $this->handleContributor();
600 } elseif ( $tag != '#text' ) {
601 $this->warn( "Unhandled revision XML tag $tag" );
602 $skip = true;
603 }
604 }
605
606 $pageInfo['revisionCount']++;
607 if ( $this->processRevision( $pageInfo, $revisionInfo ) ) {
608 $pageInfo['successfulRevisionCount']++;
609 }
610 }
611
612 /**
613 * @param $pageInfo
614 * @param $revisionInfo
615 * @return bool|mixed
616 */
617 private function processRevision( $pageInfo, $revisionInfo ) {
618 $revision = new WikiRevision;
619
620 if( isset( $revisionInfo['id'] ) ) {
621 $revision->setID( $revisionInfo['id'] );
622 }
623 if ( isset( $revisionInfo['text'] ) ) {
624 $revision->setText( $revisionInfo['text'] );
625 }
626 $revision->setTitle( $pageInfo['_title'] );
627
628 if ( isset( $revisionInfo['timestamp'] ) ) {
629 $revision->setTimestamp( $revisionInfo['timestamp'] );
630 } else {
631 $revision->setTimestamp( wfTimestampNow() );
632 }
633
634 if ( isset( $revisionInfo['comment'] ) ) {
635 $revision->setComment( $revisionInfo['comment'] );
636 }
637
638 if ( isset( $revisionInfo['minor'] ) ) {
639 $revision->setMinor( true );
640 }
641 if ( isset( $revisionInfo['contributor']['ip'] ) ) {
642 $revision->setUserIP( $revisionInfo['contributor']['ip'] );
643 }
644 if ( isset( $revisionInfo['contributor']['username'] ) ) {
645 $revision->setUserName( $revisionInfo['contributor']['username'] );
646 }
647 $revision->setNoUpdates( $this->mNoUpdates );
648
649 return $this->revisionCallback( $revision );
650 }
651
652 /**
653 * @param $pageInfo
654 * @return mixed
655 */
656 private function handleUpload( &$pageInfo ) {
657 $this->debug( "Enter upload handler" );
658 $uploadInfo = array();
659
660 $normalFields = array( 'timestamp', 'comment', 'filename', 'text',
661 'src', 'size', 'sha1base36', 'archivename', 'rel' );
662
663 $skip = false;
664
665 while ( $skip ? $this->reader->next() : $this->reader->read() ) {
666 if ( $this->reader->nodeType == XmlReader::END_ELEMENT &&
667 $this->reader->name == 'upload') {
668 break;
669 }
670
671 $tag = $this->reader->name;
672
673 if ( !wfRunHooks( 'ImportHandleUploadXMLTag', $this,
674 $pageInfo ) ) {
675 // Do nothing
676 } elseif ( in_array( $tag, $normalFields ) ) {
677 $uploadInfo[$tag] = $this->nodeContents();
678 } elseif ( $tag == 'contributor' ) {
679 $uploadInfo['contributor'] = $this->handleContributor();
680 } elseif ( $tag == 'contents' ) {
681 $contents = $this->nodeContents();
682 $encoding = $this->reader->getAttribute( 'encoding' );
683 if ( $encoding === 'base64' ) {
684 $uploadInfo['fileSrc'] = $this->dumpTemp( base64_decode( $contents ) );
685 $uploadInfo['isTempSrc'] = true;
686 }
687 } elseif ( $tag != '#text' ) {
688 $this->warn( "Unhandled upload XML tag $tag" );
689 $skip = true;
690 }
691 }
692
693 if ( $this->mImageBasePath && isset( $uploadInfo['rel'] ) ) {
694 $path = "{$this->mImageBasePath}/{$uploadInfo['rel']}";
695 if ( file_exists( $path ) ) {
696 $uploadInfo['fileSrc'] = $path;
697 $uploadInfo['isTempSrc'] = false;
698 }
699 }
700
701 if ( $this->mImportUploads ) {
702 return $this->processUpload( $pageInfo, $uploadInfo );
703 }
704 }
705
706 /**
707 * @param $contents
708 * @return string
709 */
710 private function dumpTemp( $contents ) {
711 $filename = tempnam( wfTempDir(), 'importupload' );
712 file_put_contents( $filename, $contents );
713 return $filename;
714 }
715
716 /**
717 * @param $pageInfo
718 * @param $uploadInfo
719 * @return mixed
720 */
721 private function processUpload( $pageInfo, $uploadInfo ) {
722 $revision = new WikiRevision;
723 $text = isset( $uploadInfo['text'] ) ? $uploadInfo['text'] : '';
724
725 $revision->setTitle( $pageInfo['_title'] );
726 $revision->setID( $pageInfo['id'] );
727 $revision->setTimestamp( $uploadInfo['timestamp'] );
728 $revision->setText( $text );
729 $revision->setFilename( $uploadInfo['filename'] );
730 if ( isset( $uploadInfo['archivename'] ) ) {
731 $revision->setArchiveName( $uploadInfo['archivename'] );
732 }
733 $revision->setSrc( $uploadInfo['src'] );
734 if ( isset( $uploadInfo['fileSrc'] ) ) {
735 $revision->setFileSrc( $uploadInfo['fileSrc'],
736 !empty( $uploadInfo['isTempSrc'] ) );
737 }
738 if ( isset( $uploadInfo['sha1base36'] ) ) {
739 $revision->setSha1Base36( $uploadInfo['sha1base36'] );
740 }
741 $revision->setSize( intval( $uploadInfo['size'] ) );
742 $revision->setComment( $uploadInfo['comment'] );
743
744 if ( isset( $uploadInfo['contributor']['ip'] ) ) {
745 $revision->setUserIP( $uploadInfo['contributor']['ip'] );
746 }
747 if ( isset( $uploadInfo['contributor']['username'] ) ) {
748 $revision->setUserName( $uploadInfo['contributor']['username'] );
749 }
750 $revision->setNoUpdates( $this->mNoUpdates );
751
752 return call_user_func( $this->mUploadCallback, $revision );
753 }
754
755 /**
756 * @return array
757 */
758 private function handleContributor() {
759 $fields = array( 'id', 'ip', 'username' );
760 $info = array();
761
762 while ( $this->reader->read() ) {
763 if ( $this->reader->nodeType == XmlReader::END_ELEMENT &&
764 $this->reader->name == 'contributor') {
765 break;
766 }
767
768 $tag = $this->reader->name;
769
770 if ( in_array( $tag, $fields ) ) {
771 $info[$tag] = $this->nodeContents();
772 }
773 }
774
775 return $info;
776 }
777
778 /**
779 * @param $text string
780 * @return Array or false
781 */
782 private function processTitle( $text ) {
783 global $wgCommandLineMode;
784
785 $workTitle = $text;
786 $origTitle = Title::newFromText( $workTitle );
787
788 if( !is_null( $this->mTargetNamespace ) && !is_null( $origTitle ) ) {
789 # makeTitleSafe, because $origTitle can have a interwiki (different setting of interwiki map)
790 # and than dbKey can begin with a lowercase char
791 $title = Title::makeTitleSafe( $this->mTargetNamespace,
792 $origTitle->getDBkey() );
793 } else {
794 $title = Title::newFromText( $workTitle );
795 }
796
797 if( is_null( $title ) ) {
798 # Invalid page title? Ignore the page
799 $this->notice( 'import-error-invalid', $workTitle );
800 return false;
801 } elseif( $title->isExternal() ) {
802 $this->notice( 'import-error-interwiki', $title->getPrefixedText() );
803 return false;
804 } elseif( !$title->canExist() ) {
805 $this->notice( 'import-error-special', $title->getPrefixedText() );
806 return false;
807 } elseif( !$title->userCan( 'edit' ) && !$wgCommandLineMode ) {
808 # Do not import if the importing wiki user cannot edit this page
809 $this->notice( 'import-error-edit', $title->getPrefixedText() );
810 return false;
811 } elseif( !$title->exists() && !$title->userCan( 'create' ) && !$wgCommandLineMode ) {
812 # Do not import if the importing wiki user cannot create this page
813 $this->notice( 'import-error-create', $title->getPrefixedText() );
814 return false;
815 }
816
817 return array( $title, $origTitle );
818 }
819 }
820
821 /** This is a horrible hack used to keep source compatibility */
822 class UploadSourceAdapter {
823 static $sourceRegistrations = array();
824
825 private $mSource;
826 private $mBuffer;
827 private $mPosition;
828
829 /**
830 * @param $source
831 * @return string
832 */
833 static function registerSource( $source ) {
834 $id = wfRandomString();
835
836 self::$sourceRegistrations[$id] = $source;
837
838 return $id;
839 }
840
841 /**
842 * @param $path
843 * @param $mode
844 * @param $options
845 * @param $opened_path
846 * @return bool
847 */
848 function stream_open( $path, $mode, $options, &$opened_path ) {
849 $url = parse_url($path);
850 $id = $url['host'];
851
852 if ( !isset( self::$sourceRegistrations[$id] ) ) {
853 return false;
854 }
855
856 $this->mSource = self::$sourceRegistrations[$id];
857
858 return true;
859 }
860
861 /**
862 * @param $count
863 * @return string
864 */
865 function stream_read( $count ) {
866 $return = '';
867 $leave = false;
868
869 while ( !$leave && !$this->mSource->atEnd() &&
870 strlen($this->mBuffer) < $count ) {
871 $read = $this->mSource->readChunk();
872
873 if ( !strlen($read) ) {
874 $leave = true;
875 }
876
877 $this->mBuffer .= $read;
878 }
879
880 if ( strlen($this->mBuffer) ) {
881 $return = substr( $this->mBuffer, 0, $count );
882 $this->mBuffer = substr( $this->mBuffer, $count );
883 }
884
885 $this->mPosition += strlen($return);
886
887 return $return;
888 }
889
890 /**
891 * @param $data
892 * @return bool
893 */
894 function stream_write( $data ) {
895 return false;
896 }
897
898 /**
899 * @return mixed
900 */
901 function stream_tell() {
902 return $this->mPosition;
903 }
904
905 /**
906 * @return bool
907 */
908 function stream_eof() {
909 return $this->mSource->atEnd();
910 }
911
912 /**
913 * @return array
914 */
915 function url_stat() {
916 $result = array();
917
918 $result['dev'] = $result[0] = 0;
919 $result['ino'] = $result[1] = 0;
920 $result['mode'] = $result[2] = 0;
921 $result['nlink'] = $result[3] = 0;
922 $result['uid'] = $result[4] = 0;
923 $result['gid'] = $result[5] = 0;
924 $result['rdev'] = $result[6] = 0;
925 $result['size'] = $result[7] = 0;
926 $result['atime'] = $result[8] = 0;
927 $result['mtime'] = $result[9] = 0;
928 $result['ctime'] = $result[10] = 0;
929 $result['blksize'] = $result[11] = 0;
930 $result['blocks'] = $result[12] = 0;
931
932 return $result;
933 }
934 }
935
936 class XMLReader2 extends XMLReader {
937
938 /**
939 * @return bool|string
940 */
941 function nodeContents() {
942 if( $this->isEmptyElement ) {
943 return "";
944 }
945 $buffer = "";
946 while( $this->read() ) {
947 switch( $this->nodeType ) {
948 case XmlReader::TEXT:
949 case XmlReader::SIGNIFICANT_WHITESPACE:
950 $buffer .= $this->value;
951 break;
952 case XmlReader::END_ELEMENT:
953 return $buffer;
954 }
955 }
956 return $this->close();
957 }
958 }
959
960 /**
961 * @todo document (e.g. one-sentence class description).
962 * @ingroup SpecialPage
963 */
964 class WikiRevision {
965 var $importer = null;
966
967 /**
968 * @var Title
969 */
970 var $title = null;
971 var $id = 0;
972 var $timestamp = "20010115000000";
973 var $user = 0;
974 var $user_text = "";
975 var $text = "";
976 var $comment = "";
977 var $minor = false;
978 var $type = "";
979 var $action = "";
980 var $params = "";
981 var $fileSrc = '';
982 var $sha1base36 = false;
983 var $isTemp = false;
984 var $archiveName = '';
985 var $fileIsTemp;
986 private $mNoUpdates = false;
987
988 /**
989 * @param $title
990 * @throws MWException
991 */
992 function setTitle( $title ) {
993 if( is_object( $title ) ) {
994 $this->title = $title;
995 } elseif( is_null( $title ) ) {
996 throw new MWException( "WikiRevision given a null title in import. You may need to adjust \$wgLegalTitleChars." );
997 } else {
998 throw new MWException( "WikiRevision given non-object title in import." );
999 }
1000 }
1001
1002 /**
1003 * @param $id
1004 */
1005 function setID( $id ) {
1006 $this->id = $id;
1007 }
1008
1009 /**
1010 * @param $ts
1011 */
1012 function setTimestamp( $ts ) {
1013 # 2003-08-05T18:30:02Z
1014 $this->timestamp = wfTimestamp( TS_MW, $ts );
1015 }
1016
1017 /**
1018 * @param $user
1019 */
1020 function setUsername( $user ) {
1021 $this->user_text = $user;
1022 }
1023
1024 /**
1025 * @param $ip
1026 */
1027 function setUserIP( $ip ) {
1028 $this->user_text = $ip;
1029 }
1030
1031 /**
1032 * @param $text
1033 */
1034 function setText( $text ) {
1035 $this->text = $text;
1036 }
1037
1038 /**
1039 * @param $text
1040 */
1041 function setComment( $text ) {
1042 $this->comment = $text;
1043 }
1044
1045 /**
1046 * @param $minor
1047 */
1048 function setMinor( $minor ) {
1049 $this->minor = (bool)$minor;
1050 }
1051
1052 /**
1053 * @param $src
1054 */
1055 function setSrc( $src ) {
1056 $this->src = $src;
1057 }
1058
1059 /**
1060 * @param $src
1061 * @param $isTemp
1062 */
1063 function setFileSrc( $src, $isTemp ) {
1064 $this->fileSrc = $src;
1065 $this->fileIsTemp = $isTemp;
1066 }
1067
1068 /**
1069 * @param $sha1base36
1070 */
1071 function setSha1Base36( $sha1base36 ) {
1072 $this->sha1base36 = $sha1base36;
1073 }
1074
1075 /**
1076 * @param $filename
1077 */
1078 function setFilename( $filename ) {
1079 $this->filename = $filename;
1080 }
1081
1082 /**
1083 * @param $archiveName
1084 */
1085 function setArchiveName( $archiveName ) {
1086 $this->archiveName = $archiveName;
1087 }
1088
1089 /**
1090 * @param $size
1091 */
1092 function setSize( $size ) {
1093 $this->size = intval( $size );
1094 }
1095
1096 /**
1097 * @param $type
1098 */
1099 function setType( $type ) {
1100 $this->type = $type;
1101 }
1102
1103 /**
1104 * @param $action
1105 */
1106 function setAction( $action ) {
1107 $this->action = $action;
1108 }
1109
1110 /**
1111 * @param $params
1112 */
1113 function setParams( $params ) {
1114 $this->params = $params;
1115 }
1116
1117 /**
1118 * @param $noupdates
1119 */
1120 public function setNoUpdates( $noupdates ) {
1121 $this->mNoUpdates = $noupdates;
1122 }
1123
1124 /**
1125 * @return Title
1126 */
1127 function getTitle() {
1128 return $this->title;
1129 }
1130
1131 /**
1132 * @return int
1133 */
1134 function getID() {
1135 return $this->id;
1136 }
1137
1138 /**
1139 * @return string
1140 */
1141 function getTimestamp() {
1142 return $this->timestamp;
1143 }
1144
1145 /**
1146 * @return string
1147 */
1148 function getUser() {
1149 return $this->user_text;
1150 }
1151
1152 /**
1153 * @return string
1154 */
1155 function getText() {
1156 return $this->text;
1157 }
1158
1159 /**
1160 * @return string
1161 */
1162 function getComment() {
1163 return $this->comment;
1164 }
1165
1166 /**
1167 * @return bool
1168 */
1169 function getMinor() {
1170 return $this->minor;
1171 }
1172
1173 /**
1174 * @return mixed
1175 */
1176 function getSrc() {
1177 return $this->src;
1178 }
1179
1180 /**
1181 * @return bool|String
1182 */
1183 function getSha1() {
1184 if ( $this->sha1base36 ) {
1185 return wfBaseConvert( $this->sha1base36, 36, 16 );
1186 }
1187 return false;
1188 }
1189
1190 /**
1191 * @return string
1192 */
1193 function getFileSrc() {
1194 return $this->fileSrc;
1195 }
1196
1197 /**
1198 * @return bool
1199 */
1200 function isTempSrc() {
1201 return $this->isTemp;
1202 }
1203
1204 /**
1205 * @return mixed
1206 */
1207 function getFilename() {
1208 return $this->filename;
1209 }
1210
1211 /**
1212 * @return string
1213 */
1214 function getArchiveName() {
1215 return $this->archiveName;
1216 }
1217
1218 /**
1219 * @return mixed
1220 */
1221 function getSize() {
1222 return $this->size;
1223 }
1224
1225 /**
1226 * @return string
1227 */
1228 function getType() {
1229 return $this->type;
1230 }
1231
1232 /**
1233 * @return string
1234 */
1235 function getAction() {
1236 return $this->action;
1237 }
1238
1239 /**
1240 * @return string
1241 */
1242 function getParams() {
1243 return $this->params;
1244 }
1245
1246 /**
1247 * @return bool
1248 */
1249 function importOldRevision() {
1250 $dbw = wfGetDB( DB_MASTER );
1251
1252 # Sneak a single revision into place
1253 $user = User::newFromName( $this->getUser() );
1254 if( $user ) {
1255 $userId = intval( $user->getId() );
1256 $userText = $user->getName();
1257 $userObj = $user;
1258 } else {
1259 $userId = 0;
1260 $userText = $this->getUser();
1261 $userObj = new User;
1262 }
1263
1264 // avoid memory leak...?
1265 $linkCache = LinkCache::singleton();
1266 $linkCache->clear();
1267
1268 $page = WikiPage::factory( $this->title );
1269 if( !$page->exists() ) {
1270 # must create the page...
1271 $pageId = $page->insertOn( $dbw );
1272 $created = true;
1273 $oldcountable = null;
1274 } else {
1275 $pageId = $page->getId();
1276 $created = false;
1277
1278 $prior = $dbw->selectField( 'revision', '1',
1279 array( 'rev_page' => $pageId,
1280 'rev_timestamp' => $dbw->timestamp( $this->timestamp ),
1281 'rev_user_text' => $userText,
1282 'rev_comment' => $this->getComment() ),
1283 __METHOD__
1284 );
1285 if( $prior ) {
1286 // @todo FIXME: This could fail slightly for multiple matches :P
1287 wfDebug( __METHOD__ . ": skipping existing revision for [[" .
1288 $this->title->getPrefixedText() . "]], timestamp " . $this->timestamp . "\n" );
1289 return false;
1290 }
1291 $oldcountable = $page->isCountable();
1292 }
1293
1294 # @todo FIXME: Use original rev_id optionally (better for backups)
1295 # Insert the row
1296 $revision = new Revision( array(
1297 'page' => $pageId,
1298 'text' => $this->getText(),
1299 'comment' => $this->getComment(),
1300 'user' => $userId,
1301 'user_text' => $userText,
1302 'timestamp' => $this->timestamp,
1303 'minor_edit' => $this->minor,
1304 ) );
1305 $revision->insertOn( $dbw );
1306 $changed = $page->updateIfNewerOn( $dbw, $revision );
1307
1308 if ( $changed !== false && !$this->mNoUpdates ) {
1309 wfDebug( __METHOD__ . ": running updates\n" );
1310 $page->doEditUpdates( $revision, $userObj, array( 'created' => $created, 'oldcountable' => $oldcountable ) );
1311 }
1312
1313 return true;
1314 }
1315
1316 /**
1317 * @return mixed
1318 */
1319 function importLogItem() {
1320 $dbw = wfGetDB( DB_MASTER );
1321 # @todo FIXME: This will not record autoblocks
1322 if( !$this->getTitle() ) {
1323 wfDebug( __METHOD__ . ": skipping invalid {$this->type}/{$this->action} log time, timestamp " .
1324 $this->timestamp . "\n" );
1325 return;
1326 }
1327 # Check if it exists already
1328 // @todo FIXME: Use original log ID (better for backups)
1329 $prior = $dbw->selectField( 'logging', '1',
1330 array( 'log_type' => $this->getType(),
1331 'log_action' => $this->getAction(),
1332 'log_timestamp' => $dbw->timestamp( $this->timestamp ),
1333 'log_namespace' => $this->getTitle()->getNamespace(),
1334 'log_title' => $this->getTitle()->getDBkey(),
1335 'log_comment' => $this->getComment(),
1336 #'log_user_text' => $this->user_text,
1337 'log_params' => $this->params ),
1338 __METHOD__
1339 );
1340 // @todo FIXME: This could fail slightly for multiple matches :P
1341 if( $prior ) {
1342 wfDebug( __METHOD__ . ": skipping existing item for Log:{$this->type}/{$this->action}, timestamp " .
1343 $this->timestamp . "\n" );
1344 return;
1345 }
1346 $log_id = $dbw->nextSequenceValue( 'logging_log_id_seq' );
1347 $data = array(
1348 'log_id' => $log_id,
1349 'log_type' => $this->type,
1350 'log_action' => $this->action,
1351 'log_timestamp' => $dbw->timestamp( $this->timestamp ),
1352 'log_user' => User::idFromName( $this->user_text ),
1353 #'log_user_text' => $this->user_text,
1354 'log_namespace' => $this->getTitle()->getNamespace(),
1355 'log_title' => $this->getTitle()->getDBkey(),
1356 'log_comment' => $this->getComment(),
1357 'log_params' => $this->params
1358 );
1359 $dbw->insert( 'logging', $data, __METHOD__ );
1360 }
1361
1362 /**
1363 * @return bool
1364 */
1365 function importUpload() {
1366 # Construct a file
1367 $archiveName = $this->getArchiveName();
1368 if ( $archiveName ) {
1369 wfDebug( __METHOD__ . "Importing archived file as $archiveName\n" );
1370 $file = OldLocalFile::newFromArchiveName( $this->getTitle(),
1371 RepoGroup::singleton()->getLocalRepo(), $archiveName );
1372 } else {
1373 $file = wfLocalFile( $this->getTitle() );
1374 wfDebug( __METHOD__ . 'Importing new file as ' . $file->getName() . "\n" );
1375 if ( $file->exists() && $file->getTimestamp() > $this->getTimestamp() ) {
1376 $archiveName = $file->getTimestamp() . '!' . $file->getName();
1377 $file = OldLocalFile::newFromArchiveName( $this->getTitle(),
1378 RepoGroup::singleton()->getLocalRepo(), $archiveName );
1379 wfDebug( __METHOD__ . "File already exists; importing as $archiveName\n" );
1380 }
1381 }
1382 if( !$file ) {
1383 wfDebug( __METHOD__ . ': Bad file for ' . $this->getTitle() . "\n" );
1384 return false;
1385 }
1386
1387 # Get the file source or download if necessary
1388 $source = $this->getFileSrc();
1389 $flags = $this->isTempSrc() ? File::DELETE_SOURCE : 0;
1390 if ( !$source ) {
1391 $source = $this->downloadSource();
1392 $flags |= File::DELETE_SOURCE;
1393 }
1394 if( !$source ) {
1395 wfDebug( __METHOD__ . ": Could not fetch remote file.\n" );
1396 return false;
1397 }
1398 $sha1 = $this->getSha1();
1399 if ( $sha1 && ( $sha1 !== sha1_file( $source ) ) ) {
1400 if ( $flags & File::DELETE_SOURCE ) {
1401 # Broken file; delete it if it is a temporary file
1402 unlink( $source );
1403 }
1404 wfDebug( __METHOD__ . ": Corrupt file $source.\n" );
1405 return false;
1406 }
1407
1408 $user = User::newFromName( $this->user_text );
1409
1410 # Do the actual upload
1411 if ( $archiveName ) {
1412 $status = $file->uploadOld( $source, $archiveName,
1413 $this->getTimestamp(), $this->getComment(), $user, $flags );
1414 } else {
1415 $status = $file->upload( $source, $this->getComment(), $this->getComment(),
1416 $flags, false, $this->getTimestamp(), $user );
1417 }
1418
1419 if ( $status->isGood() ) {
1420 wfDebug( __METHOD__ . ": Succesful\n" );
1421 return true;
1422 } else {
1423 wfDebug( __METHOD__ . ': failed: ' . $status->getXml() . "\n" );
1424 return false;
1425 }
1426 }
1427
1428 /**
1429 * @return bool|string
1430 */
1431 function downloadSource() {
1432 global $wgEnableUploads;
1433 if( !$wgEnableUploads ) {
1434 return false;
1435 }
1436
1437 $tempo = tempnam( wfTempDir(), 'download' );
1438 $f = fopen( $tempo, 'wb' );
1439 if( !$f ) {
1440 wfDebug( "IMPORT: couldn't write to temp file $tempo\n" );
1441 return false;
1442 }
1443
1444 // @todo FIXME!
1445 $src = $this->getSrc();
1446 $data = Http::get( $src );
1447 if( !$data ) {
1448 wfDebug( "IMPORT: couldn't fetch source $src\n" );
1449 fclose( $f );
1450 unlink( $tempo );
1451 return false;
1452 }
1453
1454 fwrite( $f, $data );
1455 fclose( $f );
1456
1457 return $tempo;
1458 }
1459
1460 }
1461
1462 /**
1463 * @todo document (e.g. one-sentence class description).
1464 * @ingroup SpecialPage
1465 */
1466 class ImportStringSource {
1467 function __construct( $string ) {
1468 $this->mString = $string;
1469 $this->mRead = false;
1470 }
1471
1472 /**
1473 * @return bool
1474 */
1475 function atEnd() {
1476 return $this->mRead;
1477 }
1478
1479 /**
1480 * @return bool|string
1481 */
1482 function readChunk() {
1483 if( $this->atEnd() ) {
1484 return false;
1485 }
1486 $this->mRead = true;
1487 return $this->mString;
1488 }
1489 }
1490
1491 /**
1492 * @todo document (e.g. one-sentence class description).
1493 * @ingroup SpecialPage
1494 */
1495 class ImportStreamSource {
1496 function __construct( $handle ) {
1497 $this->mHandle = $handle;
1498 }
1499
1500 /**
1501 * @return bool
1502 */
1503 function atEnd() {
1504 return feof( $this->mHandle );
1505 }
1506
1507 /**
1508 * @return string
1509 */
1510 function readChunk() {
1511 return fread( $this->mHandle, 32768 );
1512 }
1513
1514 /**
1515 * @param $filename string
1516 * @return Status
1517 */
1518 static function newFromFile( $filename ) {
1519 wfSuppressWarnings();
1520 $file = fopen( $filename, 'rt' );
1521 wfRestoreWarnings();
1522 if( !$file ) {
1523 return Status::newFatal( "importcantopen" );
1524 }
1525 return Status::newGood( new ImportStreamSource( $file ) );
1526 }
1527
1528 /**
1529 * @param $fieldname string
1530 * @return Status
1531 */
1532 static function newFromUpload( $fieldname = "xmlimport" ) {
1533 $upload =& $_FILES[$fieldname];
1534
1535 if( !isset( $upload ) || !$upload['name'] ) {
1536 return Status::newFatal( 'importnofile' );
1537 }
1538 if( !empty( $upload['error'] ) ) {
1539 switch($upload['error']){
1540 case 1: # The uploaded file exceeds the upload_max_filesize directive in php.ini.
1541 return Status::newFatal( 'importuploaderrorsize' );
1542 case 2: # The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.
1543 return Status::newFatal( 'importuploaderrorsize' );
1544 case 3: # The uploaded file was only partially uploaded
1545 return Status::newFatal( 'importuploaderrorpartial' );
1546 case 6: #Missing a temporary folder.
1547 return Status::newFatal( 'importuploaderrortemp' );
1548 # case else: # Currently impossible
1549 }
1550
1551 }
1552 $fname = $upload['tmp_name'];
1553 if( is_uploaded_file( $fname ) ) {
1554 return ImportStreamSource::newFromFile( $fname );
1555 } else {
1556 return Status::newFatal( 'importnofile' );
1557 }
1558 }
1559
1560 /**
1561 * @param $url
1562 * @param $method string
1563 * @return Status
1564 */
1565 static function newFromURL( $url, $method = 'GET' ) {
1566 wfDebug( __METHOD__ . ": opening $url\n" );
1567 # Use the standard HTTP fetch function; it times out
1568 # quicker and sorts out user-agent problems which might
1569 # otherwise prevent importing from large sites, such
1570 # as the Wikimedia cluster, etc.
1571 $data = Http::request( $method, $url, array( 'followRedirects' => true ) );
1572 if( $data !== false ) {
1573 $file = tmpfile();
1574 fwrite( $file, $data );
1575 fflush( $file );
1576 fseek( $file, 0 );
1577 return Status::newGood( new ImportStreamSource( $file ) );
1578 } else {
1579 return Status::newFatal( 'importcantopen' );
1580 }
1581 }
1582
1583 /**
1584 * @param $interwiki
1585 * @param $page
1586 * @param $history bool
1587 * @param $templates bool
1588 * @param $pageLinkDepth int
1589 * @return Status
1590 */
1591 public static function newFromInterwiki( $interwiki, $page, $history = false, $templates = false, $pageLinkDepth = 0 ) {
1592 if( $page == '' ) {
1593 return Status::newFatal( 'import-noarticle' );
1594 }
1595 $link = Title::newFromText( "$interwiki:Special:Export/$page" );
1596 if( is_null( $link ) || $link->getInterwiki() == '' ) {
1597 return Status::newFatal( 'importbadinterwiki' );
1598 } else {
1599 $params = array();
1600 if ( $history ) $params['history'] = 1;
1601 if ( $templates ) $params['templates'] = 1;
1602 if ( $pageLinkDepth ) $params['pagelink-depth'] = $pageLinkDepth;
1603 $url = $link->getFullUrl( $params );
1604 # For interwikis, use POST to avoid redirects.
1605 return ImportStreamSource::newFromURL( $url, "POST" );
1606 }
1607 }
1608 }