3 * Backend for uploading files from previously stored file.
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 uploading from previously stored file.
28 * @author Bryan Tong Minh
30 class UploadFromStash
extends UploadBase
{
31 protected $mFileKey, $mVirtualTempPath, $mFileProps, $mSourceType;
33 // an instance of UploadStash
41 * @param $stash UploadStash
42 * @param $repo FileRepo
44 public function __construct( $user = false, $stash = false, $repo = false ) {
45 // user object. sometimes this won't exist, as when running from cron.
51 $this->repo
= RepoGroup
::singleton()->getLocalRepo();
55 $this->stash
= $stash;
58 wfDebug( __METHOD__
. " creating new UploadStash instance for " . $user->getId() . "\n" );
60 wfDebug( __METHOD__
. " creating new UploadStash instance with no user\n" );
63 $this->stash
= new UploadStash( $this->repo
, $this->user
);
71 public static function isValidKey( $key ) {
72 // this is checked in more detail in UploadStash
73 return (bool)preg_match( UploadStash
::KEY_FORMAT_REGEX
, $key );
77 * @param $request WebRequest
81 public static function isValidRequest( $request ) {
82 // this passes wpSessionKey to getText() as a default when wpFileKey isn't set.
83 // wpSessionKey has no default which guarantees failure if both are missing
84 // (though that should have been caught earlier)
85 return self
::isValidKey( $request->getText( 'wpFileKey', $request->getText( 'wpSessionKey' ) ) );
92 public function initialize( $key, $name = 'upload_file', $initTempFile = true ) {
94 * Confirming a temporarily stashed upload.
95 * We don't want path names to be forged, so we keep
96 * them in the session on the server and just give
97 * an opaque key to the user agent.
99 $metadata = $this->stash
->getMetadata( $key );
100 $this->initializePathInfo( $name,
101 $initTempFile ?
$this->getRealPath( $metadata['us_path'] ) : false,
102 $metadata['us_size'],
106 $this->mFileKey
= $key;
107 $this->mVirtualTempPath
= $metadata['us_path'];
108 $this->mFileProps
= $this->stash
->getFileProps( $key );
109 $this->mSourceType
= $metadata['us_source_type'];
113 * @param $request WebRequest
115 public function initializeFromRequest( &$request ) {
116 // sends wpSessionKey as a default when wpFileKey is missing
117 $fileKey = $request->getText( 'wpFileKey', $request->getText( 'wpSessionKey' ) );
119 // chooses one of wpDestFile, wpUploadFile, filename in that order.
120 $desiredDestName = $request->getText( 'wpDestFile', $request->getText( 'wpUploadFile', $request->getText( 'filename' ) ) );
122 $this->initialize( $fileKey, $desiredDestName );
128 public function getSourceType() {
129 return $this->mSourceType
;
133 * Get the base 36 SHA1 of the file
136 public function getTempFileSha1Base36() {
137 return $this->mFileProps
['sha1'];
141 * protected function verifyFile() inherited
148 * @return UploadStashFile
150 public function stashFile( User
$user = null ) {
151 // replace mLocalFile with an instance of UploadStashFile, which adds some methods
152 // that are useful for stashed files.
153 $this->mLocalFile
= parent
::stashFile( $user );
154 return $this->mLocalFile
;
158 * This should return the key instead of the UploadStashFile instance, for backward compatibility.
161 public function stashSession() {
162 return $this->stashFile()->getFileKey();
166 * Remove a temporarily kept file stashed by saveTempUploadedFile().
167 * @return bool success
169 public function unsaveUploadedFile() {
170 return $this->stash
->removeFile( $this->mFileKey
);
174 * Perform the upload, then remove the database record afterward.
175 * @param $comment string
176 * @param $pageText string
181 public function performUpload( $comment, $pageText, $watch, $user ) {
182 $rv = parent
::performUpload( $comment, $pageText, $watch, $user );
183 $this->unsaveUploadedFile();