Merge "Show a confirmation message on Special:UserRights"
[lhc/web/wiklou.git] / resources / src / mediawiki / mediawiki.Upload.BookletLayout.js
1 ( function ( $, mw ) {
2
3 /**
4 * mw.Upload.BookletLayout encapsulates the process of uploading a file
5 * to MediaWiki using the {@link mw.Upload upload model}.
6 * The booklet emits events that can be used to get the stashed
7 * upload and the final file. It can be extended to accept
8 * additional fields from the user for specific scenarios like
9 * for Commons, or campaigns.
10 *
11 * ## Structure
12 *
13 * The {@link OO.ui.BookletLayout booklet layout} has three steps:
14 *
15 * - **Upload**: Has a {@link OO.ui.SelectFileWidget field} to get the file object.
16 *
17 * - **Information**: Has a {@link OO.ui.FormLayout form} to collect metadata. This can be
18 * extended.
19 *
20 * - **Insert**: Has details on how to use the file that was uploaded.
21 *
22 * Each step has a form associated with it defined in
23 * {@link #renderUploadForm renderUploadForm},
24 * {@link #renderInfoForm renderInfoForm}, and
25 * {@link #renderInsertForm renderInfoForm}. The
26 * {@link #getFile getFile},
27 * {@link #getFilename getFilename}, and
28 * {@link #getText getText} methods are used to get
29 * the information filled in these forms, required to call
30 * {@link mw.Upload mw.Upload}.
31 *
32 * ## Usage
33 *
34 * See the {@link mw.Upload.Dialog upload dialog}.
35 *
36 * The {@link #event-fileUploaded fileUploaded},
37 * and {@link #event-fileSaved fileSaved} events can
38 * be used to get details of the upload.
39 *
40 * ## Extending
41 *
42 * To extend using {@link mw.Upload mw.Upload}, override
43 * {@link #renderInfoForm renderInfoForm} to render
44 * the form required for the specific use-case. Update the
45 * {@link #getFilename getFilename}, and
46 * {@link #getText getText} methods to return data
47 * from your newly created form. If you added new fields you'll also have
48 * to update the {@link #clear} method.
49 *
50 * If you plan to use a different upload model, apart from what is mentioned
51 * above, you'll also have to override the
52 * {@link #createUpload createUpload} method to
53 * return the new model. The {@link #saveFile saveFile}, and
54 * the {@link #uploadFile uploadFile} methods need to be
55 * overriden to use the new model and data returned from the forms.
56 *
57 * @class
58 * @extends OO.ui.BookletLayout
59 *
60 * @constructor
61 * @param {Object} config Configuration options
62 * @cfg {jQuery} [$overlay] Overlay to use for widgets in the booklet
63 */
64 mw.Upload.BookletLayout = function ( config ) {
65 // Parent constructor
66 mw.Upload.BookletLayout.parent.call( this, config );
67
68 this.$overlay = config.$overlay;
69
70 this.renderUploadForm();
71 this.renderInfoForm();
72 this.renderInsertForm();
73
74 this.addPages( [
75 new OO.ui.PageLayout( 'upload', {
76 scrollable: true,
77 padded: true,
78 content: [ this.uploadForm ]
79 } ),
80 new OO.ui.PageLayout( 'info', {
81 scrollable: true,
82 padded: true,
83 content: [ this.infoForm ]
84 } ),
85 new OO.ui.PageLayout( 'insert', {
86 scrollable: true,
87 padded: true,
88 content: [ this.insertForm ]
89 } )
90 ] );
91 };
92
93 /* Setup */
94
95 OO.inheritClass( mw.Upload.BookletLayout, OO.ui.BookletLayout );
96
97 /* Events */
98
99 /**
100 * The file has finished uploading
101 *
102 * @event fileUploaded
103 */
104
105 /**
106 * The file has been saved to the database
107 *
108 * @event fileSaved
109 */
110
111 /**
112 * The upload form has changed
113 *
114 * @event uploadValid
115 * @param {boolean} isValid The form is valid
116 */
117
118 /**
119 * The info form has changed
120 *
121 * @event infoValid
122 * @param {boolean} isValid The form is valid
123 */
124
125 /* Properties */
126
127 /**
128 * @property {OO.ui.FormLayout} uploadForm
129 * The form rendered in the first step to get the file object.
130 * Rendered in {@link #renderUploadForm renderUploadForm}.
131 */
132
133 /**
134 * @property {OO.ui.FormLayout} infoForm
135 * The form rendered in the second step to get metadata.
136 * Rendered in {@link #renderInfoForm renderInfoForm}
137 */
138
139 /**
140 * @property {OO.ui.FormLayout} insertForm
141 * The form rendered in the third step to show usage
142 * Rendered in {@link #renderInsertForm renderInsertForm}
143 */
144
145 /* Methods */
146
147 /**
148 * Initialize for a new upload
149 */
150 mw.Upload.BookletLayout.prototype.initialize = function () {
151 this.clear();
152 this.upload = this.createUpload();
153 this.setPage( 'upload' );
154 };
155
156 /**
157 * Create a new upload model
158 *
159 * @protected
160 * @return {mw.Upload} Upload model
161 */
162 mw.Upload.BookletLayout.prototype.createUpload = function () {
163 return new mw.Upload();
164 };
165
166 /* Uploading */
167
168 /**
169 * Uploads the file that was added in the upload form. Uses
170 * {@link #getFile getFile} to get the HTML5
171 * file object.
172 *
173 * @protected
174 * @fires fileUploaded
175 * @return {jQuery.Promise}
176 */
177 mw.Upload.BookletLayout.prototype.uploadFile = function () {
178 var deferred = $.Deferred(),
179 layout = this,
180 file = this.getFile();
181
182 this.filenameWidget.setValue( file.name );
183 this.setPage( 'info' );
184
185 this.upload.setFile( file );
186 // Explicitly set the filename so that the old filename isn't used in case of retry
187 this.upload.setFilenameFromFile();
188
189 this.uploadPromise = this.upload.uploadToStash();
190 this.uploadPromise.then( function () {
191 deferred.resolve();
192 layout.emit( 'fileUploaded' );
193 }, function () {
194 // These errors will be thrown while the user is on the info page.
195 // Pretty sure it's impossible to get a warning other than 'stashfailed' here, which should
196 // really be an error...
197 var errorMessage = layout.getErrorMessageForStateDetails();
198 deferred.reject( errorMessage );
199 } );
200
201 // If there is an error in uploading, come back to the upload page
202 deferred.fail( function () {
203 layout.setPage( 'upload' );
204 } );
205
206 return deferred;
207 };
208
209 /**
210 * Saves the stash finalizes upload. Uses
211 * {@link #getFilename getFilename}, and
212 * {@link #getText getText} to get details from
213 * the form.
214 *
215 * @protected
216 * @fires fileSaved
217 * @returns {jQuery.Promise} Rejects the promise with an
218 * {@link OO.ui.Error error}, or resolves if the upload was successful.
219 */
220 mw.Upload.BookletLayout.prototype.saveFile = function () {
221 var layout = this,
222 deferred = $.Deferred();
223
224 this.upload.setFilename( this.getFilename() );
225 this.upload.setText( this.getText() );
226
227 this.uploadPromise.then( function () {
228 layout.upload.finishStashUpload().then( function () {
229 var name;
230
231 // Normalize page name and localise the 'File:' prefix
232 name = new mw.Title( 'File:' + layout.upload.getFilename() ).toString();
233 layout.filenameUsageWidget.setValue( '[[' + name + ']]' );
234 layout.setPage( 'insert' );
235
236 deferred.resolve();
237 layout.emit( 'fileSaved' );
238 }, function () {
239 var errorMessage = layout.getErrorMessageForStateDetails();
240 deferred.reject( errorMessage );
241 } );
242 } );
243
244 return deferred.promise();
245 };
246
247 /**
248 * Get an error message (as OO.ui.Error object) that should be displayed to the user for current
249 * state and state details.
250 *
251 * @protected
252 * @returns {OO.ui.Error} Error to display for given state and details.
253 */
254 mw.Upload.BookletLayout.prototype.getErrorMessageForStateDetails = function () {
255 var message,
256 state = this.upload.getState(),
257 stateDetails = this.upload.getStateDetails(),
258 error = stateDetails.error,
259 warnings = stateDetails.upload && stateDetails.upload.warnings;
260
261 if ( state === mw.Upload.State.ERROR ) {
262 // HACK We should either have a hook here to allow TitleBlacklist to handle this, or just have
263 // TitleBlacklist produce sane error messages that can be displayed without arcane knowledge
264 if ( error.info === 'TitleBlacklist prevents this title from being created' ) {
265 // HACK Apparently the only reliable way to determine whether TitleBlacklist was involved
266 return new OO.ui.Error(
267 $( '<p>' ).html(
268 // HACK TitleBlacklist doesn't have a sensible message, this one is from UploadWizard
269 mw.message( 'api-error-blacklisted' ).parse()
270 ),
271 { recoverable: false }
272 );
273 }
274
275 message = mw.message( 'api-error-' + error.code );
276 if ( !message.exists() ) {
277 message = mw.message( 'api-error-unknownerror', JSON.stringify( stateDetails ) );
278 }
279 return new OO.ui.Error(
280 $( '<p>' ).html(
281 message.parse()
282 ),
283 { recoverable: false }
284 );
285 }
286
287 if ( state === mw.Upload.State.WARNING ) {
288 // We could get more than one of these errors, these are in order
289 // of importance. For example fixing the thumbnail like file name
290 // won't help the fact that the file already exists.
291 if ( warnings.stashfailed !== undefined ) {
292 return new OO.ui.Error(
293 $( '<p>' ).html(
294 mw.message( 'api-error-stashfailed' ).parse()
295 ),
296 { recoverable: false }
297 );
298 } else if ( warnings.exists !== undefined ) {
299 return new OO.ui.Error(
300 $( '<p>' ).html(
301 mw.message( 'fileexists', 'File:' + warnings.exists ).parse()
302 ),
303 { recoverable: false }
304 );
305 } else if ( warnings[ 'page-exists' ] !== undefined ) {
306 return new OO.ui.Error(
307 $( '<p>' ).html(
308 mw.message( 'filepageexists', 'File:' + warnings[ 'page-exists' ] ).parse()
309 ),
310 { recoverable: false }
311 );
312 } else if ( warnings.duplicate !== undefined ) {
313 return new OO.ui.Error(
314 $( '<p>' ).html(
315 mw.message( 'api-error-duplicate', warnings.duplicate.length ).parse()
316 ),
317 { recoverable: false }
318 );
319 } else if ( warnings[ 'thumb-name' ] !== undefined ) {
320 return new OO.ui.Error(
321 $( '<p>' ).html(
322 mw.message( 'filename-thumb-name' ).parse()
323 ),
324 { recoverable: false }
325 );
326 } else if ( warnings[ 'bad-prefix' ] !== undefined ) {
327 return new OO.ui.Error(
328 $( '<p>' ).html(
329 mw.message( 'filename-bad-prefix', warnings[ 'bad-prefix' ] ).parse()
330 ),
331 { recoverable: false }
332 );
333 } else if ( warnings[ 'duplicate-archive' ] !== undefined ) {
334 return new OO.ui.Error(
335 $( '<p>' ).html(
336 mw.message( 'api-error-duplicate-archive', 1 ).parse()
337 ),
338 { recoverable: false }
339 );
340 } else if ( warnings.badfilename !== undefined ) {
341 // Change the name if the current name isn't acceptable
342 // TODO This might not really be the best place to do this
343 this.filenameWidget.setValue( warnings.badfilename );
344 return new OO.ui.Error(
345 $( '<p>' ).html(
346 mw.message( 'badfilename', warnings.badfilename ).parse()
347 )
348 );
349 } else {
350 return new OO.ui.Error(
351 $( '<p>' ).html(
352 // Let's get all the help we can if we can't pin point the error
353 mw.message( 'api-error-unknown-warning', JSON.stringify( stateDetails ) ).parse()
354 ),
355 { recoverable: false }
356 );
357 }
358 }
359 };
360
361 /* Form renderers */
362
363 /**
364 * Renders and returns the upload form and sets the
365 * {@link #uploadForm uploadForm} property.
366 *
367 * @protected
368 * @fires selectFile
369 * @returns {OO.ui.FormLayout}
370 */
371 mw.Upload.BookletLayout.prototype.renderUploadForm = function () {
372 var fieldset;
373
374 this.selectFileWidget = new OO.ui.SelectFileWidget();
375 fieldset = new OO.ui.FieldsetLayout( { label: mw.msg( 'upload-form-label-select-file' ) } );
376 fieldset.addItems( [ this.selectFileWidget ] );
377 this.uploadForm = new OO.ui.FormLayout( { items: [ fieldset ] } );
378
379 // Validation
380 this.selectFileWidget.on( 'change', this.onUploadFormChange.bind( this ) );
381
382 return this.uploadForm;
383 };
384
385 /**
386 * Handle change events to the upload form
387 *
388 * @protected
389 * @fires uploadValid
390 */
391 mw.Upload.BookletLayout.prototype.onUploadFormChange = function () {
392 this.emit( 'uploadValid', !!this.selectFileWidget.getValue() );
393 };
394
395 /**
396 * Renders and returns the information form for collecting
397 * metadata and sets the {@link #infoForm infoForm}
398 * property.
399 *
400 * @protected
401 * @returns {OO.ui.FormLayout}
402 */
403 mw.Upload.BookletLayout.prototype.renderInfoForm = function () {
404 var fieldset;
405
406 this.filenameWidget = new OO.ui.TextInputWidget( {
407 indicator: 'required',
408 required: true,
409 validate: /.+/
410 } );
411 this.descriptionWidget = new OO.ui.TextInputWidget( {
412 indicator: 'required',
413 required: true,
414 validate: /.+/,
415 multiline: true,
416 autosize: true
417 } );
418
419 fieldset = new OO.ui.FieldsetLayout( {
420 label: mw.msg( 'upload-form-label-infoform-title' )
421 } );
422 fieldset.addItems( [
423 new OO.ui.FieldLayout( this.filenameWidget, {
424 label: mw.msg( 'upload-form-label-infoform-name' ),
425 align: 'top'
426 } ),
427 new OO.ui.FieldLayout( this.descriptionWidget, {
428 label: mw.msg( 'upload-form-label-infoform-description' ),
429 align: 'top'
430 } )
431 ] );
432 this.infoForm = new OO.ui.FormLayout( { items: [ fieldset ] } );
433
434 this.filenameWidget.on( 'change', this.onInfoFormChange.bind( this ) );
435 this.descriptionWidget.on( 'change', this.onInfoFormChange.bind( this ) );
436
437 return this.infoForm;
438 };
439
440 /**
441 * Handle change events to the info form
442 *
443 * @protected
444 * @fires infoValid
445 */
446 mw.Upload.BookletLayout.prototype.onInfoFormChange = function () {
447 var layout = this;
448 $.when(
449 this.filenameWidget.getValidity(),
450 this.descriptionWidget.getValidity()
451 ).done( function () {
452 layout.emit( 'infoValid', true );
453 } ).fail( function () {
454 layout.emit( 'infoValid', false );
455 } );
456 };
457
458 /**
459 * Renders and returns the insert form to show file usage and
460 * sets the {@link #insertForm insertForm} property.
461 *
462 * @protected
463 * @returns {OO.ui.FormLayout}
464 */
465 mw.Upload.BookletLayout.prototype.renderInsertForm = function () {
466 var fieldset;
467
468 this.filenameUsageWidget = new OO.ui.TextInputWidget();
469 fieldset = new OO.ui.FieldsetLayout( {
470 label: mw.msg( 'upload-form-label-usage-title' )
471 } );
472 fieldset.addItems( [
473 new OO.ui.FieldLayout( this.filenameUsageWidget, {
474 label: mw.msg( 'upload-form-label-usage-filename' ),
475 align: 'top'
476 } )
477 ] );
478 this.insertForm = new OO.ui.FormLayout( { items: [ fieldset ] } );
479
480 return this.insertForm;
481 };
482
483 /* Getters */
484
485 /**
486 * Gets the file object from the
487 * {@link #uploadForm upload form}.
488 *
489 * @protected
490 * @returns {File|null}
491 */
492 mw.Upload.BookletLayout.prototype.getFile = function () {
493 return this.selectFileWidget.getValue();
494 };
495
496 /**
497 * Gets the file name from the
498 * {@link #infoForm information form}.
499 *
500 * @protected
501 * @returns {string}
502 */
503 mw.Upload.BookletLayout.prototype.getFilename = function () {
504 return this.filenameWidget.getValue();
505 };
506
507 /**
508 * Gets the page text from the
509 * {@link #infoForm information form}.
510 *
511 * @protected
512 * @returns {string}
513 */
514 mw.Upload.BookletLayout.prototype.getText = function () {
515 return this.descriptionWidget.getValue();
516 };
517
518 /* Setters */
519
520 /**
521 * Sets the file object
522 *
523 * @protected
524 * @param {File|null} file File to select
525 */
526 mw.Upload.BookletLayout.prototype.setFile = function ( file ) {
527 this.selectFileWidget.setValue( file );
528 };
529
530 /**
531 * Clear the values of all fields
532 *
533 * @protected
534 */
535 mw.Upload.BookletLayout.prototype.clear = function () {
536 this.selectFileWidget.setValue( null );
537 this.filenameWidget.setValue( null ).setValidityFlag( true );
538 this.descriptionWidget.setValue( null ).setValidityFlag( true );
539 this.filenameUsageWidget.setValue( null );
540 };
541
542 }( jQuery, mediaWiki ) );