Fix typo in description
[mediawiki.git] / maintenance / dumpBackup.php
blob90e8f72fff65ed0d366120b3963e30ebdd696f13
1 <?php
2 /**
3 * Script that dumps wiki pages or logging database into an XML interchange
4 * wrapper format for export or backup
6 * Copyright © 2005 Brion Vibber <brion@pobox.com>
7 * http://www.mediawiki.org/
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.
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.
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
24 * @file
25 * @ingroup Dump Maintenance
28 $originalDir = getcwd();
30 $optionsWithArgs = array( 'pagelist', 'start', 'end' );
32 require_once( dirname( __FILE__ ) . '/commandLine.inc' );
33 require_once( 'backup.inc' );
35 $dumper = new BackupDumper( $argv );
37 if ( isset( $options['quiet'] ) ) {
38 $dumper->reporting = false;
41 if ( isset( $options['pagelist'] ) ) {
42 $olddir = getcwd();
43 chdir( $originalDir );
44 $pages = file( $options['pagelist'] );
45 chdir( $olddir );
46 if ( $pages === false ) {
47 wfDie( "Unable to open file {$options['pagelist']}\n" );
49 $pages = array_map( 'trim', $pages );
50 $dumper->pages = array_filter( $pages, create_function( '$x', 'return $x !== "";' ) );
53 if ( isset( $options['start'] ) ) {
54 $dumper->startId = intval( $options['start'] );
56 if ( isset( $options['end'] ) ) {
57 $dumper->endId = intval( $options['end'] );
59 $dumper->skipHeader = isset( $options['skip-header'] );
60 $dumper->skipFooter = isset( $options['skip-footer'] );
61 $dumper->dumpUploads = isset( $options['uploads'] );
63 $textMode = isset( $options['stub'] ) ? WikiExporter::STUB : WikiExporter::TEXT;
65 if ( isset( $options['full'] ) ) {
66 $dumper->dump( WikiExporter::FULL, $textMode );
67 } elseif ( isset( $options['current'] ) ) {
68 $dumper->dump( WikiExporter::CURRENT, $textMode );
69 } elseif ( isset( $options['stable'] ) ) {
70 $dumper->dump( WikiExporter::STABLE, $textMode );
71 } elseif ( isset( $options['logs'] ) ) {
72 $dumper->dump( WikiExporter::LOGS );
73 } else {
74 $dumper->progress( <<<ENDS
75 This script dumps the wiki page or logging database into an
76 XML interchange wrapper format for export or backup.
78 XML output is sent to stdout; progress reports are sent to stderr.
80 Usage: php dumpBackup.php <action> [<options>]
81 Actions:
82 --full Dump all revisions of every page.
83 --current Dump only the latest revision of every page.
84 --logs Dump all log events.
85 --stable Stable versions of pages?
86 --pagelist=<file>
87 Where <file> is a list of page titles to be dumped
89 Options:
90 --quiet Don't dump status reports to stderr.
91 --report=n Report position and speed after every n pages processed.
92 (Default: 100)
93 --server=h Force reading from MySQL server h
94 --start=n Start from page_id or log_id n
95 --end=n Stop before page_id or log_id n (exclusive)
96 --skip-header Don't output the <mediawiki> header
97 --skip-footer Don't output the </mediawiki> footer
98 --stub Don't perform old_text lookups; for 2-pass dump
99 --uploads Include upload records (experimental)
100 --conf=<file> Use the specified configuration file (LocalSettings.php)
102 --wiki=<wiki> Only back up the specified <wiki>
104 Fancy stuff: (Works? Add examples please.)
105 --plugin=<class>[:<file>] Load a dump plugin class
106 --output=<type>:<file> Begin a filtered output stream;
107 <type>s: file, gzip, bzip2, 7zip
108 --filter=<type>[:<options>] Add a filter on an output branch
110 ENDS