merging latest master
[lhc/web/wiklou.git] / includes / upload / UploadFromStash.php
1 <?php
2 /**
3 * Backend for uploading files from previously stored file.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup Upload
22 */
23
24 /**
25 * Implements uploading from previously stored file.
26 *
27 * @ingroup Upload
28 * @author Bryan Tong Minh
29 */
30 class UploadFromStash extends UploadBase {
31 protected $mFileKey, $mVirtualTempPath, $mFileProps, $mSourceType;
32
33 // an instance of UploadStash
34 private $stash;
35
36 //LocalFile repo
37 private $repo;
38
39 /**
40 * @param $user User
41 * @param $stash UploadStash
42 * @param $repo FileRepo
43 */
44 public function __construct( $user = false, $stash = false, $repo = false ) {
45 // user object. sometimes this won't exist, as when running from cron.
46 $this->user = $user;
47
48 if( $repo ) {
49 $this->repo = $repo;
50 } else {
51 $this->repo = RepoGroup::singleton()->getLocalRepo();
52 }
53
54 if( $stash ) {
55 $this->stash = $stash;
56 } else {
57 if( $user ) {
58 wfDebug( __METHOD__ . " creating new UploadStash instance for " . $user->getId() . "\n" );
59 } else {
60 wfDebug( __METHOD__ . " creating new UploadStash instance with no user\n" );
61 }
62
63 $this->stash = new UploadStash( $this->repo, $this->user );
64 }
65 }
66
67 /**
68 * @param $key string
69 * @return bool
70 */
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 );
74 }
75
76 /**
77 * @param $request WebRequest
78 *
79 * @return Boolean
80 */
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' ) ) );
86 }
87
88 /**
89 * @param $key string
90 * @param $name string
91 */
92 public function initialize( $key, $name = 'upload_file' ) {
93 /**
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.
98 */
99 $metadata = $this->stash->getMetadata( $key );
100 $this->initializePathInfo( $name,
101 $this->getRealPath ( $metadata['us_path'] ),
102 $metadata['us_size'],
103 false
104 );
105
106 $this->mFileKey = $key;
107 $this->mVirtualTempPath = $metadata['us_path'];
108 $this->mFileProps = $this->stash->getFileProps( $key );
109 $this->mSourceType = $metadata['us_source_type'];
110 }
111
112 /**
113 * @param $request WebRequest
114 */
115 public function initializeFromRequest( &$request ) {
116 // sends wpSessionKey as a default when wpFileKey is missing
117 $fileKey = $request->getText( 'wpFileKey', $request->getText( 'wpSessionKey' ) );
118
119 // chooses one of wpDestFile, wpUploadFile, filename in that order.
120 $desiredDestName = $request->getText( 'wpDestFile', $request->getText( 'wpUploadFile', $request->getText( 'filename' ) ) );
121
122 $this->initialize( $fileKey, $desiredDestName );
123 }
124
125 /**
126 * @return string
127 */
128 public function getSourceType() {
129 return $this->mSourceType;
130 }
131
132 /**
133 * File has been previously verified so no need to do so again.
134 *
135 * @return bool
136 */
137 protected function verifyFile() {
138 return true;
139 }
140
141 /**
142 * Stash the file.
143 *
144 * @return UploadStashFile
145 */
146 public function stashFile() {
147 // replace mLocalFile with an instance of UploadStashFile, which adds some methods
148 // that are useful for stashed files.
149 $this->mLocalFile = parent::stashFile();
150 return $this->mLocalFile;
151 }
152
153 /**
154 * This should return the key instead of the UploadStashFile instance, for backward compatibility.
155 * @return String
156 */
157 public function stashSession() {
158 return $this->stashFile()->getFileKey();
159 }
160
161 /**
162 * Remove a temporarily kept file stashed by saveTempUploadedFile().
163 * @return bool success
164 */
165 public function unsaveUploadedFile() {
166 return $this->stash->removeFile( $this->mFileKey );
167 }
168
169 /**
170 * Perform the upload, then remove the database record afterward.
171 * @param $comment string
172 * @param $pageText string
173 * @param $watch bool
174 * @param $user User
175 * @return Status
176 */
177 public function performUpload( $comment, $pageText, $watch, $user ) {
178 $rv = parent::performUpload( $comment, $pageText, $watch, $user );
179 $this->unsaveUploadedFile();
180 return $rv;
181 }
182 }