3 * MediaWiki page data importer.
5 * Copyright © 2003,2005 Brion Vibber <brion@pobox.com>
6 * https://www.mediawiki.org/
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.
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.
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
24 * @ingroup SpecialPage
26 use MediaWiki\MediaWikiServices
;
29 * Imports a XML dump from a file (either from file upload, files on disk, or HTTP)
30 * @ingroup SpecialPage
32 class ImportStreamSource
implements ImportSource
{
33 function __construct( $handle ) {
34 $this->mHandle
= $handle;
41 return feof( $this->mHandle
);
47 function readChunk() {
48 return fread( $this->mHandle
, 32768 );
52 * @param string $filename
55 static function newFromFile( $filename ) {
56 MediaWiki\
suppressWarnings();
57 $file = fopen( $filename, 'rt' );
58 MediaWiki\restoreWarnings
();
60 return Status
::newFatal( "importcantopen" );
62 return Status
::newGood( new ImportStreamSource( $file ) );
66 * @param string $fieldname
69 static function newFromUpload( $fieldname = "xmlimport" ) {
70 $upload =& $_FILES[$fieldname];
72 if ( $upload === null ||
!$upload['name'] ) {
73 return Status
::newFatal( 'importnofile' );
75 if ( !empty( $upload['error'] ) ) {
76 switch ( $upload['error'] ) {
78 # The uploaded file exceeds the upload_max_filesize directive in php.ini.
79 return Status
::newFatal( 'importuploaderrorsize' );
81 # The uploaded file exceeds the MAX_FILE_SIZE directive that
82 # was specified in the HTML form.
83 return Status
::newFatal( 'importuploaderrorsize' );
85 # The uploaded file was only partially uploaded
86 return Status
::newFatal( 'importuploaderrorpartial' );
88 # Missing a temporary folder.
89 return Status
::newFatal( 'importuploaderrortemp' );
90 # case else: # Currently impossible
94 $fname = $upload['tmp_name'];
95 if ( is_uploaded_file( $fname ) ) {
96 return ImportStreamSource
::newFromFile( $fname );
98 return Status
::newFatal( 'importnofile' );
104 * @param string $method
107 static function newFromURL( $url, $method = 'GET' ) {
108 global $wgHTTPImportTimeout;
109 wfDebug( __METHOD__
. ": opening $url\n" );
110 # Use the standard HTTP fetch function; it times out
111 # quicker and sorts out user-agent problems which might
112 # otherwise prevent importing from large sites, such
113 # as the Wikimedia cluster, etc.
114 $data = Http
::request(
118 'followRedirects' => true,
119 'timeout' => $wgHTTPImportTimeout
123 if ( $data !== false ) {
125 fwrite( $file, $data );
128 return Status
::newGood( new ImportStreamSource( $file ) );
130 return Status
::newFatal( 'importcantopen' );
135 * @param string $interwiki
136 * @param string $page
137 * @param bool $history
138 * @param bool $templates
139 * @param int $pageLinkDepth
142 public static function newFromInterwiki( $interwiki, $page, $history = false,
143 $templates = false, $pageLinkDepth = 0
146 return Status
::newFatal( 'import-noarticle' );
149 # Look up the first interwiki prefix, and let the foreign site handle
150 # subsequent interwiki prefixes
151 $firstIwPrefix = strtok( $interwiki, ':' );
152 $interwikiLookup = MediaWikiServices
::getInstance()->getInterwikiLookup();
153 $firstIw = $interwikiLookup->fetch( $firstIwPrefix );
155 return Status
::newFatal( 'importbadinterwiki' );
158 $additionalIwPrefixes = strtok( '' );
159 if ( $additionalIwPrefixes ) {
160 $additionalIwPrefixes .= ':';
162 # Have to do a DB-key replacement ourselves; otherwise spaces get
163 # URL-encoded to +, which is wrong in this case. Similar to logic in
165 $link = $firstIw->getURL( strtr( "${additionalIwPrefixes}Special:Export/$page",
170 $params['history'] = 1;
173 $params['templates'] = 1;
175 if ( $pageLinkDepth ) {
176 $params['pagelink-depth'] = $pageLinkDepth;
179 $url = wfAppendQuery( $link, $params );
180 # For interwikis, use POST to avoid redirects.
181 return ImportStreamSource
::newFromURL( $url, "POST" );