Reverted r111188: backport conflict fodder
[lhc/web/wiklou.git] / includes / Export.php
1 <?php
2 /**
3 * Base classes for dumps and export
4 *
5 * Copyright © 2003, 2005, 2006 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 */
25
26 /**
27 * @defgroup Dump Dump
28 */
29
30 /**
31 * @ingroup SpecialPage Dump
32 */
33 class WikiExporter {
34 var $list_authors = false ; # Return distinct author list (when not returning full history)
35 var $author_list = "" ;
36
37 var $dumpUploads = false;
38 var $dumpUploadFileContents = false;
39
40 const FULL = 1;
41 const CURRENT = 2;
42 const STABLE = 4; // extension defined
43 const LOGS = 8;
44 const RANGE = 16;
45
46 const BUFFER = 0;
47 const STREAM = 1;
48
49 const TEXT = 0;
50 const STUB = 1;
51
52 /**
53 * If using WikiExporter::STREAM to stream a large amount of data,
54 * provide a database connection which is not managed by
55 * LoadBalancer to read from: some history blob types will
56 * make additional queries to pull source data while the
57 * main query is still running.
58 *
59 * @param $db DatabaseBase
60 * @param $history Mixed: one of WikiExporter::FULL, WikiExporter::CURRENT,
61 * WikiExporter::RANGE or WikiExporter::STABLE,
62 * or an associative array:
63 * offset: non-inclusive offset at which to start the query
64 * limit: maximum number of rows to return
65 * dir: "asc" or "desc" timestamp order
66 * @param $buffer Int: one of WikiExporter::BUFFER or WikiExporter::STREAM
67 * @param $text Int: one of WikiExporter::TEXT or WikiExporter::STUB
68 */
69 function __construct( &$db, $history = WikiExporter::CURRENT,
70 $buffer = WikiExporter::BUFFER, $text = WikiExporter::TEXT ) {
71 $this->db =& $db;
72 $this->history = $history;
73 $this->buffer = $buffer;
74 $this->writer = new XmlDumpWriter();
75 $this->sink = new DumpOutput();
76 $this->text = $text;
77 }
78
79 /**
80 * Set the DumpOutput or DumpFilter object which will receive
81 * various row objects and XML output for filtering. Filters
82 * can be chained or used as callbacks.
83 *
84 * @param $sink mixed
85 */
86 public function setOutputSink( &$sink ) {
87 $this->sink =& $sink;
88 }
89
90 public function openStream() {
91 $output = $this->writer->openStream();
92 $this->sink->writeOpenStream( $output );
93 }
94
95 public function closeStream() {
96 $output = $this->writer->closeStream();
97 $this->sink->writeCloseStream( $output );
98 }
99
100 /**
101 * Dumps a series of page and revision records for all pages
102 * in the database, either including complete history or only
103 * the most recent version.
104 */
105 public function allPages() {
106 return $this->dumpFrom( '' );
107 }
108
109 /**
110 * Dumps a series of page and revision records for those pages
111 * in the database falling within the page_id range given.
112 * @param $start Int: inclusive lower limit (this id is included)
113 * @param $end Int: Exclusive upper limit (this id is not included)
114 * If 0, no upper limit.
115 */
116 public function pagesByRange( $start, $end ) {
117 $condition = 'page_id >= ' . intval( $start );
118 if ( $end ) {
119 $condition .= ' AND page_id < ' . intval( $end );
120 }
121 return $this->dumpFrom( $condition );
122 }
123
124 /**
125 * Dumps a series of page and revision records for those pages
126 * in the database with revisions falling within the rev_id range given.
127 * @param $start Int: inclusive lower limit (this id is included)
128 * @param $end Int: Exclusive upper limit (this id is not included)
129 * If 0, no upper limit.
130 */
131 public function revsByRange( $start, $end ) {
132 $condition = 'rev_id >= ' . intval( $start );
133 if ( $end ) {
134 $condition .= ' AND rev_id < ' . intval( $end );
135 }
136 return $this->dumpFrom( $condition );
137 }
138
139 /**
140 * @param $title Title
141 */
142 public function pageByTitle( $title ) {
143 return $this->dumpFrom(
144 'page_namespace=' . $title->getNamespace() .
145 ' AND page_title=' . $this->db->addQuotes( $title->getDBkey() ) );
146 }
147
148 public function pageByName( $name ) {
149 $title = Title::newFromText( $name );
150 if ( is_null( $title ) ) {
151 throw new MWException( "Can't export invalid title" );
152 } else {
153 return $this->pageByTitle( $title );
154 }
155 }
156
157 public function pagesByName( $names ) {
158 foreach ( $names as $name ) {
159 $this->pageByName( $name );
160 }
161 }
162
163 public function allLogs() {
164 return $this->dumpFrom( '' );
165 }
166
167 public function logsByRange( $start, $end ) {
168 $condition = 'log_id >= ' . intval( $start );
169 if ( $end ) {
170 $condition .= ' AND log_id < ' . intval( $end );
171 }
172 return $this->dumpFrom( $condition );
173 }
174
175 # Generates the distinct list of authors of an article
176 # Not called by default (depends on $this->list_authors)
177 # Can be set by Special:Export when not exporting whole history
178 protected function do_list_authors( $cond ) {
179 wfProfileIn( __METHOD__ );
180 $this->author_list = "<contributors>";
181 // rev_deleted
182
183 $res = $this->db->select(
184 array( 'page', 'revision' ),
185 array( 'DISTINCT rev_user_text', 'rev_user' ),
186 array(
187 $this->db->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0',
188 $cond,
189 'page_id = rev_id',
190 ),
191 __METHOD__
192 );
193
194 foreach ( $res as $row ) {
195 $this->author_list .= "<contributor>" .
196 "<username>" .
197 htmlentities( $row->rev_user_text ) .
198 "</username>" .
199 "<id>" .
200 $row->rev_user .
201 "</id>" .
202 "</contributor>";
203 }
204 $this->author_list .= "</contributors>";
205 wfProfileOut( __METHOD__ );
206 }
207
208 protected function dumpFrom( $cond = '' ) {
209 wfProfileIn( __METHOD__ );
210 # For logging dumps...
211 if ( $this->history & self::LOGS ) {
212 if ( $this->buffer == WikiExporter::STREAM ) {
213 $prev = $this->db->bufferResults( false );
214 }
215 $where = array( 'user_id = log_user' );
216 # Hide private logs
217 $hideLogs = LogEventsList::getExcludeClause( $this->db );
218 if ( $hideLogs ) $where[] = $hideLogs;
219 # Add on any caller specified conditions
220 if ( $cond ) $where[] = $cond;
221 # Get logging table name for logging.* clause
222 $logging = $this->db->tableName( 'logging' );
223 $result = $this->db->select( array( 'logging', 'user' ),
224 array( "{$logging}.*", 'user_name' ), // grab the user name
225 $where,
226 __METHOD__,
227 array( 'ORDER BY' => 'log_id', 'USE INDEX' => array( 'logging' => 'PRIMARY' ) )
228 );
229 $wrapper = $this->db->resultObject( $result );
230 $this->outputLogStream( $wrapper );
231 if ( $this->buffer == WikiExporter::STREAM ) {
232 $this->db->bufferResults( $prev );
233 }
234 # For page dumps...
235 } else {
236 $tables = array( 'page', 'revision' );
237 $opts = array( 'ORDER BY' => 'page_id ASC' );
238 $opts['USE INDEX'] = array();
239 $join = array();
240 if ( is_array( $this->history ) ) {
241 # Time offset/limit for all pages/history...
242 $revJoin = 'page_id=rev_page';
243 # Set time order
244 if ( $this->history['dir'] == 'asc' ) {
245 $op = '>';
246 $opts['ORDER BY'] = 'rev_timestamp ASC';
247 } else {
248 $op = '<';
249 $opts['ORDER BY'] = 'rev_timestamp DESC';
250 }
251 # Set offset
252 if ( !empty( $this->history['offset'] ) ) {
253 $revJoin .= " AND rev_timestamp $op " .
254 $this->db->addQuotes( $this->db->timestamp( $this->history['offset'] ) );
255 }
256 $join['revision'] = array( 'INNER JOIN', $revJoin );
257 # Set query limit
258 if ( !empty( $this->history['limit'] ) ) {
259 $opts['LIMIT'] = intval( $this->history['limit'] );
260 }
261 } elseif ( $this->history & WikiExporter::FULL ) {
262 # Full history dumps...
263 $join['revision'] = array( 'INNER JOIN', 'page_id=rev_page' );
264 } elseif ( $this->history & WikiExporter::CURRENT ) {
265 # Latest revision dumps...
266 if ( $this->list_authors && $cond != '' ) { // List authors, if so desired
267 $this->do_list_authors( $cond );
268 }
269 $join['revision'] = array( 'INNER JOIN', 'page_id=rev_page AND page_latest=rev_id' );
270 } elseif ( $this->history & WikiExporter::STABLE ) {
271 # "Stable" revision dumps...
272 # Default JOIN, to be overridden...
273 $join['revision'] = array( 'INNER JOIN', 'page_id=rev_page AND page_latest=rev_id' );
274 # One, and only one hook should set this, and return false
275 if ( wfRunHooks( 'WikiExporter::dumpStableQuery', array( &$tables, &$opts, &$join ) ) ) {
276 wfProfileOut( __METHOD__ );
277 throw new MWException( __METHOD__ . " given invalid history dump type." );
278 }
279 } elseif ( $this->history & WikiExporter::RANGE ) {
280 # Dump of revisions within a specified range
281 $join['revision'] = array( 'INNER JOIN', 'page_id=rev_page' );
282 $opts['ORDER BY'] = 'rev_page ASC, rev_id ASC';
283 } else {
284 # Uknown history specification parameter?
285 wfProfileOut( __METHOD__ );
286 throw new MWException( __METHOD__ . " given invalid history dump type." );
287 }
288 # Query optimization hacks
289 if ( $cond == '' ) {
290 $opts[] = 'STRAIGHT_JOIN';
291 $opts['USE INDEX']['page'] = 'PRIMARY';
292 }
293 # Build text join options
294 if ( $this->text != WikiExporter::STUB ) { // 1-pass
295 $tables[] = 'text';
296 $join['text'] = array( 'INNER JOIN', 'rev_text_id=old_id' );
297 }
298
299 if ( $this->buffer == WikiExporter::STREAM ) {
300 $prev = $this->db->bufferResults( false );
301 }
302
303 wfRunHooks( 'ModifyExportQuery',
304 array( $this->db, &$tables, &$cond, &$opts, &$join ) );
305
306 # Do the query!
307 $result = $this->db->select( $tables, '*', $cond, __METHOD__, $opts, $join );
308 $wrapper = $this->db->resultObject( $result );
309 # Output dump results
310 $this->outputPageStream( $wrapper );
311 if ( $this->list_authors ) {
312 $this->outputPageStream( $wrapper );
313 }
314
315 if ( $this->buffer == WikiExporter::STREAM ) {
316 $this->db->bufferResults( $prev );
317 }
318 }
319 wfProfileOut( __METHOD__ );
320 }
321
322 /**
323 * Runs through a query result set dumping page and revision records.
324 * The result set should be sorted/grouped by page to avoid duplicate
325 * page records in the output.
326 *
327 * The result set will be freed once complete. Should be safe for
328 * streaming (non-buffered) queries, as long as it was made on a
329 * separate database connection not managed by LoadBalancer; some
330 * blob storage types will make queries to pull source data.
331 *
332 * @param $resultset ResultWrapper
333 */
334 protected function outputPageStream( $resultset ) {
335 $last = null;
336 foreach ( $resultset as $row ) {
337 if ( is_null( $last ) ||
338 $last->page_namespace != $row->page_namespace ||
339 $last->page_title != $row->page_title ) {
340 if ( isset( $last ) ) {
341 $output = '';
342 if ( $this->dumpUploads ) {
343 $output .= $this->writer->writeUploads( $last, $this->dumpUploadFileContents );
344 }
345 $output .= $this->writer->closePage();
346 $this->sink->writeClosePage( $output );
347 }
348 $output = $this->writer->openPage( $row );
349 $this->sink->writeOpenPage( $row, $output );
350 $last = $row;
351 }
352 $output = $this->writer->writeRevision( $row );
353 $this->sink->writeRevision( $row, $output );
354 }
355 if ( isset( $last ) ) {
356 $output = '';
357 if ( $this->dumpUploads ) {
358 $output .= $this->writer->writeUploads( $last, $this->dumpUploadFileContents );
359 }
360 $output .= $this->author_list;
361 $output .= $this->writer->closePage();
362 $this->sink->writeClosePage( $output );
363 }
364 }
365
366 protected function outputLogStream( $resultset ) {
367 foreach ( $resultset as $row ) {
368 $output = $this->writer->writeLogItem( $row );
369 $this->sink->writeLogItem( $row, $output );
370 }
371 }
372 }
373
374 /**
375 * @ingroup Dump
376 */
377 class XmlDumpWriter {
378 /**
379 * Returns the export schema version.
380 * @return string
381 */
382 function schemaVersion() {
383 return "0.6";
384 }
385
386 /**
387 * Opens the XML output stream's root <mediawiki> element.
388 * This does not include an xml directive, so is safe to include
389 * as a subelement in a larger XML stream. Namespace and XML Schema
390 * references are included.
391 *
392 * Output will be encoded in UTF-8.
393 *
394 * @return string
395 */
396 function openStream() {
397 global $wgLanguageCode;
398 $ver = $this->schemaVersion();
399 return Xml::element( 'mediawiki', array(
400 'xmlns' => "http://www.mediawiki.org/xml/export-$ver/",
401 'xmlns:xsi' => "http://www.w3.org/2001/XMLSchema-instance",
402 'xsi:schemaLocation' => "http://www.mediawiki.org/xml/export-$ver/ " .
403 "http://www.mediawiki.org/xml/export-$ver.xsd",
404 'version' => $ver,
405 'xml:lang' => $wgLanguageCode ),
406 null ) .
407 "\n" .
408 $this->siteInfo();
409 }
410
411 function siteInfo() {
412 $info = array(
413 $this->sitename(),
414 $this->homelink(),
415 $this->generator(),
416 $this->caseSetting(),
417 $this->namespaces() );
418 return " <siteinfo>\n " .
419 implode( "\n ", $info ) .
420 "\n </siteinfo>\n";
421 }
422
423 function sitename() {
424 global $wgSitename;
425 return Xml::element( 'sitename', array(), $wgSitename );
426 }
427
428 function generator() {
429 global $wgVersion;
430 return Xml::element( 'generator', array(), "MediaWiki $wgVersion" );
431 }
432
433 function homelink() {
434 return Xml::element( 'base', array(), Title::newMainPage()->getCanonicalUrl() );
435 }
436
437 function caseSetting() {
438 global $wgCapitalLinks;
439 // "case-insensitive" option is reserved for future
440 $sensitivity = $wgCapitalLinks ? 'first-letter' : 'case-sensitive';
441 return Xml::element( 'case', array(), $sensitivity );
442 }
443
444 function namespaces() {
445 global $wgContLang;
446 $spaces = "<namespaces>\n";
447 foreach ( $wgContLang->getFormattedNamespaces() as $ns => $title ) {
448 $spaces .= ' ' .
449 Xml::element( 'namespace',
450 array( 'key' => $ns,
451 'case' => MWNamespace::isCapitalized( $ns ) ? 'first-letter' : 'case-sensitive',
452 ), $title ) . "\n";
453 }
454 $spaces .= " </namespaces>";
455 return $spaces;
456 }
457
458 /**
459 * Closes the output stream with the closing root element.
460 * Call when finished dumping things.
461 *
462 * @return string
463 */
464 function closeStream() {
465 return "</mediawiki>\n";
466 }
467
468 /**
469 * Opens a <page> section on the output stream, with data
470 * from the given database row.
471 *
472 * @param $row object
473 * @return string
474 * @access private
475 */
476 function openPage( $row ) {
477 $out = " <page>\n";
478 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
479 $out .= ' ' . Xml::elementClean( 'title', array(), self::canonicalTitle( $title ) ) . "\n";
480 $out .= ' ' . Xml::element( 'ns', array(), strval( $row->page_namespace) ) . "\n";
481 $out .= ' ' . Xml::element( 'id', array(), strval( $row->page_id ) ) . "\n";
482 if ( $row->page_is_redirect ) {
483 $page = WikiPage::factory( $title );
484 $redirect = $page->getRedirectTarget();
485 if ( $redirect instanceOf Title && $redirect->isValidRedirectTarget() ) {
486 $out .= ' ' . Xml::element( 'redirect', array( 'title' => self::canonicalTitle( $redirect ) ) ) . "\n";
487 }
488 }
489
490 if ( $row->rev_sha1 ) {
491 $out .= " " . Xml::element('sha1', null, strval($row->rev_sha1) ) . "\n";
492 } else {
493 $out .= " <sha1/>\n";
494 }
495
496 if ( $row->page_restrictions != '' ) {
497 $out .= ' ' . Xml::element( 'restrictions', array(),
498 strval( $row->page_restrictions ) ) . "\n";
499 }
500
501 wfRunHooks( 'XmlDumpWriterOpenPage', array( $this, &$out, $row, $title ) );
502
503 return $out;
504 }
505
506 /**
507 * Closes a <page> section on the output stream.
508 *
509 * @access private
510 * @return string
511 */
512 function closePage() {
513 return " </page>\n";
514 }
515
516 /**
517 * Dumps a <revision> section on the output stream, with
518 * data filled in from the given database row.
519 *
520 * @param $row object
521 * @return string
522 * @access private
523 */
524 function writeRevision( $row ) {
525 wfProfileIn( __METHOD__ );
526
527 $out = " <revision>\n";
528 $out .= " " . Xml::element( 'id', null, strval( $row->rev_id ) ) . "\n";
529
530 $out .= $this->writeTimestamp( $row->rev_timestamp );
531
532 if ( $row->rev_deleted & Revision::DELETED_USER ) {
533 $out .= " " . Xml::element( 'contributor', array( 'deleted' => 'deleted' ) ) . "\n";
534 } else {
535 $out .= $this->writeContributor( $row->rev_user, $row->rev_user_text );
536 }
537
538 if ( $row->rev_minor_edit ) {
539 $out .= " <minor/>\n";
540 }
541 if ( $row->rev_deleted & Revision::DELETED_COMMENT ) {
542 $out .= " " . Xml::element( 'comment', array( 'deleted' => 'deleted' ) ) . "\n";
543 } elseif ( $row->rev_comment != '' ) {
544 $out .= " " . Xml::elementClean( 'comment', null, strval( $row->rev_comment ) ) . "\n";
545 }
546
547 $text = '';
548 if ( $row->rev_deleted & Revision::DELETED_TEXT ) {
549 $out .= " " . Xml::element( 'text', array( 'deleted' => 'deleted' ) ) . "\n";
550 } elseif ( isset( $row->old_text ) ) {
551 // Raw text from the database may have invalid chars
552 $text = strval( Revision::getRevisionText( $row ) );
553 $out .= " " . Xml::elementClean( 'text',
554 array( 'xml:space' => 'preserve', 'bytes' => intval( $row->rev_len ) ),
555 strval( $text ) ) . "\n";
556 } else {
557 // Stub output
558 $out .= " " . Xml::element( 'text',
559 array( 'id' => $row->rev_text_id, 'bytes' => intval( $row->rev_len ) ),
560 "" ) . "\n";
561 }
562
563 wfRunHooks( 'XmlDumpWriterWriteRevision', array( &$this, &$out, $row, $text ) );
564
565 $out .= " </revision>\n";
566
567 wfProfileOut( __METHOD__ );
568 return $out;
569 }
570
571 /**
572 * Dumps a <logitem> section on the output stream, with
573 * data filled in from the given database row.
574 *
575 * @param $row object
576 * @return string
577 * @access private
578 */
579 function writeLogItem( $row ) {
580 wfProfileIn( __METHOD__ );
581
582 $out = " <logitem>\n";
583 $out .= " " . Xml::element( 'id', null, strval( $row->log_id ) ) . "\n";
584
585 $out .= $this->writeTimestamp( $row->log_timestamp );
586
587 if ( $row->log_deleted & LogPage::DELETED_USER ) {
588 $out .= " " . Xml::element( 'contributor', array( 'deleted' => 'deleted' ) ) . "\n";
589 } else {
590 $out .= $this->writeContributor( $row->log_user, $row->user_name );
591 }
592
593 if ( $row->log_deleted & LogPage::DELETED_COMMENT ) {
594 $out .= " " . Xml::element( 'comment', array( 'deleted' => 'deleted' ) ) . "\n";
595 } elseif ( $row->log_comment != '' ) {
596 $out .= " " . Xml::elementClean( 'comment', null, strval( $row->log_comment ) ) . "\n";
597 }
598
599 $out .= " " . Xml::element( 'type', null, strval( $row->log_type ) ) . "\n";
600 $out .= " " . Xml::element( 'action', null, strval( $row->log_action ) ) . "\n";
601
602 if ( $row->log_deleted & LogPage::DELETED_ACTION ) {
603 $out .= " " . Xml::element( 'text', array( 'deleted' => 'deleted' ) ) . "\n";
604 } else {
605 $title = Title::makeTitle( $row->log_namespace, $row->log_title );
606 $out .= " " . Xml::elementClean( 'logtitle', null, self::canonicalTitle( $title ) ) . "\n";
607 $out .= " " . Xml::elementClean( 'params',
608 array( 'xml:space' => 'preserve' ),
609 strval( $row->log_params ) ) . "\n";
610 }
611
612 $out .= " </logitem>\n";
613
614 wfProfileOut( __METHOD__ );
615 return $out;
616 }
617
618 function writeTimestamp( $timestamp ) {
619 $ts = wfTimestamp( TS_ISO_8601, $timestamp );
620 return " " . Xml::element( 'timestamp', null, $ts ) . "\n";
621 }
622
623 function writeContributor( $id, $text ) {
624 $out = " <contributor>\n";
625 if ( $id || !IP::isValid( $text ) ) {
626 $out .= " " . Xml::elementClean( 'username', null, strval( $text ) ) . "\n";
627 $out .= " " . Xml::element( 'id', null, strval( $id ) ) . "\n";
628 } else {
629 $out .= " " . Xml::elementClean( 'ip', null, strval( $text ) ) . "\n";
630 }
631 $out .= " </contributor>\n";
632 return $out;
633 }
634
635 /**
636 * Warning! This data is potentially inconsistent. :(
637 * @return string
638 */
639 function writeUploads( $row, $dumpContents = false ) {
640 if ( $row->page_namespace == NS_IMAGE ) {
641 $img = wfLocalFile( $row->page_title );
642 if ( $img && $img->exists() ) {
643 $out = '';
644 foreach ( array_reverse( $img->getHistory() ) as $ver ) {
645 $out .= $this->writeUpload( $ver, $dumpContents );
646 }
647 $out .= $this->writeUpload( $img, $dumpContents );
648 return $out;
649 }
650 }
651 return '';
652 }
653
654 /**
655 * @param $file File
656 * @param $dumpContents bool
657 * @return string
658 */
659 function writeUpload( $file, $dumpContents = false ) {
660 if ( $file->isOld() ) {
661 $archiveName = " " .
662 Xml::element( 'archivename', null, $file->getArchiveName() ) . "\n";
663 } else {
664 $archiveName = '';
665 }
666 if ( $dumpContents ) {
667 # Dump file as base64
668 # Uses only XML-safe characters, so does not need escaping
669 $contents = ' <contents encoding="base64">' .
670 chunk_split( base64_encode( file_get_contents( $file->getPath() ) ) ) .
671 " </contents>\n";
672 } else {
673 $contents = '';
674 }
675 return " <upload>\n" .
676 $this->writeTimestamp( $file->getTimestamp() ) .
677 $this->writeContributor( $file->getUser( 'id' ), $file->getUser( 'text' ) ) .
678 " " . Xml::elementClean( 'comment', null, $file->getDescription() ) . "\n" .
679 " " . Xml::element( 'filename', null, $file->getName() ) . "\n" .
680 $archiveName .
681 " " . Xml::element( 'src', null, $file->getCanonicalUrl() ) . "\n" .
682 " " . Xml::element( 'size', null, $file->getSize() ) . "\n" .
683 " " . Xml::element( 'sha1base36', null, $file->getSha1() ) . "\n" .
684 " " . Xml::element( 'rel', null, $file->getRel() ) . "\n" .
685 $contents .
686 " </upload>\n";
687 }
688
689 /**
690 * Return prefixed text form of title, but using the content language's
691 * canonical namespace. This skips any special-casing such as gendered
692 * user namespaces -- which while useful, are not yet listed in the
693 * XML <siteinfo> data so are unsafe in export.
694 *
695 * @param Title $title
696 * @return string
697 * @since 1.18
698 */
699 public static function canonicalTitle( Title $title ) {
700 if ( $title->getInterwiki() ) {
701 return $title->getPrefixedText();
702 }
703
704 global $wgContLang;
705 $prefix = str_replace( '_', ' ', $wgContLang->getNsText( $title->getNamespace() ) );
706
707 if ( $prefix !== '' ) {
708 $prefix .= ':';
709 }
710
711 return $prefix . $title->getText();
712 }
713 }
714
715
716 /**
717 * Base class for output stream; prints to stdout or buffer or whereever.
718 * @ingroup Dump
719 */
720 class DumpOutput {
721 function writeOpenStream( $string ) {
722 $this->write( $string );
723 }
724
725 function writeCloseStream( $string ) {
726 $this->write( $string );
727 }
728
729 function writeOpenPage( $page, $string ) {
730 $this->write( $string );
731 }
732
733 function writeClosePage( $string ) {
734 $this->write( $string );
735 }
736
737 function writeRevision( $rev, $string ) {
738 $this->write( $string );
739 }
740
741 function writeLogItem( $rev, $string ) {
742 $this->write( $string );
743 }
744
745 /**
746 * Override to write to a different stream type.
747 * @return bool
748 */
749 function write( $string ) {
750 print $string;
751 }
752
753 /**
754 * Close the old file, move it to a specified name,
755 * and reopen new file with the old name. Use this
756 * for writing out a file in multiple pieces
757 * at specified checkpoints (e.g. every n hours).
758 * @param $newname mixed File name. May be a string or an array with one element
759 */
760 function closeRenameAndReopen( $newname ) {
761 return;
762 }
763
764 /**
765 * Close the old file, and move it to a specified name.
766 * Use this for the last piece of a file written out
767 * at specified checkpoints (e.g. every n hours).
768 * @param $newname mixed File name. May be a string or an array with one element
769 * @param $open bool If true, a new file with the old filename will be opened again for writing (default: false)
770 */
771 function closeAndRename( $newname, $open = false ) {
772 return;
773 }
774
775 /**
776 * Returns the name of the file or files which are
777 * being written to, if there are any.
778 * @return null
779 */
780 function getFilenames() {
781 return NULL;
782 }
783 }
784
785 /**
786 * Stream outputter to send data to a file.
787 * @ingroup Dump
788 */
789 class DumpFileOutput extends DumpOutput {
790 protected $handle, $filename;
791
792 function __construct( $file ) {
793 $this->handle = fopen( $file, "wt" );
794 $this->filename = $file;
795 }
796
797 function write( $string ) {
798 fputs( $this->handle, $string );
799 }
800
801 function closeRenameAndReopen( $newname ) {
802 $this->closeAndRename( $newname, true );
803 }
804
805 function renameOrException( $newname ) {
806 if (! rename( $this->filename, $newname ) ) {
807 throw new MWException( __METHOD__ . ": rename of file {$this->filename} to $newname failed\n" );
808 }
809 }
810
811 function checkRenameArgCount( $newname ) {
812 if ( is_array( $newname ) ) {
813 if ( count( $newname ) > 1 ) {
814 throw new MWException( __METHOD__ . ": passed multiple arguments for rename of single file\n" );
815 } else {
816 $newname = $newname[0];
817 }
818 }
819 return $newname;
820 }
821
822 function closeAndRename( $newname, $open = false ) {
823 $newname = $this->checkRenameArgCount( $newname );
824 if ( $newname ) {
825 fclose( $this->handle );
826 $this->renameOrException( $newname );
827 if ( $open ) {
828 $this->handle = fopen( $this->filename, "wt" );
829 }
830 }
831 }
832
833 function getFilenames() {
834 return $this->filename;
835 }
836 }
837
838 /**
839 * Stream outputter to send data to a file via some filter program.
840 * Even if compression is available in a library, using a separate
841 * program can allow us to make use of a multi-processor system.
842 * @ingroup Dump
843 */
844 class DumpPipeOutput extends DumpFileOutput {
845 protected $command, $filename;
846
847 function __construct( $command, $file = null ) {
848 if ( !is_null( $file ) ) {
849 $command .= " > " . wfEscapeShellArg( $file );
850 }
851
852 $this->startCommand( $command );
853 $this->command = $command;
854 $this->filename = $file;
855 }
856
857 function startCommand( $command ) {
858 $spec = array(
859 0 => array( "pipe", "r" ),
860 );
861 $pipes = array();
862 $this->procOpenResource = proc_open( $command, $spec, $pipes );
863 $this->handle = $pipes[0];
864 }
865
866 function closeRenameAndReopen( $newname ) {
867 $this->closeAndRename( $newname, true );
868 }
869
870 function closeAndRename( $newname, $open = false ) {
871 $newname = $this->checkRenameArgCount( $newname );
872 if ( $newname ) {
873 fclose( $this->handle );
874 proc_close( $this->procOpenResource );
875 $this->renameOrException( $newname );
876 if ( $open ) {
877 $command = $this->command;
878 $command .= " > " . wfEscapeShellArg( $this->filename );
879 $this->startCommand( $command );
880 }
881 }
882 }
883
884 }
885
886 /**
887 * Sends dump output via the gzip compressor.
888 * @ingroup Dump
889 */
890 class DumpGZipOutput extends DumpPipeOutput {
891 function __construct( $file ) {
892 parent::__construct( "gzip", $file );
893 }
894 }
895
896 /**
897 * Sends dump output via the bgzip2 compressor.
898 * @ingroup Dump
899 */
900 class DumpBZip2Output extends DumpPipeOutput {
901 function __construct( $file ) {
902 parent::__construct( "bzip2", $file );
903 }
904 }
905
906 /**
907 * Sends dump output via the p7zip compressor.
908 * @ingroup Dump
909 */
910 class Dump7ZipOutput extends DumpPipeOutput {
911 function __construct( $file ) {
912 $command = $this->setup7zCommand( $file );
913 parent::__construct( $command );
914 $this->filename = $file;
915 }
916
917 function setup7zCommand( $file ) {
918 $command = "7za a -bd -si " . wfEscapeShellArg( $file );
919 // Suppress annoying useless crap from p7zip
920 // Unfortunately this could suppress real error messages too
921 $command .= ' >' . wfGetNull() . ' 2>&1';
922 return( $command );
923 }
924
925 function closeAndRename( $newname, $open = false ) {
926 $newname = $this->checkRenameArgCount( $newname );
927 if ( $newname ) {
928 fclose( $this->handle );
929 proc_close( $this->procOpenResource );
930 $this->renameOrException( $newname );
931 if ( $open ) {
932 $command = $this->setup7zCommand( $this->filename );
933 $this->startCommand( $command );
934 }
935 }
936 }
937 }
938
939
940
941 /**
942 * Dump output filter class.
943 * This just does output filtering and streaming; XML formatting is done
944 * higher up, so be careful in what you do.
945 * @ingroup Dump
946 */
947 class DumpFilter {
948 function __construct( &$sink ) {
949 $this->sink =& $sink;
950 }
951
952 function writeOpenStream( $string ) {
953 $this->sink->writeOpenStream( $string );
954 }
955
956 function writeCloseStream( $string ) {
957 $this->sink->writeCloseStream( $string );
958 }
959
960 function writeOpenPage( $page, $string ) {
961 $this->sendingThisPage = $this->pass( $page, $string );
962 if ( $this->sendingThisPage ) {
963 $this->sink->writeOpenPage( $page, $string );
964 }
965 }
966
967 function writeClosePage( $string ) {
968 if ( $this->sendingThisPage ) {
969 $this->sink->writeClosePage( $string );
970 $this->sendingThisPage = false;
971 }
972 }
973
974 function writeRevision( $rev, $string ) {
975 if ( $this->sendingThisPage ) {
976 $this->sink->writeRevision( $rev, $string );
977 }
978 }
979
980 function writeLogItem( $rev, $string ) {
981 $this->sink->writeRevision( $rev, $string );
982 }
983
984 function closeRenameAndReopen( $newname ) {
985 $this->sink->closeRenameAndReopen( $newname );
986 }
987
988 function closeAndRename( $newname, $open = false ) {
989 $this->sink->closeAndRename( $newname, $open );
990 }
991
992 function getFilenames() {
993 return $this->sink->getFilenames();
994 }
995
996 /**
997 * Override for page-based filter types.
998 * @return bool
999 */
1000 function pass( $page ) {
1001 return true;
1002 }
1003 }
1004
1005 /**
1006 * Simple dump output filter to exclude all talk pages.
1007 * @ingroup Dump
1008 */
1009 class DumpNotalkFilter extends DumpFilter {
1010 function pass( $page ) {
1011 return !MWNamespace::isTalk( $page->page_namespace );
1012 }
1013 }
1014
1015 /**
1016 * Dump output filter to include or exclude pages in a given set of namespaces.
1017 * @ingroup Dump
1018 */
1019 class DumpNamespaceFilter extends DumpFilter {
1020 var $invert = false;
1021 var $namespaces = array();
1022
1023 function __construct( &$sink, $param ) {
1024 parent::__construct( $sink );
1025
1026 $constants = array(
1027 "NS_MAIN" => NS_MAIN,
1028 "NS_TALK" => NS_TALK,
1029 "NS_USER" => NS_USER,
1030 "NS_USER_TALK" => NS_USER_TALK,
1031 "NS_PROJECT" => NS_PROJECT,
1032 "NS_PROJECT_TALK" => NS_PROJECT_TALK,
1033 "NS_FILE" => NS_FILE,
1034 "NS_FILE_TALK" => NS_FILE_TALK,
1035 "NS_IMAGE" => NS_IMAGE, // NS_IMAGE is an alias for NS_FILE
1036 "NS_IMAGE_TALK" => NS_IMAGE_TALK,
1037 "NS_MEDIAWIKI" => NS_MEDIAWIKI,
1038 "NS_MEDIAWIKI_TALK" => NS_MEDIAWIKI_TALK,
1039 "NS_TEMPLATE" => NS_TEMPLATE,
1040 "NS_TEMPLATE_TALK" => NS_TEMPLATE_TALK,
1041 "NS_HELP" => NS_HELP,
1042 "NS_HELP_TALK" => NS_HELP_TALK,
1043 "NS_CATEGORY" => NS_CATEGORY,
1044 "NS_CATEGORY_TALK" => NS_CATEGORY_TALK );
1045
1046 if ( $param { 0 } == '!' ) {
1047 $this->invert = true;
1048 $param = substr( $param, 1 );
1049 }
1050
1051 foreach ( explode( ',', $param ) as $key ) {
1052 $key = trim( $key );
1053 if ( isset( $constants[$key] ) ) {
1054 $ns = $constants[$key];
1055 $this->namespaces[$ns] = true;
1056 } elseif ( is_numeric( $key ) ) {
1057 $ns = intval( $key );
1058 $this->namespaces[$ns] = true;
1059 } else {
1060 throw new MWException( "Unrecognized namespace key '$key'\n" );
1061 }
1062 }
1063 }
1064
1065 function pass( $page ) {
1066 $match = isset( $this->namespaces[$page->page_namespace] );
1067 return $this->invert xor $match;
1068 }
1069 }
1070
1071
1072 /**
1073 * Dump output filter to include only the last revision in each page sequence.
1074 * @ingroup Dump
1075 */
1076 class DumpLatestFilter extends DumpFilter {
1077 var $page, $pageString, $rev, $revString;
1078
1079 function writeOpenPage( $page, $string ) {
1080 $this->page = $page;
1081 $this->pageString = $string;
1082 }
1083
1084 function writeClosePage( $string ) {
1085 if ( $this->rev ) {
1086 $this->sink->writeOpenPage( $this->page, $this->pageString );
1087 $this->sink->writeRevision( $this->rev, $this->revString );
1088 $this->sink->writeClosePage( $string );
1089 }
1090 $this->rev = null;
1091 $this->revString = null;
1092 $this->page = null;
1093 $this->pageString = null;
1094 }
1095
1096 function writeRevision( $rev, $string ) {
1097 if ( $rev->rev_id == $this->page->page_latest ) {
1098 $this->rev = $rev;
1099 $this->revString = $string;
1100 }
1101 }
1102 }
1103
1104 /**
1105 * Base class for output stream; prints to stdout or buffer or whereever.
1106 * @ingroup Dump
1107 */
1108 class DumpMultiWriter {
1109 function __construct( $sinks ) {
1110 $this->sinks = $sinks;
1111 $this->count = count( $sinks );
1112 }
1113
1114 function writeOpenStream( $string ) {
1115 for ( $i = 0; $i < $this->count; $i++ ) {
1116 $this->sinks[$i]->writeOpenStream( $string );
1117 }
1118 }
1119
1120 function writeCloseStream( $string ) {
1121 for ( $i = 0; $i < $this->count; $i++ ) {
1122 $this->sinks[$i]->writeCloseStream( $string );
1123 }
1124 }
1125
1126 function writeOpenPage( $page, $string ) {
1127 for ( $i = 0; $i < $this->count; $i++ ) {
1128 $this->sinks[$i]->writeOpenPage( $page, $string );
1129 }
1130 }
1131
1132 function writeClosePage( $string ) {
1133 for ( $i = 0; $i < $this->count; $i++ ) {
1134 $this->sinks[$i]->writeClosePage( $string );
1135 }
1136 }
1137
1138 function writeRevision( $rev, $string ) {
1139 for ( $i = 0; $i < $this->count; $i++ ) {
1140 $this->sinks[$i]->writeRevision( $rev, $string );
1141 }
1142 }
1143
1144 function closeRenameAndReopen( $newnames ) {
1145 $this->closeAndRename( $newnames, true );
1146 }
1147
1148 function closeAndRename( $newnames, $open = false ) {
1149 for ( $i = 0; $i < $this->count; $i++ ) {
1150 $this->sinks[$i]->closeAndRename( $newnames[$i], $open );
1151 }
1152 }
1153
1154 function getFilenames() {
1155 $filenames = array();
1156 for ( $i = 0; $i < $this->count; $i++ ) {
1157 $filenames[] = $this->sinks[$i]->getFilenames();
1158 }
1159 return $filenames;
1160 }
1161
1162 }
1163
1164 function xmlsafe( $string ) {
1165 wfProfileIn( __FUNCTION__ );
1166
1167 /**
1168 * The page may contain old data which has not been properly normalized.
1169 * Invalid UTF-8 sequences or forbidden control characters will make our
1170 * XML output invalid, so be sure to strip them out.
1171 */
1172 $string = UtfNormal::cleanUp( $string );
1173
1174 $string = htmlspecialchars( $string );
1175 wfProfileOut( __FUNCTION__ );
1176 return $string;
1177 }