Merge "mw.Feedback: If the message is posted remotely, link the title correctly"
[lhc/web/wiklou.git] / maintenance / renderDump.php
1 <?php
2 /**
3 * Take page text out of an XML dump file and render basic HTML out to files.
4 * This is *NOT* suitable for publishing or offline use; it's intended for
5 * running comparative tests of parsing behavior using real-world data.
6 *
7 * Templates etc are pulled from the local wiki database, not from the dump.
8 *
9 * Copyright (C) 2006 Brion Vibber <brion@pobox.com>
10 * https://www.mediawiki.org/
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 * http://www.gnu.org/copyleft/gpl.html
26 *
27 * @file
28 * @ingroup Maintenance
29 */
30
31 require_once __DIR__ . '/Maintenance.php';
32
33 /**
34 * Maintenance script that takes page text out of an XML dump file
35 * and render basic HTML out to files.
36 *
37 * @ingroup Maintenance
38 */
39 class DumpRenderer extends Maintenance {
40
41 private $count = 0;
42 private $outputDirectory, $startTime;
43
44 public function __construct() {
45 parent::__construct();
46 $this->addDescription(
47 'Take page text out of an XML dump file and render basic HTML out to files' );
48 $this->addOption( 'output-dir', 'The directory to output the HTML files to', true, true );
49 $this->addOption( 'prefix', 'Prefix for the rendered files (defaults to wiki)', false, true );
50 $this->addOption( 'parser', 'Use an alternative parser class', false, true );
51 }
52
53 public function execute() {
54 $this->outputDirectory = $this->getOption( 'output-dir' );
55 $this->prefix = $this->getOption( 'prefix', 'wiki' );
56 $this->startTime = microtime( true );
57
58 if ( $this->hasOption( 'parser' ) ) {
59 global $wgParserConf;
60 $wgParserConf['class'] = $this->getOption( 'parser' );
61 $this->prefix .= "-{$wgParserConf['class']}";
62 }
63
64 $source = new ImportStreamSource( $this->getStdin() );
65 $importer = new WikiImporter( $source, $this->getConfig() );
66
67 $importer->setRevisionCallback(
68 [ $this, 'handleRevision' ] );
69 $importer->setNoticeCallback( function ( $msg, $params ) {
70 echo wfMessage( $msg, $params )->text() . "\n";
71 } );
72
73 $importer->doImport();
74
75 $delta = microtime( true ) - $this->startTime;
76 $this->error( "Rendered {$this->count} pages in " . round( $delta, 2 ) . " seconds " );
77 if ( $delta > 0 ) {
78 $this->error( round( $this->count / $delta, 2 ) . " pages/sec" );
79 }
80 $this->error( "\n" );
81 }
82
83 /**
84 * Callback function for each revision, turn into HTML and save
85 * @param Revision $rev
86 */
87 public function handleRevision( $rev ) {
88 $title = $rev->getTitle();
89 if ( !$title ) {
90 $this->error( "Got bogus revision with null title!" );
91
92 return;
93 }
94 $display = $title->getPrefixedText();
95
96 $this->count++;
97
98 $sanitized = rawurlencode( $display );
99 $filename = sprintf( "%s/%s-%07d-%s.html",
100 $this->outputDirectory,
101 $this->prefix,
102 $this->count,
103 $sanitized );
104 $this->output( sprintf( "%s\n", $filename, $display ) );
105
106 $user = new User();
107 $options = ParserOptions::newFromUser( $user );
108
109 $content = $rev->getContent();
110 $output = $content->getParserOutput( $title, null, $options );
111
112 file_put_contents( $filename,
113 "<!DOCTYPE html>\n" .
114 "<html lang=\"en\" dir=\"ltr\">\n" .
115 "<head>\n" .
116 "<meta charset=\"UTF-8\" />\n" .
117 "<title>" . htmlspecialchars( $display ) . "</title>\n" .
118 "</head>\n" .
119 "<body>\n" .
120 $output->getText() .
121 "</body>\n" .
122 "</html>" );
123 }
124 }
125
126 $maintClass = DumpRenderer::class;
127 require_once RUN_MAINTENANCE_IF_MAIN;