3 * Implements Special:UploadStash.
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
21 * @ingroup SpecialPage
26 * Web access for files temporarily stored by UploadStash.
28 * For example -- files that were uploaded with the UploadWizard extension are stored temporarily
29 * before committing them to the db. But we want to see their thumbnails and get other information
32 * Since this is based on the user's session, in effect this creates a private temporary file area.
33 * However, the URLs for the files cannot be shared.
35 class SpecialUploadStash
extends UnlistedSpecialPage
{
40 * Since we are directly writing the file to STDOUT,
41 * we should not be reading in really big files and serving them out.
43 * We also don't want people using this as a file drop, even if they
46 * This service is really for thumbnails and other such previews while
49 const MAX_SERVE_BYTES
= 1048576; // 1MB
51 public function __construct() {
52 parent
::__construct( 'UploadStash', 'upload' );
55 public function doesWrites() {
60 * Execute page -- can output a file directly or show a listing of them.
62 * @param string $subPage Subpage, e.g. in
63 * https://example.com/wiki/Special:UploadStash/foo.jpg, the "foo.jpg" part
64 * @return bool Success
66 public function execute( $subPage ) {
67 $this->useTransactionalTimeLimit();
69 $this->stash
= RepoGroup
::singleton()->getLocalRepo()->getUploadStash( $this->getUser() );
70 $this->checkPermissions();
72 if ( $subPage === null ||
$subPage === '' ) {
73 return $this->showUploads();
76 return $this->showUpload( $subPage );
80 * If file available in stash, cats it out to the client as a simple HTTP response.
81 * n.b. Most sanity checking done in UploadStashLocalFile, so this is straightforward.
83 * @param string $key The key of a particular requested file
87 public function showUpload( $key ) {
88 // prevent callers from doing standard HTML output -- we'll take it from here
89 $this->getOutput()->disable();
92 $params = $this->parseKey( $key );
93 if ( $params['type'] === 'thumb' ) {
94 return $this->outputThumbFromStash( $params['file'], $params['params'] );
96 return $this->outputLocalFile( $params['file'] );
98 } catch ( UploadStashFileNotFoundException
$e ) {
100 $message = $e->getMessage();
101 } catch ( UploadStashZeroLengthFileException
$e ) {
103 $message = $e->getMessage();
104 } catch ( UploadStashBadPathException
$e ) {
106 $message = $e->getMessage();
107 } catch ( SpecialUploadStashTooLargeException
$e ) {
109 $message = 'Cannot serve a file larger than ' . self
::MAX_SERVE_BYTES
.
110 ' bytes. ' . $e->getMessage();
111 } catch ( Exception
$e ) {
113 $message = $e->getMessage();
116 throw new HttpError( $code, $message );
120 * Parse the key passed to the SpecialPage. Returns an array containing
121 * the associated file object, the type ('file' or 'thumb') and if
122 * application the transform parameters
125 * @throws UploadStashBadPathException
128 private function parseKey( $key ) {
129 $type = strtok( $key, '/' );
131 if ( $type !== 'file' && $type !== 'thumb' ) {
132 throw new UploadStashBadPathException( "Unknown type '$type'" );
134 $fileName = strtok( '/' );
135 $thumbPart = strtok( '/' );
136 $file = $this->stash
->getFile( $fileName );
137 if ( $type === 'thumb' ) {
138 $srcNamePos = strrpos( $thumbPart, $fileName );
139 if ( $srcNamePos === false ||
$srcNamePos < 1 ) {
140 throw new UploadStashBadPathException( 'Unrecognized thumb name' );
142 $paramString = substr( $thumbPart, 0, $srcNamePos - 1 );
144 $handler = $file->getHandler();
146 $params = $handler->parseParamString( $paramString );
148 return [ 'file' => $file, 'type' => $type, 'params' => $params ];
150 throw new UploadStashBadPathException( 'No handler found for ' .
151 "mime {$file->getMimeType()} of file {$file->getPath()}" );
155 return [ 'file' => $file, 'type' => $type ];
159 * Get a thumbnail for file, either generated locally or remotely, and stream it out
162 * @param array $params
164 * @return bool Success
166 private function outputThumbFromStash( $file, $params ) {
168 // this config option, if it exists, points to a "scaler", as you might find in
169 // the Wikimedia Foundation cluster. See outputRemoteScaledThumb(). This
170 // is part of our horrible NFS-based system, we create a file on a mount
171 // point here, but fetch the scaled file from somewhere else that
172 // happens to share it over NFS.
173 if ( $this->getConfig()->get( 'UploadStashScalerBaseUrl' ) ) {
174 $this->outputRemoteScaledThumb( $file, $params, $flags );
176 $this->outputLocallyScaledThumb( $file, $params, $flags );
181 * Scale a file (probably with a locally installed imagemagick, or similar)
182 * and output it to STDOUT.
184 * @param array $params Scaling parameters ( e.g. [ width => '50' ] );
185 * @param int $flags Scaling flags ( see File:: constants )
186 * @throws MWException|UploadStashFileNotFoundException
187 * @return bool Success
189 private function outputLocallyScaledThumb( $file, $params, $flags ) {
190 // n.b. this is stupid, we insist on re-transforming the file every time we are invoked. We rely
191 // on HTTP caching to ensure this doesn't happen.
193 $flags |
= File
::RENDER_NOW
;
195 $thumbnailImage = $file->transform( $params, $flags );
196 if ( !$thumbnailImage ) {
197 throw new MWException( 'Could not obtain thumbnail' );
200 // we should have just generated it locally
201 if ( !$thumbnailImage->getStoragePath() ) {
202 throw new UploadStashFileNotFoundException( "no local path for scaled item" );
205 // now we should construct a File, so we can get MIME and other such info in a standard way
206 // n.b. MIME type may be different from original (ogx original -> jpeg thumb)
207 $thumbFile = new UnregisteredLocalFile( false,
208 $this->stash
->repo
, $thumbnailImage->getStoragePath(), false );
210 throw new UploadStashFileNotFoundException( "couldn't create local file object for thumbnail" );
213 return $this->outputLocalFile( $thumbFile );
217 * Scale a file with a remote "scaler", as exists on the Wikimedia Foundation
218 * cluster, and output it to STDOUT.
219 * Note: Unlike the usual thumbnail process, the web client never sees the
220 * cluster URL; we do the whole HTTP transaction to the scaler ourselves
221 * and cat the results out.
222 * Note: We rely on NFS to have propagated the file contents to the scaler.
223 * However, we do not rely on the thumbnail being created in NFS and then
224 * propagated back to our filesystem. Instead we take the results of the
225 * HTTP request instead.
226 * Note: No caching is being done here, although we are instructing the
227 * client to cache it forever.
230 * @param array $params Scaling parameters ( e.g. [ width => '50' ] );
231 * @param int $flags Scaling flags ( see File:: constants )
232 * @throws MWException
233 * @return bool Success
235 private function outputRemoteScaledThumb( $file, $params, $flags ) {
236 // This option probably looks something like
237 // '//upload.wikimedia.org/wikipedia/test/thumb/temp'. Do not use
239 $scalerBaseUrl = $this->getConfig()->get( 'UploadStashScalerBaseUrl' );
241 if ( preg_match( '/^\/\//', $scalerBaseUrl ) ) {
242 // this is apparently a protocol-relative URL, which makes no sense in this context,
243 // since this is used for communication that's internal to the application.
245 $scalerBaseUrl = wfExpandUrl( $scalerBaseUrl, PROTO_CANONICAL
);
248 // We need to use generateThumbName() instead of thumbName(), because
249 // the suffix needs to match the file name for the remote thumbnailer
251 $scalerThumbName = $file->generateThumbName( $file->getName(), $params );
252 $scalerThumbUrl = $scalerBaseUrl . '/' . $file->getUrlRel() .
253 '/' . rawurlencode( $scalerThumbName );
255 // make a curl call to the scaler to create a thumbnail
258 'timeout' => 5 // T90599 attempt to time out cleanly
260 $req = MWHttpRequest
::factory( $scalerThumbUrl, $httpOptions, __METHOD__
);
261 $status = $req->execute();
262 if ( !$status->isOK() ) {
263 $errors = $status->getErrorsArray();
264 $errorStr = "Fetching thumbnail failed: " . print_r( $errors, 1 );
265 $errorStr .= "\nurl = $scalerThumbUrl\n";
266 throw new MWException( $errorStr );
268 $contentType = $req->getResponseHeader( "content-type" );
269 if ( !$contentType ) {
270 throw new MWException( "Missing content-type header" );
273 return $this->outputContents( $req->getContent(), $contentType );
277 * Output HTTP response for file
278 * Side effect: writes HTTP response to STDOUT.
280 * @param File $file File object with a local path (e.g. UnregisteredLocalFile,
281 * LocalFile. Oddly these don't share an ancestor!)
282 * @throws SpecialUploadStashTooLargeException
285 private function outputLocalFile( File
$file ) {
286 if ( $file->getSize() > self
::MAX_SERVE_BYTES
) {
287 throw new SpecialUploadStashTooLargeException();
290 return $file->getRepo()->streamFile( $file->getPath(),
291 [ 'Content-Transfer-Encoding: binary',
292 'Expires: Sun, 17-Jan-2038 19:14:07 GMT' ]
297 * Output HTTP response of raw content
298 * Side effect: writes HTTP response to STDOUT.
299 * @param string $content Content
300 * @param string $contentType MIME type
301 * @throws SpecialUploadStashTooLargeException
304 private function outputContents( $content, $contentType ) {
305 $size = strlen( $content );
306 if ( $size > self
::MAX_SERVE_BYTES
) {
307 throw new SpecialUploadStashTooLargeException();
309 // Cancel output buffering and gzipping if set
310 wfResetOutputBuffers();
311 self
::outputFileHeaders( $contentType, $size );
318 * Output headers for streaming
319 * @todo Unsure about encoding as binary; if we received from HTTP perhaps
320 * we should use that encoding, concatenated with semicolon to `$contentType` as it
322 * Side effect: preps PHP to write headers to STDOUT.
323 * @param string $contentType String suitable for content-type header
324 * @param string $size Length in bytes
326 private static function outputFileHeaders( $contentType, $size ) {
327 header( "Content-Type: $contentType", true );
328 header( 'Content-Transfer-Encoding: binary', true );
329 header( 'Expires: Sun, 17-Jan-2038 19:14:07 GMT', true );
330 // Bug 53032 - It shouldn't be a problem here, but let's be safe and not cache
331 header( 'Cache-Control: private' );
332 header( "Content-Length: $size", true );
336 * Static callback for the HTMLForm in showUploads, to process
337 * Note the stash has to be recreated since this is being called in a static context.
338 * This works, because there really is only one stash per logged-in user, despite appearances.
340 * @param array $formData
341 * @param HTMLForm $form
344 public static function tryClearStashedUploads( $formData, $form ) {
345 if ( isset( $formData['Clear'] ) ) {
346 $stash = RepoGroup
::singleton()->getLocalRepo()->getUploadStash( $form->getUser() );
347 wfDebug( 'stash has: ' . print_r( $stash->listFiles(), true ) . "\n" );
349 if ( !$stash->clear() ) {
350 return Status
::newFatal( 'uploadstash-errclear' );
354 return Status
::newGood();
358 * Default action when we don't have a subpage -- just show links to the uploads we have,
359 * Also show a button to clear stashed files
362 private function showUploads() {
363 // sets the title, etc.
365 $this->outputHeader();
367 // create the form, which will also be used to execute a callback to process incoming form data
368 // this design is extremely dubious, but supposedly HTMLForm is our standard now?
370 $context = new DerivativeContext( $this->getContext() );
371 $context->setTitle( $this->getPageTitle() ); // Remove subpage
372 $form = HTMLForm
::factory( 'ooui', [
378 ], $context, 'clearStashedUploads' );
379 $form->setSubmitDestructive();
380 $form->setSubmitCallback( [ __CLASS__
, 'tryClearStashedUploads' ] );
381 $form->setSubmitTextMsg( 'uploadstash-clear' );
383 $form->prepareForm();
384 $formResult = $form->tryAuthorizedSubmit();
386 // show the files + form, if there are any, or just say there are none
387 $refreshHtml = Html
::element( 'a',
388 [ 'href' => $this->getPageTitle()->getLocalURL() ],
389 $this->msg( 'uploadstash-refresh' )->text() );
390 $files = $this->stash
->listFiles();
391 if ( $files && count( $files ) ) {
393 $fileListItemsHtml = '';
394 $linkRenderer = $this->getLinkRenderer();
395 foreach ( $files as $file ) {
396 $itemHtml = $linkRenderer->makeKnownLink(
397 $this->getPageTitle( "file/$file" ),
401 $fileObj = $this->stash
->getFile( $file );
402 $thumb = $fileObj->generateThumbName( $file, [ 'width' => 220 ] );
404 $this->msg( 'word-separator' )->escaped() .
405 $this->msg( 'parentheses' )->rawParams(
406 $linkRenderer->makeKnownLink(
407 $this->getPageTitle( "thumb/$file/$thumb" ),
408 $this->msg( 'uploadstash-thumbnail' )->text()
411 } catch ( Exception
$e ) {
413 $fileListItemsHtml .= Html
::rawElement( 'li', [], $itemHtml );
415 $this->getOutput()->addHTML( Html
::rawElement( 'ul', [], $fileListItemsHtml ) );
416 $form->displayForm( $formResult );
417 $this->getOutput()->addHTML( Html
::rawElement( 'p', [], $refreshHtml ) );
419 $this->getOutput()->addHTML( Html
::rawElement( 'p', [],
420 Html
::element( 'span', [], $this->msg( 'uploadstash-nofiles' )->text() )
430 class SpecialUploadStashTooLargeException
extends MWException
{