Merge "mediawiki.widgets: Remove use of bind() for lexical 'this' binding"
[lhc/web/wiklou.git] / maintenance / dumpBackup.php
1 <?php
2 /**
3 * Script that dumps wiki pages or logging database into an XML interchange
4 * wrapper format for export or backup
5 *
6 * Copyright © 2005 Brion Vibber <brion@pobox.com>
7 * https://www.mediawiki.org/
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 * @ingroup Dump Maintenance
26 */
27
28 require_once __DIR__ . '/backup.inc';
29
30 class DumpBackup extends BackupDumper {
31 function __construct( $args = null ) {
32 parent::__construct();
33
34 $this->addDescription( <<<TEXT
35 This script dumps the wiki page or logging database into an
36 XML interchange wrapper format for export or backup.
37
38 XML output is sent to stdout; progress reports are sent to stderr.
39
40 WARNING: this is not a full database dump! It is merely for public export
41 of your wiki. For full backup, see our online help at:
42 https://www.mediawiki.org/wiki/Backup
43 TEXT
44 );
45 $this->stderr = fopen( "php://stderr", "wt" );
46 // Actions
47 $this->addOption( 'full', 'Dump all revisions of every page' );
48 $this->addOption( 'current', 'Dump only the latest revision of every page.' );
49 $this->addOption( 'logs', 'Dump all log events' );
50 $this->addOption( 'stable', 'Dump stable versions of pages' );
51 $this->addOption( 'revrange', 'Dump range of revisions specified by revstart and ' .
52 'revend parameters' );
53 $this->addOption( 'pagelist',
54 'Dump only pages included in the file', false, true );
55 // Options
56 $this->addOption( 'start', 'Start from page_id or log_id', false, true );
57 $this->addOption( 'end', 'Stop before page_id or log_id n (exclusive)', false, true );
58 $this->addOption( 'revstart', 'Start from rev_id', false, true );
59 $this->addOption( 'revend', 'Stop before rev_id n (exclusive)', false, true );
60 $this->addOption( 'skip-header', 'Don\'t output the <mediawiki> header' );
61 $this->addOption( 'skip-footer', 'Don\'t output the </mediawiki> footer' );
62 $this->addOption( 'stub', 'Don\'t perform old_text lookups; for 2-pass dump' );
63 $this->addOption( 'uploads', 'Include upload records without files' );
64 $this->addOption( 'include-files', 'Include files within the XML stream' );
65
66 if ( $args ) {
67 $this->loadWithArgv( $args );
68 $this->processOptions();
69 }
70 }
71
72 function execute() {
73 $this->processOptions();
74
75 $textMode = $this->hasOption( 'stub' ) ? WikiExporter::STUB : WikiExporter::TEXT;
76
77 if ( $this->hasOption( 'full' ) ) {
78 $this->dump( WikiExporter::FULL, $textMode );
79 } elseif ( $this->hasOption( 'current' ) ) {
80 $this->dump( WikiExporter::CURRENT, $textMode );
81 } elseif ( $this->hasOption( 'stable' ) ) {
82 $this->dump( WikiExporter::STABLE, $textMode );
83 } elseif ( $this->hasOption( 'logs' ) ) {
84 $this->dump( WikiExporter::LOGS );
85 } elseif ( $this->hasOption( 'revrange' ) ) {
86 $this->dump( WikiExporter::RANGE, $textMode );
87 } else {
88 $this->error( 'No valid action specified.', 1 );
89 }
90 }
91
92 function processOptions() {
93 parent::processOptions();
94
95 // Evaluate options specific to this class
96 $this->reporting = !$this->hasOption( 'quiet' );
97
98 if ( $this->hasOption( 'pagelist' ) ) {
99 $filename = $this->getOption( 'pagelist' );
100 $pages = file( $filename );
101 if ( $pages === false ) {
102 $this->fatalError( "Unable to open file {$filename}\n" );
103 }
104 $pages = array_map( 'trim', $pages );
105 $this->pages = array_filter( $pages, function ( $x ) {
106 return $x !== '';
107 } );
108 }
109
110 if ( $this->hasOption( 'start' ) ) {
111 $this->startId = intval( $this->getOption( 'start' ) );
112 }
113
114 if ( $this->hasOption( 'end' ) ) {
115 $this->endId = intval( $this->getOption( 'end' ) );
116 }
117
118 if ( $this->hasOption( 'revstart' ) ) {
119 $this->revStartId = intval( $this->getOption( 'revstart' ) );
120 }
121
122 if ( $this->hasOption( 'revend' ) ) {
123 $this->revEndId = intval( $this->getOption( 'revend' ) );
124 }
125
126 $this->skipHeader = $this->hasOption( 'skip-header' );
127 $this->skipFooter = $this->hasOption( 'skip-footer' );
128 $this->dumpUploads = $this->hasOption( 'uploads' );
129 $this->dumpUploadFileContents = $this->hasOption( 'include-files' );
130 }
131 }
132
133 $maintClass = 'DumpBackup';
134 require_once RUN_MAINTENANCE_IF_MAIN;