Introduce a new hook that allows extensions to add to My Contributions
[mediawiki.git] / includes / Export.php
blob36d98d681ba219a5759d6b8556a1bc32af768445
1 <?php
2 /**
3 * Base classes for dumps and export
5 * Copyright © 2003, 2005, 2006 Brion Vibber <brion@pobox.com>
6 * http://www.mediawiki.org/
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.
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.
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
23 * @file
26 /**
27 * @defgroup Dump Dump
30 /**
31 * @ingroup SpecialPage Dump
33 class WikiExporter {
34 var $list_authors = false ; # Return distinct author list (when not returning full history)
35 var $author_list = "" ;
37 var $dumpUploads = false;
38 var $dumpUploadFileContents = false;
40 const FULL = 1;
41 const CURRENT = 2;
42 const STABLE = 4; // extension defined
43 const LOGS = 8;
44 const RANGE = 16;
46 const BUFFER = 0;
47 const STREAM = 1;
49 const TEXT = 0;
50 const STUB = 1;
52 var $buffer;
54 var $text;
56 /**
57 * @var DumpOutput
59 var $sink;
61 /**
62 * If using WikiExporter::STREAM to stream a large amount of data,
63 * provide a database connection which is not managed by
64 * LoadBalancer to read from: some history blob types will
65 * make additional queries to pull source data while the
66 * main query is still running.
68 * @param $db DatabaseBase
69 * @param $history Mixed: one of WikiExporter::FULL, WikiExporter::CURRENT,
70 * WikiExporter::RANGE or WikiExporter::STABLE,
71 * or an associative array:
72 * offset: non-inclusive offset at which to start the query
73 * limit: maximum number of rows to return
74 * dir: "asc" or "desc" timestamp order
75 * @param $buffer Int: one of WikiExporter::BUFFER or WikiExporter::STREAM
76 * @param $text Int: one of WikiExporter::TEXT or WikiExporter::STUB
78 function __construct( &$db, $history = WikiExporter::CURRENT,
79 $buffer = WikiExporter::BUFFER, $text = WikiExporter::TEXT ) {
80 $this->db =& $db;
81 $this->history = $history;
82 $this->buffer = $buffer;
83 $this->writer = new XmlDumpWriter();
84 $this->sink = new DumpOutput();
85 $this->text = $text;
88 /**
89 * Set the DumpOutput or DumpFilter object which will receive
90 * various row objects and XML output for filtering. Filters
91 * can be chained or used as callbacks.
93 * @param $sink mixed
95 public function setOutputSink( &$sink ) {
96 $this->sink =& $sink;
99 public function openStream() {
100 $output = $this->writer->openStream();
101 $this->sink->writeOpenStream( $output );
104 public function closeStream() {
105 $output = $this->writer->closeStream();
106 $this->sink->writeCloseStream( $output );
110 * Dumps a series of page and revision records for all pages
111 * in the database, either including complete history or only
112 * the most recent version.
114 public function allPages() {
115 $this->dumpFrom( '' );
119 * Dumps a series of page and revision records for those pages
120 * in the database falling within the page_id range given.
121 * @param $start Int: inclusive lower limit (this id is included)
122 * @param $end Int: Exclusive upper limit (this id is not included)
123 * If 0, no upper limit.
125 public function pagesByRange( $start, $end ) {
126 $condition = 'page_id >= ' . intval( $start );
127 if ( $end ) {
128 $condition .= ' AND page_id < ' . intval( $end );
130 $this->dumpFrom( $condition );
134 * Dumps a series of page and revision records for those pages
135 * in the database with revisions falling within the rev_id range given.
136 * @param $start Int: inclusive lower limit (this id is included)
137 * @param $end Int: Exclusive upper limit (this id is not included)
138 * If 0, no upper limit.
140 public function revsByRange( $start, $end ) {
141 $condition = 'rev_id >= ' . intval( $start );
142 if ( $end ) {
143 $condition .= ' AND rev_id < ' . intval( $end );
145 $this->dumpFrom( $condition );
149 * @param $title Title
151 public function pageByTitle( $title ) {
152 $this->dumpFrom(
153 'page_namespace=' . $title->getNamespace() .
154 ' AND page_title=' . $this->db->addQuotes( $title->getDBkey() ) );
158 * @param $name string
159 * @throws MWException
161 public function pageByName( $name ) {
162 $title = Title::newFromText( $name );
163 if ( is_null( $title ) ) {
164 throw new MWException( "Can't export invalid title" );
165 } else {
166 $this->pageByTitle( $title );
171 * @param $names array
173 public function pagesByName( $names ) {
174 foreach ( $names as $name ) {
175 $this->pageByName( $name );
179 public function allLogs() {
180 $this->dumpFrom( '' );
184 * @param $start int
185 * @param $end int
187 public function logsByRange( $start, $end ) {
188 $condition = 'log_id >= ' . intval( $start );
189 if ( $end ) {
190 $condition .= ' AND log_id < ' . intval( $end );
192 $this->dumpFrom( $condition );
196 * Generates the distinct list of authors of an article
197 * Not called by default (depends on $this->list_authors)
198 * Can be set by Special:Export when not exporting whole history
200 * @param $cond
202 protected function do_list_authors( $cond ) {
203 wfProfileIn( __METHOD__ );
204 $this->author_list = "<contributors>";
205 // rev_deleted
207 $res = $this->db->select(
208 array( 'page', 'revision' ),
209 array( 'DISTINCT rev_user_text', 'rev_user' ),
210 array(
211 $this->db->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0',
212 $cond,
213 'page_id = rev_id',
215 __METHOD__
218 foreach ( $res as $row ) {
219 $this->author_list .= "<contributor>" .
220 "<username>" .
221 htmlentities( $row->rev_user_text ) .
222 "</username>" .
223 "<id>" .
224 $row->rev_user .
225 "</id>" .
226 "</contributor>";
228 $this->author_list .= "</contributors>";
229 wfProfileOut( __METHOD__ );
233 * @param $cond string
234 * @throws MWException
235 * @throws Exception
237 protected function dumpFrom( $cond = '' ) {
238 wfProfileIn( __METHOD__ );
239 # For logging dumps...
240 if ( $this->history & self::LOGS ) {
241 $where = array( 'user_id = log_user' );
242 # Hide private logs
243 $hideLogs = LogEventsList::getExcludeClause( $this->db );
244 if ( $hideLogs ) $where[] = $hideLogs;
245 # Add on any caller specified conditions
246 if ( $cond ) $where[] = $cond;
247 # Get logging table name for logging.* clause
248 $logging = $this->db->tableName( 'logging' );
250 if ( $this->buffer == WikiExporter::STREAM ) {
251 $prev = $this->db->bufferResults( false );
253 $wrapper = null; // Assuring $wrapper is not undefined, if exception occurs early
254 try {
255 $result = $this->db->select( array( 'logging', 'user' ),
256 array( "{$logging}.*", 'user_name' ), // grab the user name
257 $where,
258 __METHOD__,
259 array( 'ORDER BY' => 'log_id', 'USE INDEX' => array( 'logging' => 'PRIMARY' ) )
261 $wrapper = $this->db->resultObject( $result );
262 $this->outputLogStream( $wrapper );
263 if ( $this->buffer == WikiExporter::STREAM ) {
264 $this->db->bufferResults( $prev );
266 } catch ( Exception $e ) {
267 // Throwing the exception does not reliably free the resultset, and
268 // would also leave the connection in unbuffered mode.
270 // Freeing result
271 try {
272 if ( $wrapper ) {
273 $wrapper->free();
275 } catch ( Exception $e2 ) {
276 // Already in panic mode -> ignoring $e2 as $e has
277 // higher priority
280 // Putting database back in previous buffer mode
281 try {
282 if ( $this->buffer == WikiExporter::STREAM ) {
283 $this->db->bufferResults( $prev );
285 } catch ( Exception $e2 ) {
286 // Already in panic mode -> ignoring $e2 as $e has
287 // higher priority
290 // Inform caller about problem
291 throw $e;
293 # For page dumps...
294 } else {
295 $tables = array( 'page', 'revision' );
296 $opts = array( 'ORDER BY' => 'page_id ASC' );
297 $opts['USE INDEX'] = array();
298 $join = array();
299 if ( is_array( $this->history ) ) {
300 # Time offset/limit for all pages/history...
301 $revJoin = 'page_id=rev_page';
302 # Set time order
303 if ( $this->history['dir'] == 'asc' ) {
304 $op = '>';
305 $opts['ORDER BY'] = 'rev_timestamp ASC';
306 } else {
307 $op = '<';
308 $opts['ORDER BY'] = 'rev_timestamp DESC';
310 # Set offset
311 if ( !empty( $this->history['offset'] ) ) {
312 $revJoin .= " AND rev_timestamp $op " .
313 $this->db->addQuotes( $this->db->timestamp( $this->history['offset'] ) );
315 $join['revision'] = array( 'INNER JOIN', $revJoin );
316 # Set query limit
317 if ( !empty( $this->history['limit'] ) ) {
318 $opts['LIMIT'] = intval( $this->history['limit'] );
320 } elseif ( $this->history & WikiExporter::FULL ) {
321 # Full history dumps...
322 $join['revision'] = array( 'INNER JOIN', 'page_id=rev_page' );
323 } elseif ( $this->history & WikiExporter::CURRENT ) {
324 # Latest revision dumps...
325 if ( $this->list_authors && $cond != '' ) { // List authors, if so desired
326 $this->do_list_authors( $cond );
328 $join['revision'] = array( 'INNER JOIN', 'page_id=rev_page AND page_latest=rev_id' );
329 } elseif ( $this->history & WikiExporter::STABLE ) {
330 # "Stable" revision dumps...
331 # Default JOIN, to be overridden...
332 $join['revision'] = array( 'INNER JOIN', 'page_id=rev_page AND page_latest=rev_id' );
333 # One, and only one hook should set this, and return false
334 if ( wfRunHooks( 'WikiExporter::dumpStableQuery', array( &$tables, &$opts, &$join ) ) ) {
335 wfProfileOut( __METHOD__ );
336 throw new MWException( __METHOD__ . " given invalid history dump type." );
338 } elseif ( $this->history & WikiExporter::RANGE ) {
339 # Dump of revisions within a specified range
340 $join['revision'] = array( 'INNER JOIN', 'page_id=rev_page' );
341 $opts['ORDER BY'] = array( 'rev_page ASC', 'rev_id ASC' );
342 } else {
343 # Uknown history specification parameter?
344 wfProfileOut( __METHOD__ );
345 throw new MWException( __METHOD__ . " given invalid history dump type." );
347 # Query optimization hacks
348 if ( $cond == '' ) {
349 $opts[] = 'STRAIGHT_JOIN';
350 $opts['USE INDEX']['page'] = 'PRIMARY';
352 # Build text join options
353 if ( $this->text != WikiExporter::STUB ) { // 1-pass
354 $tables[] = 'text';
355 $join['text'] = array( 'INNER JOIN', 'rev_text_id=old_id' );
358 if ( $this->buffer == WikiExporter::STREAM ) {
359 $prev = $this->db->bufferResults( false );
362 $wrapper = null; // Assuring $wrapper is not undefined, if exception occurs early
363 try {
364 wfRunHooks( 'ModifyExportQuery',
365 array( $this->db, &$tables, &$cond, &$opts, &$join ) );
367 # Do the query!
368 $result = $this->db->select( $tables, '*', $cond, __METHOD__, $opts, $join );
369 $wrapper = $this->db->resultObject( $result );
370 # Output dump results
371 $this->outputPageStream( $wrapper );
373 if ( $this->buffer == WikiExporter::STREAM ) {
374 $this->db->bufferResults( $prev );
376 } catch ( Exception $e ) {
377 // Throwing the exception does not reliably free the resultset, and
378 // would also leave the connection in unbuffered mode.
380 // Freeing result
381 try {
382 if ( $wrapper ) {
383 $wrapper->free();
385 } catch ( Exception $e2 ) {
386 // Already in panic mode -> ignoring $e2 as $e has
387 // higher priority
390 // Putting database back in previous buffer mode
391 try {
392 if ( $this->buffer == WikiExporter::STREAM ) {
393 $this->db->bufferResults( $prev );
395 } catch ( Exception $e2 ) {
396 // Already in panic mode -> ignoring $e2 as $e has
397 // higher priority
400 // Inform caller about problem
401 throw $e;
404 wfProfileOut( __METHOD__ );
408 * Runs through a query result set dumping page and revision records.
409 * The result set should be sorted/grouped by page to avoid duplicate
410 * page records in the output.
412 * Should be safe for
413 * streaming (non-buffered) queries, as long as it was made on a
414 * separate database connection not managed by LoadBalancer; some
415 * blob storage types will make queries to pull source data.
417 * @param $resultset ResultWrapper
419 protected function outputPageStream( $resultset ) {
420 $last = null;
421 foreach ( $resultset as $row ) {
422 if ( is_null( $last ) ||
423 $last->page_namespace != $row->page_namespace ||
424 $last->page_title != $row->page_title ) {
425 if ( isset( $last ) ) {
426 $output = '';
427 if ( $this->dumpUploads ) {
428 $output .= $this->writer->writeUploads( $last, $this->dumpUploadFileContents );
430 $output .= $this->writer->closePage();
431 $this->sink->writeClosePage( $output );
433 $output = $this->writer->openPage( $row );
434 $this->sink->writeOpenPage( $row, $output );
435 $last = $row;
437 $output = $this->writer->writeRevision( $row );
438 $this->sink->writeRevision( $row, $output );
440 if ( isset( $last ) ) {
441 $output = '';
442 if ( $this->dumpUploads ) {
443 $output .= $this->writer->writeUploads( $last, $this->dumpUploadFileContents );
445 $output .= $this->author_list;
446 $output .= $this->writer->closePage();
447 $this->sink->writeClosePage( $output );
452 * @param $resultset array
454 protected function outputLogStream( $resultset ) {
455 foreach ( $resultset as $row ) {
456 $output = $this->writer->writeLogItem( $row );
457 $this->sink->writeLogItem( $row, $output );
463 * @ingroup Dump
465 class XmlDumpWriter {
467 * Returns the export schema version.
468 * @return string
470 function schemaVersion() {
471 return "0.7";
475 * Opens the XML output stream's root <mediawiki> element.
476 * This does not include an xml directive, so is safe to include
477 * as a subelement in a larger XML stream. Namespace and XML Schema
478 * references are included.
480 * Output will be encoded in UTF-8.
482 * @return string
484 function openStream() {
485 global $wgLanguageCode;
486 $ver = $this->schemaVersion();
487 return Xml::element( 'mediawiki', array(
488 'xmlns' => "http://www.mediawiki.org/xml/export-$ver/",
489 'xmlns:xsi' => "http://www.w3.org/2001/XMLSchema-instance",
490 'xsi:schemaLocation' => "http://www.mediawiki.org/xml/export-$ver/ " .
491 "http://www.mediawiki.org/xml/export-$ver.xsd",
492 'version' => $ver,
493 'xml:lang' => $wgLanguageCode ),
494 null ) .
495 "\n" .
496 $this->siteInfo();
500 * @return string
502 function siteInfo() {
503 $info = array(
504 $this->sitename(),
505 $this->homelink(),
506 $this->generator(),
507 $this->caseSetting(),
508 $this->namespaces() );
509 return " <siteinfo>\n " .
510 implode( "\n ", $info ) .
511 "\n </siteinfo>\n";
515 * @return string
517 function sitename() {
518 global $wgSitename;
519 return Xml::element( 'sitename', array(), $wgSitename );
523 * @return string
525 function generator() {
526 global $wgVersion;
527 return Xml::element( 'generator', array(), "MediaWiki $wgVersion" );
531 * @return string
533 function homelink() {
534 return Xml::element( 'base', array(), Title::newMainPage()->getCanonicalUrl() );
538 * @return string
540 function caseSetting() {
541 global $wgCapitalLinks;
542 // "case-insensitive" option is reserved for future
543 $sensitivity = $wgCapitalLinks ? 'first-letter' : 'case-sensitive';
544 return Xml::element( 'case', array(), $sensitivity );
548 * @return string
550 function namespaces() {
551 global $wgContLang;
552 $spaces = "<namespaces>\n";
553 foreach ( $wgContLang->getFormattedNamespaces() as $ns => $title ) {
554 $spaces .= ' ' .
555 Xml::element( 'namespace',
556 array( 'key' => $ns,
557 'case' => MWNamespace::isCapitalized( $ns ) ? 'first-letter' : 'case-sensitive',
558 ), $title ) . "\n";
560 $spaces .= " </namespaces>";
561 return $spaces;
565 * Closes the output stream with the closing root element.
566 * Call when finished dumping things.
568 * @return string
570 function closeStream() {
571 return "</mediawiki>\n";
575 * Opens a <page> section on the output stream, with data
576 * from the given database row.
578 * @param $row object
579 * @return string
580 * @access private
582 function openPage( $row ) {
583 $out = " <page>\n";
584 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
585 $out .= ' ' . Xml::elementClean( 'title', array(), self::canonicalTitle( $title ) ) . "\n";
586 $out .= ' ' . Xml::element( 'ns', array(), strval( $row->page_namespace) ) . "\n";
587 $out .= ' ' . Xml::element( 'id', array(), strval( $row->page_id ) ) . "\n";
588 if ( $row->page_is_redirect ) {
589 $page = WikiPage::factory( $title );
590 $redirect = $page->getRedirectTarget();
591 if ( $redirect instanceOf Title && $redirect->isValidRedirectTarget() ) {
592 $out .= ' ' . Xml::element( 'redirect', array( 'title' => self::canonicalTitle( $redirect ) ) ) . "\n";
596 if ( $row->page_restrictions != '' ) {
597 $out .= ' ' . Xml::element( 'restrictions', array(),
598 strval( $row->page_restrictions ) ) . "\n";
601 wfRunHooks( 'XmlDumpWriterOpenPage', array( $this, &$out, $row, $title ) );
603 return $out;
607 * Closes a <page> section on the output stream.
609 * @access private
610 * @return string
612 function closePage() {
613 return " </page>\n";
617 * Dumps a <revision> section on the output stream, with
618 * data filled in from the given database row.
620 * @param $row object
621 * @return string
622 * @access private
624 function writeRevision( $row ) {
625 wfProfileIn( __METHOD__ );
627 $out = " <revision>\n";
628 $out .= " " . Xml::element( 'id', null, strval( $row->rev_id ) ) . "\n";
629 if( $row->rev_parent_id ) {
630 $out .= " " . Xml::element( 'parentid', null, strval( $row->rev_parent_id ) ) . "\n";
633 $out .= $this->writeTimestamp( $row->rev_timestamp );
635 if ( $row->rev_deleted & Revision::DELETED_USER ) {
636 $out .= " " . Xml::element( 'contributor', array( 'deleted' => 'deleted' ) ) . "\n";
637 } else {
638 $out .= $this->writeContributor( $row->rev_user, $row->rev_user_text );
641 if ( $row->rev_minor_edit ) {
642 $out .= " <minor/>\n";
644 if ( $row->rev_deleted & Revision::DELETED_COMMENT ) {
645 $out .= " " . Xml::element( 'comment', array( 'deleted' => 'deleted' ) ) . "\n";
646 } elseif ( $row->rev_comment != '' ) {
647 $out .= " " . Xml::elementClean( 'comment', array(), strval( $row->rev_comment ) ) . "\n";
650 if ( $row->rev_sha1 && !( $row->rev_deleted & Revision::DELETED_TEXT ) ) {
651 $out .= " " . Xml::element('sha1', null, strval( $row->rev_sha1 ) ) . "\n";
652 } else {
653 $out .= " <sha1/>\n";
656 $text = '';
657 if ( $row->rev_deleted & Revision::DELETED_TEXT ) {
658 $out .= " " . Xml::element( 'text', array( 'deleted' => 'deleted' ) ) . "\n";
659 } elseif ( isset( $row->old_text ) ) {
660 // Raw text from the database may have invalid chars
661 $text = strval( Revision::getRevisionText( $row ) );
662 $out .= " " . Xml::elementClean( 'text',
663 array( 'xml:space' => 'preserve', 'bytes' => intval( $row->rev_len ) ),
664 strval( $text ) ) . "\n";
665 } else {
666 // Stub output
667 $out .= " " . Xml::element( 'text',
668 array( 'id' => $row->rev_text_id, 'bytes' => intval( $row->rev_len ) ),
669 "" ) . "\n";
672 wfRunHooks( 'XmlDumpWriterWriteRevision', array( &$this, &$out, $row, $text ) );
674 $out .= " </revision>\n";
676 wfProfileOut( __METHOD__ );
677 return $out;
681 * Dumps a <logitem> section on the output stream, with
682 * data filled in from the given database row.
684 * @param $row object
685 * @return string
686 * @access private
688 function writeLogItem( $row ) {
689 wfProfileIn( __METHOD__ );
691 $out = " <logitem>\n";
692 $out .= " " . Xml::element( 'id', null, strval( $row->log_id ) ) . "\n";
694 $out .= $this->writeTimestamp( $row->log_timestamp, " " );
696 if ( $row->log_deleted & LogPage::DELETED_USER ) {
697 $out .= " " . Xml::element( 'contributor', array( 'deleted' => 'deleted' ) ) . "\n";
698 } else {
699 $out .= $this->writeContributor( $row->log_user, $row->user_name, " " );
702 if ( $row->log_deleted & LogPage::DELETED_COMMENT ) {
703 $out .= " " . Xml::element( 'comment', array( 'deleted' => 'deleted' ) ) . "\n";
704 } elseif ( $row->log_comment != '' ) {
705 $out .= " " . Xml::elementClean( 'comment', null, strval( $row->log_comment ) ) . "\n";
708 $out .= " " . Xml::element( 'type', null, strval( $row->log_type ) ) . "\n";
709 $out .= " " . Xml::element( 'action', null, strval( $row->log_action ) ) . "\n";
711 if ( $row->log_deleted & LogPage::DELETED_ACTION ) {
712 $out .= " " . Xml::element( 'text', array( 'deleted' => 'deleted' ) ) . "\n";
713 } else {
714 $title = Title::makeTitle( $row->log_namespace, $row->log_title );
715 $out .= " " . Xml::elementClean( 'logtitle', null, self::canonicalTitle( $title ) ) . "\n";
716 $out .= " " . Xml::elementClean( 'params',
717 array( 'xml:space' => 'preserve' ),
718 strval( $row->log_params ) ) . "\n";
721 $out .= " </logitem>\n";
723 wfProfileOut( __METHOD__ );
724 return $out;
728 * @param $timestamp string
729 * @return string
731 function writeTimestamp( $timestamp, $indent = " " ) {
732 $ts = wfTimestamp( TS_ISO_8601, $timestamp );
733 return $indent . Xml::element( 'timestamp', null, $ts ) . "\n";
737 * @param $id
738 * @param $text string
739 * @return string
741 function writeContributor( $id, $text, $indent = " " ) {
742 $out = $indent . "<contributor>\n";
743 if ( $id || !IP::isValid( $text ) ) {
744 $out .= $indent . " " . Xml::elementClean( 'username', null, strval( $text ) ) . "\n";
745 $out .= $indent . " " . Xml::element( 'id', null, strval( $id ) ) . "\n";
746 } else {
747 $out .= $indent . " " . Xml::elementClean( 'ip', null, strval( $text ) ) . "\n";
749 $out .= $indent . "</contributor>\n";
750 return $out;
754 * Warning! This data is potentially inconsistent. :(
755 * @param $row
756 * @param $dumpContents bool
757 * @return string
759 function writeUploads( $row, $dumpContents = false ) {
760 if ( $row->page_namespace == NS_FILE ) {
761 $img = wfLocalFile( $row->page_title );
762 if ( $img && $img->exists() ) {
763 $out = '';
764 foreach ( array_reverse( $img->getHistory() ) as $ver ) {
765 $out .= $this->writeUpload( $ver, $dumpContents );
767 $out .= $this->writeUpload( $img, $dumpContents );
768 return $out;
771 return '';
775 * @param $file File
776 * @param $dumpContents bool
777 * @return string
779 function writeUpload( $file, $dumpContents = false ) {
780 if ( $file->isOld() ) {
781 $archiveName = " " .
782 Xml::element( 'archivename', null, $file->getArchiveName() ) . "\n";
783 } else {
784 $archiveName = '';
786 if ( $dumpContents ) {
787 # Dump file as base64
788 # Uses only XML-safe characters, so does not need escaping
789 $contents = ' <contents encoding="base64">' .
790 chunk_split( base64_encode( file_get_contents( $file->getPath() ) ) ) .
791 " </contents>\n";
792 } else {
793 $contents = '';
795 if ( $file->isDeleted( File::DELETED_COMMENT ) ) {
796 $comment = Xml::element( 'comment', array( 'deleted' => 'deleted' ) );
797 } else {
798 $comment = Xml::elementClean( 'comment', null, $file->getDescription() );
800 return " <upload>\n" .
801 $this->writeTimestamp( $file->getTimestamp() ) .
802 $this->writeContributor( $file->getUser( 'id' ), $file->getUser( 'text' ) ) .
803 " " . $comment . "\n" .
804 " " . Xml::element( 'filename', null, $file->getName() ) . "\n" .
805 $archiveName .
806 " " . Xml::element( 'src', null, $file->getCanonicalUrl() ) . "\n" .
807 " " . Xml::element( 'size', null, $file->getSize() ) . "\n" .
808 " " . Xml::element( 'sha1base36', null, $file->getSha1() ) . "\n" .
809 " " . Xml::element( 'rel', null, $file->getRel() ) . "\n" .
810 $contents .
811 " </upload>\n";
815 * Return prefixed text form of title, but using the content language's
816 * canonical namespace. This skips any special-casing such as gendered
817 * user namespaces -- which while useful, are not yet listed in the
818 * XML <siteinfo> data so are unsafe in export.
820 * @param Title $title
821 * @return string
822 * @since 1.18
824 public static function canonicalTitle( Title $title ) {
825 if ( $title->getInterwiki() ) {
826 return $title->getPrefixedText();
829 global $wgContLang;
830 $prefix = str_replace( '_', ' ', $wgContLang->getNsText( $title->getNamespace() ) );
832 if ( $prefix !== '' ) {
833 $prefix .= ':';
836 return $prefix . $title->getText();
842 * Base class for output stream; prints to stdout or buffer or whereever.
843 * @ingroup Dump
845 class DumpOutput {
848 * @param $string string
850 function writeOpenStream( $string ) {
851 $this->write( $string );
855 * @param $string string
857 function writeCloseStream( $string ) {
858 $this->write( $string );
862 * @param $page
863 * @param $string string
865 function writeOpenPage( $page, $string ) {
866 $this->write( $string );
870 * @param $string string
872 function writeClosePage( $string ) {
873 $this->write( $string );
877 * @param $rev
878 * @param $string string
880 function writeRevision( $rev, $string ) {
881 $this->write( $string );
885 * @param $rev
886 * @param $string string
888 function writeLogItem( $rev, $string ) {
889 $this->write( $string );
893 * Override to write to a different stream type.
894 * @param $string string
895 * @return bool
897 function write( $string ) {
898 print $string;
902 * Close the old file, move it to a specified name,
903 * and reopen new file with the old name. Use this
904 * for writing out a file in multiple pieces
905 * at specified checkpoints (e.g. every n hours).
906 * @param $newname mixed File name. May be a string or an array with one element
908 function closeRenameAndReopen( $newname ) {
909 return;
913 * Close the old file, and move it to a specified name.
914 * Use this for the last piece of a file written out
915 * at specified checkpoints (e.g. every n hours).
916 * @param $newname mixed File name. May be a string or an array with one element
917 * @param $open bool If true, a new file with the old filename will be opened again for writing (default: false)
919 function closeAndRename( $newname, $open = false ) {
920 return;
924 * Returns the name of the file or files which are
925 * being written to, if there are any.
926 * @return null
928 function getFilenames() {
929 return NULL;
934 * Stream outputter to send data to a file.
935 * @ingroup Dump
937 class DumpFileOutput extends DumpOutput {
938 protected $handle = false, $filename;
941 * @param $file
943 function __construct( $file ) {
944 $this->handle = fopen( $file, "wt" );
945 $this->filename = $file;
949 * @param $string string
951 function writeCloseStream( $string ) {
952 parent::writeCloseStream( $string );
953 if ( $this->handle ) {
954 fclose( $this->handle );
955 $this->handle = false;
960 * @param $string string
962 function write( $string ) {
963 fputs( $this->handle, $string );
967 * @param $newname
969 function closeRenameAndReopen( $newname ) {
970 $this->closeAndRename( $newname, true );
974 * @param $newname
975 * @throws MWException
977 function renameOrException( $newname ) {
978 if (! rename( $this->filename, $newname ) ) {
979 throw new MWException( __METHOD__ . ": rename of file {$this->filename} to $newname failed\n" );
984 * @param $newname array
985 * @return mixed
986 * @throws MWException
988 function checkRenameArgCount( $newname ) {
989 if ( is_array( $newname ) ) {
990 if ( count( $newname ) > 1 ) {
991 throw new MWException( __METHOD__ . ": passed multiple arguments for rename of single file\n" );
992 } else {
993 $newname = $newname[0];
996 return $newname;
1000 * @param $newname mixed
1001 * @param $open bool
1003 function closeAndRename( $newname, $open = false ) {
1004 $newname = $this->checkRenameArgCount( $newname );
1005 if ( $newname ) {
1006 if ( $this->handle ) {
1007 fclose( $this->handle );
1008 $this->handle = false;
1010 $this->renameOrException( $newname );
1011 if ( $open ) {
1012 $this->handle = fopen( $this->filename, "wt" );
1018 * @return string|null
1020 function getFilenames() {
1021 return $this->filename;
1026 * Stream outputter to send data to a file via some filter program.
1027 * Even if compression is available in a library, using a separate
1028 * program can allow us to make use of a multi-processor system.
1029 * @ingroup Dump
1031 class DumpPipeOutput extends DumpFileOutput {
1032 protected $command, $filename;
1033 protected $procOpenResource = false;
1036 * @param $command
1037 * @param $file null
1039 function __construct( $command, $file = null ) {
1040 if ( !is_null( $file ) ) {
1041 $command .= " > " . wfEscapeShellArg( $file );
1044 $this->startCommand( $command );
1045 $this->command = $command;
1046 $this->filename = $file;
1050 * @param $string string
1052 function writeCloseStream( $string ) {
1053 parent::writeCloseStream( $string );
1054 if ( $this->procOpenResource ) {
1055 proc_close( $this->procOpenResource );
1056 $this->procOpenResource = false;
1061 * @param $command
1063 function startCommand( $command ) {
1064 $spec = array(
1065 0 => array( "pipe", "r" ),
1067 $pipes = array();
1068 $this->procOpenResource = proc_open( $command, $spec, $pipes );
1069 $this->handle = $pipes[0];
1073 * @param mixed $newname
1075 function closeRenameAndReopen( $newname ) {
1076 $this->closeAndRename( $newname, true );
1080 * @param $newname mixed
1081 * @param $open bool
1083 function closeAndRename( $newname, $open = false ) {
1084 $newname = $this->checkRenameArgCount( $newname );
1085 if ( $newname ) {
1086 if ( $this->handle ) {
1087 fclose( $this->handle );
1088 $this->handle = false;
1090 if ( $this->procOpenResource ) {
1091 proc_close( $this->procOpenResource );
1092 $this->procOpenResource = false;
1094 $this->renameOrException( $newname );
1095 if ( $open ) {
1096 $command = $this->command;
1097 $command .= " > " . wfEscapeShellArg( $this->filename );
1098 $this->startCommand( $command );
1106 * Sends dump output via the gzip compressor.
1107 * @ingroup Dump
1109 class DumpGZipOutput extends DumpPipeOutput {
1112 * @param $file string
1114 function __construct( $file ) {
1115 parent::__construct( "gzip", $file );
1120 * Sends dump output via the bgzip2 compressor.
1121 * @ingroup Dump
1123 class DumpBZip2Output extends DumpPipeOutput {
1126 * @param $file string
1128 function __construct( $file ) {
1129 parent::__construct( "bzip2", $file );
1134 * Sends dump output via the p7zip compressor.
1135 * @ingroup Dump
1137 class Dump7ZipOutput extends DumpPipeOutput {
1140 * @param $file string
1142 function __construct( $file ) {
1143 $command = $this->setup7zCommand( $file );
1144 parent::__construct( $command );
1145 $this->filename = $file;
1149 * @param $file string
1150 * @return string
1152 function setup7zCommand( $file ) {
1153 $command = "7za a -bd -si " . wfEscapeShellArg( $file );
1154 // Suppress annoying useless crap from p7zip
1155 // Unfortunately this could suppress real error messages too
1156 $command .= ' >' . wfGetNull() . ' 2>&1';
1157 return( $command );
1161 * @param $newname string
1162 * @param $open bool
1164 function closeAndRename( $newname, $open = false ) {
1165 $newname = $this->checkRenameArgCount( $newname );
1166 if ( $newname ) {
1167 fclose( $this->handle );
1168 proc_close( $this->procOpenResource );
1169 $this->renameOrException( $newname );
1170 if ( $open ) {
1171 $command = $this->setup7zCommand( $this->filename );
1172 $this->startCommand( $command );
1179 * Dump output filter class.
1180 * This just does output filtering and streaming; XML formatting is done
1181 * higher up, so be careful in what you do.
1182 * @ingroup Dump
1184 class DumpFilter {
1187 * @var DumpOutput
1188 * FIXME will need to be made protected whenever legacy code
1189 * is updated.
1191 public $sink;
1194 * @var bool
1196 protected $sendingThisPage;
1199 * @param $sink DumpOutput
1201 function __construct( &$sink ) {
1202 $this->sink =& $sink;
1206 * @param $string string
1208 function writeOpenStream( $string ) {
1209 $this->sink->writeOpenStream( $string );
1213 * @param $string string
1215 function writeCloseStream( $string ) {
1216 $this->sink->writeCloseStream( $string );
1220 * @param $page
1221 * @param $string string
1223 function writeOpenPage( $page, $string ) {
1224 $this->sendingThisPage = $this->pass( $page, $string );
1225 if ( $this->sendingThisPage ) {
1226 $this->sink->writeOpenPage( $page, $string );
1231 * @param $string string
1233 function writeClosePage( $string ) {
1234 if ( $this->sendingThisPage ) {
1235 $this->sink->writeClosePage( $string );
1236 $this->sendingThisPage = false;
1241 * @param $rev
1242 * @param $string string
1244 function writeRevision( $rev, $string ) {
1245 if ( $this->sendingThisPage ) {
1246 $this->sink->writeRevision( $rev, $string );
1251 * @param $rev
1252 * @param $string string
1254 function writeLogItem( $rev, $string ) {
1255 $this->sink->writeRevision( $rev, $string );
1259 * @param $newname string
1261 function closeRenameAndReopen( $newname ) {
1262 $this->sink->closeRenameAndReopen( $newname );
1266 * @param $newname string
1267 * @param $open bool
1269 function closeAndRename( $newname, $open = false ) {
1270 $this->sink->closeAndRename( $newname, $open );
1274 * @return array
1276 function getFilenames() {
1277 return $this->sink->getFilenames();
1281 * Override for page-based filter types.
1282 * @param $page
1283 * @return bool
1285 function pass( $page ) {
1286 return true;
1291 * Simple dump output filter to exclude all talk pages.
1292 * @ingroup Dump
1294 class DumpNotalkFilter extends DumpFilter {
1297 * @param $page
1298 * @return bool
1300 function pass( $page ) {
1301 return !MWNamespace::isTalk( $page->page_namespace );
1306 * Dump output filter to include or exclude pages in a given set of namespaces.
1307 * @ingroup Dump
1309 class DumpNamespaceFilter extends DumpFilter {
1310 var $invert = false;
1311 var $namespaces = array();
1314 * @param $sink DumpOutput
1315 * @param $param
1317 function __construct( &$sink, $param ) {
1318 parent::__construct( $sink );
1320 $constants = array(
1321 "NS_MAIN" => NS_MAIN,
1322 "NS_TALK" => NS_TALK,
1323 "NS_USER" => NS_USER,
1324 "NS_USER_TALK" => NS_USER_TALK,
1325 "NS_PROJECT" => NS_PROJECT,
1326 "NS_PROJECT_TALK" => NS_PROJECT_TALK,
1327 "NS_FILE" => NS_FILE,
1328 "NS_FILE_TALK" => NS_FILE_TALK,
1329 "NS_IMAGE" => NS_IMAGE, // NS_IMAGE is an alias for NS_FILE
1330 "NS_IMAGE_TALK" => NS_IMAGE_TALK,
1331 "NS_MEDIAWIKI" => NS_MEDIAWIKI,
1332 "NS_MEDIAWIKI_TALK" => NS_MEDIAWIKI_TALK,
1333 "NS_TEMPLATE" => NS_TEMPLATE,
1334 "NS_TEMPLATE_TALK" => NS_TEMPLATE_TALK,
1335 "NS_HELP" => NS_HELP,
1336 "NS_HELP_TALK" => NS_HELP_TALK,
1337 "NS_CATEGORY" => NS_CATEGORY,
1338 "NS_CATEGORY_TALK" => NS_CATEGORY_TALK );
1340 if ( $param { 0 } == '!' ) {
1341 $this->invert = true;
1342 $param = substr( $param, 1 );
1345 foreach ( explode( ',', $param ) as $key ) {
1346 $key = trim( $key );
1347 if ( isset( $constants[$key] ) ) {
1348 $ns = $constants[$key];
1349 $this->namespaces[$ns] = true;
1350 } elseif ( is_numeric( $key ) ) {
1351 $ns = intval( $key );
1352 $this->namespaces[$ns] = true;
1353 } else {
1354 throw new MWException( "Unrecognized namespace key '$key'\n" );
1360 * @param $page
1361 * @return bool
1363 function pass( $page ) {
1364 $match = isset( $this->namespaces[$page->page_namespace] );
1365 return $this->invert xor $match;
1371 * Dump output filter to include only the last revision in each page sequence.
1372 * @ingroup Dump
1374 class DumpLatestFilter extends DumpFilter {
1375 var $page, $pageString, $rev, $revString;
1378 * @param $page
1379 * @param $string string
1381 function writeOpenPage( $page, $string ) {
1382 $this->page = $page;
1383 $this->pageString = $string;
1387 * @param $string string
1389 function writeClosePage( $string ) {
1390 if ( $this->rev ) {
1391 $this->sink->writeOpenPage( $this->page, $this->pageString );
1392 $this->sink->writeRevision( $this->rev, $this->revString );
1393 $this->sink->writeClosePage( $string );
1395 $this->rev = null;
1396 $this->revString = null;
1397 $this->page = null;
1398 $this->pageString = null;
1402 * @param $rev
1403 * @param $string string
1405 function writeRevision( $rev, $string ) {
1406 if ( $rev->rev_id == $this->page->page_latest ) {
1407 $this->rev = $rev;
1408 $this->revString = $string;
1414 * Base class for output stream; prints to stdout or buffer or whereever.
1415 * @ingroup Dump
1417 class DumpMultiWriter {
1420 * @param $sinks
1422 function __construct( $sinks ) {
1423 $this->sinks = $sinks;
1424 $this->count = count( $sinks );
1428 * @param $string string
1430 function writeOpenStream( $string ) {
1431 for ( $i = 0; $i < $this->count; $i++ ) {
1432 $this->sinks[$i]->writeOpenStream( $string );
1437 * @param $string string
1439 function writeCloseStream( $string ) {
1440 for ( $i = 0; $i < $this->count; $i++ ) {
1441 $this->sinks[$i]->writeCloseStream( $string );
1446 * @param $page
1447 * @param $string string
1449 function writeOpenPage( $page, $string ) {
1450 for ( $i = 0; $i < $this->count; $i++ ) {
1451 $this->sinks[$i]->writeOpenPage( $page, $string );
1456 * @param $string
1458 function writeClosePage( $string ) {
1459 for ( $i = 0; $i < $this->count; $i++ ) {
1460 $this->sinks[$i]->writeClosePage( $string );
1465 * @param $rev
1466 * @param $string
1468 function writeRevision( $rev, $string ) {
1469 for ( $i = 0; $i < $this->count; $i++ ) {
1470 $this->sinks[$i]->writeRevision( $rev, $string );
1475 * @param $newnames
1477 function closeRenameAndReopen( $newnames ) {
1478 $this->closeAndRename( $newnames, true );
1482 * @param $newnames array
1483 * @param bool $open
1485 function closeAndRename( $newnames, $open = false ) {
1486 for ( $i = 0; $i < $this->count; $i++ ) {
1487 $this->sinks[$i]->closeAndRename( $newnames[$i], $open );
1492 * @return array
1494 function getFilenames() {
1495 $filenames = array();
1496 for ( $i = 0; $i < $this->count; $i++ ) {
1497 $filenames[] = $this->sinks[$i]->getFilenames();
1499 return $filenames;
1505 * @param $string string
1506 * @return string
1508 function xmlsafe( $string ) {
1509 wfProfileIn( __FUNCTION__ );
1512 * The page may contain old data which has not been properly normalized.
1513 * Invalid UTF-8 sequences or forbidden control characters will make our
1514 * XML output invalid, so be sure to strip them out.
1516 $string = UtfNormal::cleanUp( $string );
1518 $string = htmlspecialchars( $string );
1519 wfProfileOut( __FUNCTION__ );
1520 return $string;