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
{
32 * @var WebRequestUpload
34 protected $mUpload = null;
37 * @param WebRequest $request
39 function initializeFromRequest( &$request ) {
40 $upload = $request->getUpload( 'wpUploadFile' );
41 $desiredDestName = $request->getText( 'wpDestFile' );
42 if ( !$desiredDestName ) {
43 $desiredDestName = $upload->getName();
46 $this->initialize( $desiredDestName, $upload );
50 * Initialize from a filename and a WebRequestUpload
52 * @param WebRequestUpload $webRequestUpload
54 function initialize( $name, $webRequestUpload ) {
55 $this->mUpload
= $webRequestUpload;
56 $this->initializePathInfo( $name,
57 $this->mUpload
->getTempName(), $this->mUpload
->getSize() );
61 * @param WebRequest $request
64 static function isValidRequest( $request ) {
65 # Allow all requests, even if no file is present, so that an error
66 # because a post_max_size or upload_max_filesize overflow
73 public function getSourceType() {
80 public function verifyUpload() {
81 # Check for a post_max_size or upload_max_size overflow, so that a
82 # proper error can be shown to the user
83 if ( is_null( $this->mTempPath
) ||
$this->isEmptyFile() ) {
84 if ( $this->mUpload
->isIniSizeOverflow() ) {
86 'status' => UploadBase
::FILE_TOO_LARGE
,
88 self
::getMaxUploadSize( $this->getSourceType() ),
89 wfShorthandToInteger( ini_get( 'upload_max_filesize' ) ),
90 wfShorthandToInteger( ini_get( 'post_max_size' ) )
96 return parent
::verifyUpload();