2015-12-28 22:27:48 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* MediaWiki page data importer.
|
|
|
|
|
*
|
2024-02-09 01:02:16 +00:00
|
|
|
* Copyright © 2003,2005 Brooke Vibber <bvibber@wikimedia.org>
|
2015-12-28 22:27:48 +00:00
|
|
|
* https://www.mediawiki.org/
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
* @ingroup SpecialPage
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This is a horrible hack used to keep source compatibility.
|
|
|
|
|
* @ingroup SpecialPage
|
|
|
|
|
*/
|
|
|
|
|
class UploadSourceAdapter {
|
2019-03-27 09:36:54 +00:00
|
|
|
/** @var ImportSource[] */
|
2016-02-17 09:09:32 +00:00
|
|
|
public static $sourceRegistrations = [];
|
2015-12-28 22:27:48 +00:00
|
|
|
|
2023-01-06 02:39:22 +00:00
|
|
|
/** @var resource|null Must exists on stream wrapper class */
|
|
|
|
|
public $context;
|
|
|
|
|
|
2019-03-27 09:36:54 +00:00
|
|
|
/** @var ImportSource */
|
2015-12-28 22:27:48 +00:00
|
|
|
private $mSource;
|
|
|
|
|
|
|
|
|
|
/** @var string */
|
2022-07-08 20:27:53 +00:00
|
|
|
private $mBuffer = '';
|
2015-12-28 22:27:48 +00:00
|
|
|
|
|
|
|
|
/** @var int */
|
|
|
|
|
private $mPosition;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param ImportSource $source
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2020-05-09 11:35:40 +00:00
|
|
|
public static function registerSource( ImportSource $source ) {
|
2015-12-28 22:27:48 +00:00
|
|
|
$id = wfRandomString();
|
|
|
|
|
|
|
|
|
|
self::$sourceRegistrations[$id] = $source;
|
|
|
|
|
|
|
|
|
|
return $id;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-17 19:31:05 +00:00
|
|
|
/**
|
|
|
|
|
* @param string $id
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public static function isSeekableSource( string $id ) {
|
|
|
|
|
if ( !isset( self::$sourceRegistrations[$id] ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return self::$sourceRegistrations[$id]->isSeekable();
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-19 22:28:27 +00:00
|
|
|
/**
|
|
|
|
|
* @param string $id
|
|
|
|
|
* @param int $offset
|
|
|
|
|
* @return int|false
|
|
|
|
|
*/
|
|
|
|
|
public static function seekSource( string $id, int $offset ) {
|
|
|
|
|
if ( !isset( self::$sourceRegistrations[$id] ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return self::$sourceRegistrations[$id]->seek( $offset );
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-28 22:27:48 +00:00
|
|
|
/**
|
|
|
|
|
* @param string $path
|
|
|
|
|
* @param string $mode
|
2019-03-27 09:36:54 +00:00
|
|
|
* @param int $options
|
2017-08-11 00:23:16 +00:00
|
|
|
* @param string &$opened_path
|
2015-12-28 22:27:48 +00:00
|
|
|
* @return bool
|
|
|
|
|
*/
|
2020-05-09 11:35:40 +00:00
|
|
|
public function stream_open( $path, $mode, $options, &$opened_path ) {
|
2015-12-28 22:27:48 +00:00
|
|
|
$url = parse_url( $path );
|
2022-03-28 20:24:38 +00:00
|
|
|
if ( !isset( $url['host'] ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-12-28 22:27:48 +00:00
|
|
|
$id = $url['host'];
|
|
|
|
|
|
|
|
|
|
if ( !isset( self::$sourceRegistrations[$id] ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->mSource = self::$sourceRegistrations[$id];
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param int $count
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2020-05-09 11:35:40 +00:00
|
|
|
public function stream_read( $count ) {
|
2015-12-28 22:27:48 +00:00
|
|
|
$return = '';
|
|
|
|
|
$leave = false;
|
|
|
|
|
|
|
|
|
|
while ( !$leave && !$this->mSource->atEnd() &&
|
2022-07-08 20:27:53 +00:00
|
|
|
strlen( $this->mBuffer ) < $count
|
|
|
|
|
) {
|
2015-12-28 22:27:48 +00:00
|
|
|
$read = $this->mSource->readChunk();
|
|
|
|
|
|
|
|
|
|
if ( !strlen( $read ) ) {
|
|
|
|
|
$leave = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->mBuffer .= $read;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( strlen( $this->mBuffer ) ) {
|
|
|
|
|
$return = substr( $this->mBuffer, 0, $count );
|
|
|
|
|
$this->mBuffer = substr( $this->mBuffer, $count );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->mPosition += strlen( $return );
|
|
|
|
|
|
|
|
|
|
return $return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param string $data
|
2019-03-27 09:36:54 +00:00
|
|
|
* @return false
|
2015-12-28 22:27:48 +00:00
|
|
|
*/
|
2020-05-09 11:35:40 +00:00
|
|
|
public function stream_write( $data ) {
|
2015-12-28 22:27:48 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2019-03-27 09:36:54 +00:00
|
|
|
* @return int
|
2015-12-28 22:27:48 +00:00
|
|
|
*/
|
2020-05-09 11:35:40 +00:00
|
|
|
public function stream_tell() {
|
2015-12-28 22:27:48 +00:00
|
|
|
return $this->mPosition;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
2020-05-09 11:35:40 +00:00
|
|
|
public function stream_eof() {
|
2015-12-28 22:27:48 +00:00
|
|
|
return $this->mSource->atEnd();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2019-03-27 09:36:54 +00:00
|
|
|
* @return int[]
|
2015-12-28 22:27:48 +00:00
|
|
|
*/
|
2020-05-09 11:35:40 +00:00
|
|
|
public function url_stat() {
|
2016-02-17 09:09:32 +00:00
|
|
|
$result = [];
|
2015-12-28 22:27:48 +00:00
|
|
|
|
|
|
|
|
$result['dev'] = $result[0] = 0;
|
|
|
|
|
$result['ino'] = $result[1] = 0;
|
|
|
|
|
$result['mode'] = $result[2] = 0;
|
|
|
|
|
$result['nlink'] = $result[3] = 0;
|
|
|
|
|
$result['uid'] = $result[4] = 0;
|
|
|
|
|
$result['gid'] = $result[5] = 0;
|
|
|
|
|
$result['rdev'] = $result[6] = 0;
|
|
|
|
|
$result['size'] = $result[7] = 0;
|
|
|
|
|
$result['atime'] = $result[8] = 0;
|
|
|
|
|
$result['mtime'] = $result[9] = 0;
|
|
|
|
|
$result['ctime'] = $result[10] = 0;
|
|
|
|
|
$result['blksize'] = $result[11] = 0;
|
|
|
|
|
$result['blocks'] = $result[12] = 0;
|
|
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
}
|