3 * Implements Special:Export
5 * Copyright © 2003-2008 Brion Vibber <brion@pobox.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
23 * @ingroup SpecialPage
26 use Mediawiki\MediaWikiServices
;
29 * A special page that allows users to export pages in a XML file
31 * @ingroup SpecialPage
33 class SpecialExport
extends SpecialPage
{
34 private $curonly, $doExport, $pageLinkDepth, $templates;
36 public function __construct() {
37 parent
::__construct( 'Export' );
40 public function execute( $par ) {
42 $this->outputHeader();
43 $config = $this->getConfig();
46 $this->curonly
= true;
47 $this->doExport
= false;
48 $request = $this->getRequest();
49 $this->templates
= $request->getCheck( 'templates' );
50 $this->pageLinkDepth
= $this->validateLinkDepth(
51 $request->getIntOrNull( 'pagelink-depth' )
56 if ( $request->getCheck( 'addcat' ) ) {
57 $page = $request->getText( 'pages' );
58 $catname = $request->getText( 'catname' );
60 if ( $catname !== '' && $catname !== null && $catname !== false ) {
61 $t = Title
::makeTitleSafe( NS_MAIN
, $catname );
64 * @todo FIXME: This can lead to hitting memory limit for very large
65 * categories. Ideally we would do the lookup synchronously
66 * during the export in a single query.
68 $catpages = $this->getPagesFromCategory( $t );
73 $page .= implode( "\n", $catpages );
77 } elseif ( $request->getCheck( 'addns' ) && $config->get( 'ExportFromNamespaces' ) ) {
78 $page = $request->getText( 'pages' );
79 $nsindex = $request->getText( 'nsindex', '' );
81 if ( strval( $nsindex ) !== '' ) {
83 * Same implementation as above, so same @todo
85 $nspages = $this->getPagesFromNamespace( $nsindex );
87 $page .= "\n" . implode( "\n", $nspages );
90 } elseif ( $request->getCheck( 'exportall' ) && $config->get( 'ExportAllowAll' ) ) {
91 $this->doExport
= true;
94 /* Although $page and $history are not used later on, we
95 nevertheless set them to avoid that PHP notices about using
96 undefined variables foul up our XML output (see call to
97 doExport(...) further down) */
100 } elseif ( $request->wasPosted() && $par == '' ) {
101 $page = $request->getText( 'pages' );
102 $this->curonly
= $request->getCheck( 'curonly' );
103 $rawOffset = $request->getVal( 'offset' );
106 $offset = wfTimestamp( TS_MW
, $rawOffset );
111 $maxHistory = $config->get( 'ExportMaxHistory' );
112 $limit = $request->getInt( 'limit' );
113 $dir = $request->getVal( 'dir' );
117 'limit' => $maxHistory,
119 $historyCheck = $request->getCheck( 'history' );
121 if ( $this->curonly
) {
122 $history = WikiExporter
::CURRENT
;
123 } elseif ( !$historyCheck ) {
124 if ( $limit > 0 && ( $maxHistory == 0 ||
$limit < $maxHistory ) ) {
125 $history['limit'] = $limit;
128 if ( !is_null( $offset ) ) {
129 $history['offset'] = $offset;
132 if ( strtolower( $dir ) == 'desc' ) {
133 $history['dir'] = 'desc';
138 $this->doExport
= true;
141 // Default to current-only for GET requests.
142 $page = $request->getText( 'pages', $par );
143 $historyCheck = $request->getCheck( 'history' );
145 if ( $historyCheck ) {
146 $history = WikiExporter
::FULL
;
148 $history = WikiExporter
::CURRENT
;
152 $this->doExport
= true;
156 if ( !$config->get( 'ExportAllowHistory' ) ) {
158 $history = WikiExporter
::CURRENT
;
161 $list_authors = $request->getCheck( 'listauthors' );
162 if ( !$this->curonly ||
!$config->get( 'ExportAllowListContributors' ) ) {
163 $list_authors = false;
166 if ( $this->doExport
) {
167 $this->getOutput()->disable();
169 // Cancel output buffering and gzipping if set
170 // This should provide safer streaming for pages with history
171 wfResetOutputBuffers();
172 $request->response()->header( "Content-type: application/xml; charset=utf-8" );
173 $request->response()->header( "X-Robots-Tag: noindex,nofollow" );
175 if ( $request->getCheck( 'wpDownload' ) ) {
176 // Provide a sane filename suggestion
177 $filename = urlencode( $config->get( 'Sitename' ) . '-' . wfTimestampNow() . '.xml' );
178 $request->response()->header( "Content-disposition: attachment;filename={$filename}" );
181 $this->doExport( $page, $history, $list_authors, $exportall );
186 $out = $this->getOutput();
187 $out->addWikiMsg( 'exporttext' );
190 $categoryName = $request->getText( 'catname' );
197 'type' => 'textwithbutton',
199 'horizontal-label' => true,
200 'label-message' => 'export-addcattext',
201 'default' => $categoryName,
203 'buttontype' => 'submit',
204 'buttonname' => 'addcat',
205 'buttondefault' => $this->msg( 'export-addcat' )->text(),
206 'hide-if' => [ '===', 'exportall', '1' ],
209 if ( $config->get( 'ExportFromNamespaces' ) ) {
212 'type' => 'namespaceselectwithbutton',
213 'default' => $nsindex,
214 'label-message' => 'export-addnstext',
215 'horizontal-label' => true,
218 'cssclass' => 'namespaceselector',
219 'buttontype' => 'submit',
220 'buttonname' => 'addns',
221 'buttondefault' => $this->msg( 'export-addns' )->text(),
222 'hide-if' => [ '===', 'exportall', '1' ],
227 if ( $config->get( 'ExportAllowAll' ) ) {
231 'label-message' => 'exportall',
232 'name' => 'exportall',
234 'default' => $request->wasPosted() ?
$request->getCheck( 'exportall' ) : false,
241 'class' => 'HTMLTextAreaField',
243 'label-message' => 'export-manual',
247 'hide-if' => [ '===', 'exportall', '1' ],
251 if ( $config->get( 'ExportAllowHistory' ) ) {
255 'label-message' => 'exportcuronly',
258 'default' => $request->wasPosted() ?
$request->getCheck( 'curonly' ) : true,
262 $out->addWikiMsg( 'exportnohistory' );
268 'label-message' => 'export-templates',
269 'name' => 'templates',
270 'id' => 'wpExportTemplates',
271 'default' => $request->wasPosted() ?
$request->getCheck( 'templates' ) : false,
275 if ( $config->get( 'ExportMaxLinkDepth' ) ||
$this->userCanOverrideExportDepth() ) {
277 'pagelink-depth' => [
279 'name' => 'pagelink-depth',
280 'id' => 'pagelink-depth',
281 'label-message' => 'export-pagelinks',
291 'name' => 'wpDownload',
292 'id' => 'wpDownload',
293 'default' => $request->wasPosted() ?
$request->getCheck( 'wpDownload' ) : true,
294 'label-message' => 'export-download',
298 if ( $config->get( 'ExportAllowListContributors' ) ) {
302 'label-message' => 'exportlistauthors',
303 'default' => $request->wasPosted() ?
$request->getCheck( 'listauthors' ) : false,
304 'name' => 'listauthors',
305 'id' => 'listauthors',
310 $htmlForm = HTMLForm
::factory( 'ooui', $formDescriptor, $this->getContext() );
311 $htmlForm->setSubmitTextMsg( 'export-submit' );
312 $htmlForm->prepareForm()->displayForm( false );
313 $this->addHelpLink( 'Help:Export' );
319 private function userCanOverrideExportDepth() {
320 return $this->getUser()->isAllowed( 'override-export-depth' );
324 * Do the actual page exporting
326 * @param string $page User input on what page(s) to export
327 * @param int $history One of the WikiExporter history export constants
328 * @param bool $list_authors Whether to add distinct author list (when
329 * not returning full history)
330 * @param bool $exportall Whether to export everything
332 private function doExport( $page, $history, $list_authors, $exportall ) {
333 // If we are grabbing everything, enable full history and ignore the rest
335 $history = WikiExporter
::FULL
;
337 $pageSet = []; // Inverted index of all pages to look up
339 // Split up and normalize input
340 foreach ( explode( "\n", $page ) as $pageName ) {
341 $pageName = trim( $pageName );
342 $title = Title
::newFromText( $pageName );
343 if ( $title && !$title->isExternal() && $title->getText() !== '' ) {
344 // Only record each page once!
345 $pageSet[$title->getPrefixedText()] = true;
349 // Set of original pages to pass on to further manipulation...
350 $inputPages = array_keys( $pageSet );
352 // Look up any linked pages if asked...
353 if ( $this->templates
) {
354 $pageSet = $this->getTemplates( $inputPages, $pageSet );
356 $linkDepth = $this->pageLinkDepth
;
358 $pageSet = $this->getPageLinks( $inputPages, $pageSet, $linkDepth );
361 $pages = array_keys( $pageSet );
363 // Normalize titles to the same format and remove dupes, see T19374
364 foreach ( $pages as $k => $v ) {
365 $pages[$k] = str_replace( " ", "_", $v );
368 $pages = array_unique( $pages );
371 /* Ok, let's get to it... */
372 if ( $history == WikiExporter
::CURRENT
) {
374 $db = wfGetDB( DB_REPLICA
);
375 $buffer = WikiExporter
::BUFFER
;
377 // Use an unbuffered query; histories may be very long!
378 $lb = MediaWikiServices
::getInstance()->getDBLoadBalancerFactory()->newMainLB();
379 $db = $lb->getConnection( DB_REPLICA
);
380 $buffer = WikiExporter
::STREAM
;
382 // This might take a while... :D
383 MediaWiki\
suppressWarnings();
385 MediaWiki\restoreWarnings
();
388 $exporter = new WikiExporter( $db, $history, $buffer );
389 $exporter->list_authors
= $list_authors;
390 $exporter->openStream();
393 $exporter->allPages();
395 foreach ( $pages as $page ) {
396 # T10824: Only export pages the user can read
397 $title = Title
::newFromText( $page );
398 if ( is_null( $title ) ) {
399 // @todo Perhaps output an <error> tag or something.
403 if ( !$title->userCan( 'read', $this->getUser() ) ) {
404 // @todo Perhaps output an <error> tag or something.
408 $exporter->pageByTitle( $title );
412 $exporter->closeStream();
420 * @param Title $title
423 private function getPagesFromCategory( $title ) {
426 $maxPages = $this->getConfig()->get( 'ExportPagelistLimit' );
428 $name = $title->getDBkey();
430 $dbr = wfGetDB( DB_REPLICA
);
432 [ 'page', 'categorylinks' ],
433 [ 'page_namespace', 'page_title' ],
434 [ 'cl_from=page_id', 'cl_to' => $name ],
436 [ 'LIMIT' => $maxPages ]
441 foreach ( $res as $row ) {
442 $n = $row->page_title
;
443 if ( $row->page_namespace
) {
444 $ns = $wgContLang->getNsText( $row->page_namespace
);
455 * @param int $nsindex
458 private function getPagesFromNamespace( $nsindex ) {
461 $maxPages = $this->getConfig()->get( 'ExportPagelistLimit' );
463 $dbr = wfGetDB( DB_REPLICA
);
466 [ 'page_namespace', 'page_title' ],
467 [ 'page_namespace' => $nsindex ],
469 [ 'LIMIT' => $maxPages ]
474 foreach ( $res as $row ) {
475 $n = $row->page_title
;
477 if ( $row->page_namespace
) {
478 $ns = $wgContLang->getNsText( $row->page_namespace
);
489 * Expand a list of pages to include templates used in those pages.
490 * @param array $inputPages List of titles to look up
491 * @param array $pageSet Associative array indexed by titles for output
492 * @return array Associative array index by titles
494 private function getTemplates( $inputPages, $pageSet ) {
495 return $this->getLinks( $inputPages, $pageSet,
497 [ 'namespace' => 'tl_namespace', 'title' => 'tl_title' ],
498 [ 'page_id=tl_from' ]
503 * Validate link depth setting, if available.
507 private function validateLinkDepth( $depth ) {
512 if ( !$this->userCanOverrideExportDepth() ) {
513 $maxLinkDepth = $this->getConfig()->get( 'ExportMaxLinkDepth' );
514 if ( $depth > $maxLinkDepth ) {
515 return $maxLinkDepth;
520 * There's a HARD CODED limit of 5 levels of recursion here to prevent a
521 * crazy-big export from being done by someone setting the depth
522 * number too high. In other words, last resort safety net.
525 return intval( min( $depth, 5 ) );
529 * Expand a list of pages to include pages linked to from that page.
530 * @param array $inputPages
531 * @param array $pageSet
535 private function getPageLinks( $inputPages, $pageSet, $depth ) {
536 // @codingStandardsIgnoreStart Squiz.WhiteSpace.SemicolonSpacing.Incorrect
537 for ( ; $depth > 0; --$depth ) {
538 // @codingStandardsIgnoreEnd
539 $pageSet = $this->getLinks(
540 $inputPages, $pageSet, 'pagelinks',
541 [ 'namespace' => 'pl_namespace', 'title' => 'pl_title' ],
542 [ 'page_id=pl_from' ]
544 $inputPages = array_keys( $pageSet );
551 * Expand a list of pages to include items used in those pages.
552 * @param array $inputPages Array of page titles
553 * @param array $pageSet
554 * @param string $table
555 * @param array $fields Array of field names
559 private function getLinks( $inputPages, $pageSet, $table, $fields, $join ) {
560 $dbr = wfGetDB( DB_REPLICA
);
562 foreach ( $inputPages as $page ) {
563 $title = Title
::newFromText( $page );
566 $pageSet[$title->getPrefixedText()] = true;
567 /// @todo FIXME: May or may not be more efficient to batch these
568 /// by namespace when given multiple input pages.
569 $result = $dbr->select(
575 'page_namespace' => $title->getNamespace(),
576 'page_title' => $title->getDBkey()
582 foreach ( $result as $row ) {
583 $template = Title
::makeTitle( $row->namespace, $row->title
);
584 $pageSet[$template->getPrefixedText()] = true;
592 protected function getGroupName() {