2 * JavaScript for Special:Upload
5 * @class mw.special.upload
9 var ajaxUploadDestCheck
= mw
.config
.get( 'wgAjaxUploadDestCheck' ),
10 $license
= $( '#wpLicense' ), uploadWarning
, uploadLicense
;
12 window
.wgUploadWarningObj
= uploadWarning
= {
13 responseCache
: { '': ' ' },
19 keypress: function () {
20 if ( !ajaxUploadDestCheck
) {
24 // Find file to upload
25 if ( !$( '#wpDestFile' ).length
|| !$( '#wpDestFile-warning' ).length
) {
29 this.nameToCheck
= $( '#wpDestFile' ).val();
32 if ( this.timeoutID
) {
33 clearTimeout( this.timeoutID
);
35 // Check response cache
36 if ( this.responseCache
.hasOwnProperty( this.nameToCheck
) ) {
37 this.setWarning( this.responseCache
[this.nameToCheck
] );
41 this.timeoutID
= setTimeout( function () {
42 uploadWarning
.timeout();
46 checkNow: function ( fname
) {
47 if ( !ajaxUploadDestCheck
) {
50 if ( this.timeoutID
) {
51 clearTimeout( this.timeoutID
);
53 this.nameToCheck
= fname
;
57 timeout: function () {
58 var $spinnerDestCheck
;
59 if ( !ajaxUploadDestCheck
|| this.nameToCheck
=== '' ) {
62 $spinnerDestCheck
= $.createSpinner().insertAfter( '#wpDestFile' );
64 ( new mw
.Api() ).get( {
66 titles
: ( new mw
.Title( this.nameToCheck
, mw
.config
.get( 'wgNamespaceIds' ).file
) ).getPrefixedText(),
68 iiprop
: 'uploadwarning',
70 } ).done( function ( result
) {
73 resultOut
= result
.query
.pages
[result
.query
.pageids
[0]].imageinfo
[0];
75 $spinnerDestCheck
.remove();
76 uploadWarning
.processResult( resultOut
, uploadWarning
.nameToCheck
);
80 processResult: function ( result
, fileName
) {
81 this.setWarning( result
.html
);
82 this.responseCache
[fileName
] = result
.html
;
85 setWarning: function ( warning
) {
86 $( '#wpDestFile-warning' ).html( warning
);
88 // Set a value in the form indicating that the warning is acknowledged and
89 // doesn't need to be redisplayed post-upload
91 $( '#wpDestFileWarningAck' ).val( '' );
93 $( '#wpDestFileWarningAck' ).val( '1' );
101 responseCache
: { '': '' },
103 fetchPreview: function ( license
) {
105 if ( !mw
.config
.get( 'wgAjaxLicensePreview' ) ) {
108 if ( this.responseCache
.hasOwnProperty( license
) ) {
109 this.showPreview( this.responseCache
[license
] );
113 $spinnerLicense
= $.createSpinner().insertAfter( '#wpLicense' );
115 ( new mw
.Api() ).get( {
117 text
: '{{' + license
+ '}}',
118 title
: $( '#wpDestFile' ).val() || 'File:Sample.jpg',
121 } ).done( function ( result
) {
122 $spinnerLicense
.remove();
123 uploadLicense
.processResult( result
, license
);
127 processResult: function ( result
, license
) {
128 this.responseCache
[license
] = result
.parse
.text
['*'];
129 this.showPreview( this.responseCache
[license
] );
132 showPreview: function ( preview
) {
133 $( '#mw-license-preview' ).html( preview
);
139 // Disable URL box if the URL copy upload source type is not selected
140 if ( !$( '#wpSourceTypeurl' ).prop( 'checked' ) ) {
141 $( '#wpUploadFileURL' ).prop( 'disabled', true );
144 // AJAX wpDestFile warnings
145 if ( ajaxUploadDestCheck
) {
146 // Insert an event handler that fetches upload warnings when wpDestFile
148 $( '#wpDestFile' ).change( function () {
149 uploadWarning
.checkNow( $( this ).val() );
151 // Insert a row where the warnings will be displayed just below the
153 $( '#mw-htmlform-description tbody' ).append(
156 .attr( 'id', 'wpDestFile-warning' )
157 .attr( 'colspan', 2 )
162 if ( mw
.config
.get( 'wgAjaxLicensePreview' ) && $license
.length
) {
163 // License selector check
164 $license
.change( function () {
165 // We might show a preview
166 uploadLicense
.fetchPreview( $license
.val() );
169 // License selector table row
170 $license
.closest( 'tr' ).after(
173 $( '<td>' ).attr( 'id', 'mw-license-preview' )
178 // fillDestFile setup
179 $.each( mw
.config
.get( 'wgUploadSourceIds' ), function ( index
, sourceId
) {
180 $( '#' + sourceId
).change( function () {
181 var path
, slash
, backslash
, fname
;
182 if ( !mw
.config
.get( 'wgUploadAutoFill' ) ) {
185 // Remove any previously flagged errors
186 $( '#mw-upload-permitted' ).attr( 'class', '' );
187 $( '#mw-upload-prohibited' ).attr( 'class', '' );
189 path
= $( this ).val();
190 // Find trailing part
191 slash
= path
.lastIndexOf( '/' );
192 backslash
= path
.lastIndexOf( '\\' );
193 if ( slash
=== -1 && backslash
=== -1 ) {
195 } else if ( slash
> backslash
) {
196 fname
= path
.slice( slash
+ 1 );
198 fname
= path
.slice( backslash
+ 1 );
201 // Clear the filename if it does not have a valid extension.
202 // URLs are less likely to have a useful extension, so don't include them in the
205 mw
.config
.get( 'wgStrictFileExtensions' ) &&
206 mw
.config
.get( 'wgFileExtensions' ) &&
207 $( this ).attr( 'id' ) !== 'wpUploadFileURL'
210 fname
.lastIndexOf( '.' ) === -1 ||
212 fname
.slice( fname
.lastIndexOf( '.' ) + 1 ).toLowerCase(),
213 $.map( mw
.config
.get( 'wgFileExtensions' ), function ( element
) {
214 return element
.toLowerCase();
218 // Not a valid extension
219 // Clear the upload and set mw-upload-permitted to error
221 $( '#mw-upload-permitted' ).attr( 'class', 'error' );
222 $( '#mw-upload-prohibited' ).attr( 'class', 'error' );
223 // Clear wpDestFile as well
224 $( '#wpDestFile' ).val( '' );
230 // Replace spaces by underscores
231 fname
= fname
.replace( / /g
, '_' );
232 // Capitalise first letter if needed
233 if ( mw
.config
.get( 'wgCapitalizeUploads' ) ) {
234 fname
= fname
.charAt( 0 ).toUpperCase().concat( fname
.slice( 1 ) );
238 if ( $( '#wpDestFile' ).length
) {
239 // Call decodeURIComponent function to remove possible URL-encoded characters
240 // from the file name (bug 30390). Especially likely with upload-form-url.
241 // decodeURIComponent can throw an exception if input is invalid utf-8
243 $( '#wpDestFile' ).val( decodeURIComponent( fname
) );
245 $( '#wpDestFile' ).val( fname
);
247 uploadWarning
.checkNow( fname
);
253 // Add a preview to the upload form
256 * Is the FileAPI available with sufficient functionality?
258 function hasFileAPI() {
259 return window
.FileReader
!== undefined;
263 * Check if this is a recognizable image type...
264 * Also excludes files over 10M to avoid going insane on memory usage.
266 * TODO: Is there a way we can ask the browser what's supported in `<img>`s?
268 * TODO: Put SVG back after working around Firefox 7 bug <https://bugzilla.wikimedia.org/show_bug.cgi?id=31643>
273 function fileIsPreviewable( file
) {
274 var known
= ['image/png', 'image/gif', 'image/jpeg', 'image/svg+xml'],
275 tooHuge
= 10 * 1024 * 1024;
276 return ( $.inArray( file
.type
, known
) !== -1 ) && file
.size
> 0 && file
.size
< tooHuge
;
280 * Show a thumbnail preview of PNG, JPEG, GIF, and SVG files prior to upload
281 * in browsers supporting HTML5 FileAPI.
283 * As of this writing, known good:
286 * - Chrome 7.something
288 * TODO: Check file size limits and warn of likely failures
292 function showPreview( file
) {
297 thumb
= $( '<div id="mw-upload-thumbnail" class="thumb tright">' +
298 '<div class="thumbinner">' +
299 '<div class="mw-small-spinner" style="width: 180px; height: 180px"></div>' +
300 '<div class="thumbcaption"><div class="filename"></div><div class="fileinfo"></div></div>' +
304 thumb
.find( '.filename' ).text( file
.name
).end()
305 .find( '.fileinfo' ).text( prettySize( file
.size
) ).end();
307 $canvas
= $( '<canvas width="' + previewSize
+ '" height="' + previewSize
+ '" ></canvas>' );
308 ctx
= $canvas
[0].getContext( '2d' );
309 $( '#mw-htmlform-source' ).parent().prepend( thumb
);
311 fetchPreview( file
, function ( dataURL
) {
312 var img
= new Image(),
315 if ( meta
&& meta
.tiff
&& meta
.tiff
.Orientation
) {
316 rotation
= ( 360 - ( function () {
317 // See includes/media/Bitmap.php
318 switch ( meta
.tiff
.Orientation
.value
) {
331 img
.onload = function () {
332 var info
, width
, height
, x
, y
, dx
, dy
, logicalWidth
, logicalHeight
;
334 // Fit the image within the previewSizexpreviewSize box
335 if ( img
.width
> img
.height
) {
337 height
= img
.height
/ img
.width
* previewSize
;
339 height
= previewSize
;
340 width
= img
.width
/ img
.height
* previewSize
;
342 // Determine the offset required to center the image
343 dx
= ( 180 - width
) / 2;
344 dy
= ( 180 - height
) / 2;
345 switch ( rotation
) {
346 // If a rotation is applied, the direction of the axis
347 // changes as well. You can derive the values below by
348 // drawing on paper an axis system, rotate it and see
349 // where the positive axis direction is
353 logicalWidth
= img
.width
;
354 logicalHeight
= img
.height
;
359 y
= dy
- previewSize
;
360 logicalWidth
= img
.height
;
361 logicalHeight
= img
.width
;
364 x
= dx
- previewSize
;
365 y
= dy
- previewSize
;
366 logicalWidth
= img
.width
;
367 logicalHeight
= img
.height
;
370 x
= dx
- previewSize
;
372 logicalWidth
= img
.height
;
373 logicalHeight
= img
.width
;
377 ctx
.clearRect( 0, 0, 180, 180 );
378 ctx
.rotate( rotation
/ 180 * Math
.PI
);
379 ctx
.drawImage( img
, x
, y
, width
, height
);
380 thumb
.find( '.mw-small-spinner' ).replaceWith( $canvas
);
383 info
= mw
.msg( 'widthheight', logicalWidth
, logicalHeight
) +
384 ', ' + prettySize( file
.size
);
386 $( '#mw-upload-thumbnail .fileinfo' ).text( info
);
389 }, mw
.config
.get( 'wgFileCanRotate' ) ? function ( data
) {
390 /*jshint camelcase:false, nomen:false */
392 meta
= mw
.libs
.jpegmeta( data
, file
.fileName
);
393 meta
._binary_data
= null;
401 * Start loading a file into memory; when complete, pass it as a
402 * data URL to the callback function. If the callbackBinary is set it will
403 * first be read as binary and afterwards as data URL. Useful if you want
404 * to do preprocessing on the binary data first.
407 * @param {Function} callback
408 * @param {Function} callbackBinary
410 function fetchPreview( file
, callback
, callbackBinary
) {
411 var reader
= new FileReader();
412 if ( callbackBinary
&& 'readAsBinaryString' in reader
) {
413 // To fetch JPEG metadata we need a binary string; start there.
415 reader
.onload = function () {
416 callbackBinary( reader
.result
);
418 // Now run back through the regular code path.
419 fetchPreview( file
, callback
);
421 reader
.readAsBinaryString( file
);
422 } else if ( callbackBinary
&& 'readAsArrayBuffer' in reader
) {
423 // readAsArrayBuffer replaces readAsBinaryString
424 // However, our JPEG metadata library wants a string.
425 // So, this is going to be an ugly conversion.
426 reader
.onload = function () {
428 buffer
= new Uint8Array( reader
.result
),
430 for ( i
= 0; i
< buffer
.byteLength
; i
++ ) {
431 string
+= String
.fromCharCode( buffer
[i
] );
433 callbackBinary( string
);
435 // Now run back through the regular code path.
436 fetchPreview( file
, callback
);
438 reader
.readAsArrayBuffer( file
);
439 } else if ( 'URL' in window
&& 'createObjectURL' in window
.URL
) {
440 // Supported in Firefox 4.0 and above <https://developer.mozilla.org/en/DOM/window.URL.createObjectURL>
441 // WebKit has it in a namespace for now but that's ok. ;)
443 // Lifetime of this URL is until document close, which is fine
444 // for Special:Upload -- if this code gets used on longer-running
445 // pages, add a revokeObjectURL() when it's no longer needed.
447 // Prefer this over readAsDataURL for Firefox 7 due to bug reading
448 // some SVG files from data URIs <https://bugzilla.mozilla.org/show_bug.cgi?id=694165>
449 callback( window
.URL
.createObjectURL( file
) );
451 // This ends up decoding the file to base-64 and back again, which
452 // feels horribly inefficient.
453 reader
.onload = function () {
454 callback( reader
.result
);
456 reader
.readAsDataURL( file
);
461 * Format a file size attractively.
463 * TODO: Match numeric formatting
468 function prettySize( s
) {
469 var sizeMsgs
= ['size-bytes', 'size-kilobytes', 'size-megabytes', 'size-gigabytes'];
470 while ( s
>= 1024 && sizeMsgs
.length
> 1 ) {
472 sizeMsgs
= sizeMsgs
.slice( 1 );
474 return mw
.msg( sizeMsgs
[0], Math
.round( s
) );
478 * Clear the file upload preview area.
480 function clearPreview() {
481 $( '#mw-upload-thumbnail' ).remove();
485 * Check if the file does not exceed the maximum size
487 function checkMaxUploadSize( file
) {
490 function getMaxUploadSize( type
) {
491 var sizes
= mw
.config
.get( 'wgMaxUploadSize' );
493 if ( sizes
[type
] !== undefined ) {
499 $( '.mw-upload-source-error' ).remove();
501 maxSize
= getMaxUploadSize( 'file' );
502 if ( file
.size
> maxSize
) {
503 $error
= $( '<p class="error mw-upload-source-error" id="wpSourceTypeFile-error">' +
504 mw
.message( 'largefileserver', file
.size
, maxSize
).escaped() + '</p>' );
506 $( '#wpUploadFile' ).after( $error
);
515 if ( hasFileAPI() ) {
516 // Update thumbnail when the file selection control is updated.
517 $( '#wpUploadFile' ).change( function () {
519 if ( this.files
&& this.files
.length
) {
520 // Note: would need to be updated to handle multiple files.
521 var file
= this.files
[0];
523 if ( !checkMaxUploadSize( file
) ) {
527 if ( fileIsPreviewable( file
) ) {
535 // Disable all upload source fields except the selected one
538 $rows
= $( '.mw-htmlform-field-UploadSourceField' );
541 * @param {jQuery} $currentRow
542 * @return {Function} Handler
543 * @return {jQuery.Event} return.e
545 function createHandler( $currentRow
) {
547 $( '.mw-upload-source-error' ).remove();
548 if ( this.checked
) {
549 // Disable all inputs
550 $rows
.find( 'input[name!="wpSourceType"]' ).prop( 'disabled', true );
551 // Re-enable the current one
552 $currentRow
.find( 'input' ).prop( 'disabled', false );
557 for ( i
= $rows
.length
; i
; i
-- ) {
558 $row
= $rows
.eq( i
- 1 );
560 .find( 'input[name="wpSourceType"]' )
561 .change( createHandler( $row
) );
565 }( mediaWiki
, jQuery
) );