3 * Backend for regular file upload.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * Implements regular file uploads
28 * @author Bryan Tong Minh
30 class UploadFromFile
extends UploadBase
{
33 * @var WebRequestUpload
35 protected $mUpload = null;
38 * @param $request WebRequest
41 function initializeFromRequest( &$request ) {
42 $upload = $request->getUpload( 'wpUploadFile' );
43 $desiredDestName = $request->getText( 'wpDestFile' );
44 if( !$desiredDestName )
45 $desiredDestName = $upload->getName();
47 return $this->initialize( $desiredDestName, $upload );
51 * Initialize from a filename and a WebRequestUpload
53 * @param $webRequestUpload
56 function initialize( $name, $webRequestUpload ) {
57 $this->mUpload
= $webRequestUpload;
58 return $this->initializePathInfo( $name,
59 $this->mUpload
->getTempName(), $this->mUpload
->getSize() );
66 static function isValidRequest( $request ) {
67 # Allow all requests, even if no file is present, so that an error
68 # because a post_max_size or upload_max_filesize overflow
75 public function getSourceType() {
82 public function verifyUpload() {
83 # Check for a post_max_size or upload_max_size overflow, so that a
84 # proper error can be shown to the user
85 if ( is_null( $this->mTempPath
) ||
$this->isEmptyFile() ) {
86 if ( $this->mUpload
->isIniSizeOverflow() ) {
88 'status' => UploadBase
::FILE_TOO_LARGE
,
90 self
::getMaxUploadSize( $this->getSourceType() ),
91 wfShorthandToInteger( ini_get( 'upload_max_filesize' ) ),
92 wfShorthandToInteger( ini_get( 'post_max_size' ) )
98 return parent
::verifyUpload();