aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js/file-upload.js
blob: f8899cb07e685c45bd0c84dd0d3bae41abe581ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
/**
 * 1. tracking which file to upload next -> upload queue with data elements added whenever add is called
 * 2. tracking progress for each folder individually -> track progress in a progress[dirname] object
 *   - every new selection increases the total size and number of files for a directory
 *   - add increases, successful done decreases, skip decreases, cancel decreases
 * 3. track selections -> the general skip / overwrite decision is selection based and can change
 *    - server might send already exists error -> show dialog & remember decision for selection again
 *    - server sends error, how do we find collection?
 * 4. track jqXHR object to prevent browser from navigationg away -> track in a uploads[dirname][filename] object [x]
 * 
 * selections can progress in parrallel but each selection progresses sequentially
 * 
 * -> store everything in context?
 * context.folder
 * context.element?
 * context.progressui?
 * context.jqXHR
 * context.selection
 * context.selection.onExistsAction?
 * 
 * context available in what events?
 * build in drop() add dir
 * latest in add() add file? add selection!
 * progress? -> update progress?
 * onsubmit -> context.jqXHR?
 * fail() -> 
 * done()
 * 
 * when versioning app is active -> always overwrite
 * 
 * fileupload scenario: empty folder & d&d 20 files
 *		queue the 20 files
 *		check list of files for duplicates -> empty
 *		start uploading the queue (show progress dialog?)
 *		- no duplicates -> all good, add files to list
 *		- server reports duplicate -> show skip, replace or rename dialog (for individual files)
 *
 * fileupload scenario: files uploaded & d&d 20 files again
 *		queue the 20 files
 *		check list of files for duplicates -> find n duplicates ->
 *			show skip, replace or rename dialog as general option
 *				- show list of differences with preview (win 8)
 *			remember action for each file
 *		start uploading the queue (show progress dialog?)
 *		- no duplicates -> all good, add files to list
 *		- server reports duplicate -> use remembered action
 *		
 * dialoge:
 *	-> skip, replace, choose (or abort) ()
 *	-> choose left or right (with skip) (when only one file in list also show rename option and remember for all option)
 *	
 *	progress always based on filesize
 *	number of files as text, bytes as bar
 *	
 */



//TODO clean uploads when all progress has completed
OC.Upload = {
	/**
	 * map to lookup the selections for a given directory.
	 * @type Array
	 */
	_selections: {},
	/*
	 * queue which progress tracker to use for the next upload
	 * @type Array
	 */
	_queue: [],
	queueUpload:function(data) {
		// add to queue
		this._queue.push(data); //remember what to upload next
		if ( ! this.isProcessing() ) {
			this.startUpload();
		}
	},
	getSelection:function(originalFiles) {
		if (!originalFiles.selectionKey) {
			originalFiles.selectionKey = 'selection-' + $.assocArraySize(this._selections);
			this._selections[originalFiles.selectionKey] = {
				selectionKey:originalFiles.selectionKey,
				files:{},
				totalBytes:0,
				loadedBytes:0,
				currentFile:0,
				uploads:{},
				checked:false
			};
		}
		return this._selections[originalFiles.selectionKey];
	},
	cancelUpload:function(dir, filename) {
		var deleted = false;
		jQuery.each(this._selections, function(i, selection) {
			if (selection.dir === dir && selection.uploads[filename]) {
				delete selection.uploads[filename];
				deleted = true;
				return false; // end searching through selections
			}
		});
		return deleted;
	},
	cancelUploads:function() {
		jQuery.each(this._selections,function(i,selection){
			jQuery.each(selection.uploads, function (j, jqXHR) {
				delete jqXHR;
			});
		});
		this._queue = [];
		this._isProcessing = false;
	},
	_isProcessing:false,
	isProcessing:function(){
		return this._isProcessing;
	},
	startUpload:function(){
		if (this._queue.length > 0) {
			this._isProcessing = true;
			this.nextUpload();
			return true;
		} else {
			return false;
		}
	},
	nextUpload:function(){
		if (this._queue.length > 0) {
			var data = this._queue.pop();
			var selection = this.getSelection(data.originalFiles);
			selection.uploads[data.files[0]] = data.submit();
			
		} else {
			//queue is empty, we are done
			this._isProcessing = false;
			//TODO free data
		}
	},
	progressBytes: function() {
		var total = 0;
		var loaded = 0;
		jQuery.each(this._selections, function (i, selection) {
			total += selection.totalBytes;
			loaded += selection.loadedBytes;
		});
		return (loaded/total)*100;
	},
	loadedBytes: function() {
		var loaded = 0;
		jQuery.each(this._selections, function (i, selection) {
			loaded += selection.loadedBytes;
		});
		return loaded;
	},
	totalBytes: function() {
		var total = 0;
		jQuery.each(this._selections, function (i, selection) {
			total += selection.totalBytes;
		});
		return total;
	},
	handleExists:function(data) {

	},
	onCancel:function(data){
		//TODO cancel all uploads
		OC.Upload.cancelUploads();
	},
	onSkip:function(data){
		var selection = this.getSelection(data.originalFiles);
		selection.loadedBytes += data.loaded;
		this.nextUpload();
	},
	onReplace:function(data){
		//TODO overwrite file
		data.data.append('replace', true);
		data.submit();
	},
	onRename:function(data, newName){
		//TODO rename file in filelist, stop spinner
		data.data.append('newname', newName);
		data.submit();
	},
	setAction:function(data, action) {
		
	},
	setDefaultAction:function(action) {
		
	}
};

$(document).ready(function() {

	var file_upload_param = {
		dropZone: $('#content'), // restrict dropZone to content div
		
		//singleFileUploads is on by default, so the data.files array will always have length 1
		add: function(e, data) {
			var that = $(this);
			
			// lookup selection for dir
			var selection = OC.Upload.getSelection(data.originalFiles);
			
			if (!selection.dir) {
				selection.dir = $('#dir').val();
			}
			
			if ( ! selection.checked ) {
				
				selection.totalBytes = 0;
				$.each(data.originalFiles, function(i, file) {
					selection.totalBytes += file.size;

					if (file.type === '' && file.size === 4096) {
						data.textStatus = 'dirorzero';
						data.errorThrown = t('files', 'Unable to upload {filename} as it is a directory or has 0 bytes',
							{filename: file.name}
						);
						return false;
					}
				});

				if (selection.totalBytes > $('#max_upload').val()) {
					data.textStatus = 'notenoughspace';
					data.errorThrown = t('files', 'Not enough space available');
				}
				if (data.errorThrown) {
					//don't upload anything
					var fu = that.data('blueimp-fileupload') || that.data('fileupload');
					fu._trigger('fail', e, data);
					return false;
				}
				
				//TODO refactor away:
				//show cancel button
				if($('html.lte9').length === 0 && data.dataType !== 'iframe') {
					$('#uploadprogresswrapper input.stop').show();
				}
			}
			
			//all subsequent add calls for this selection can be ignored
			//allow navigating to the selection from a context
			//context.selection = data.originalFiles.selection;
			
			//allow navigating to contexts / files of a selection
			selection.files[data.files[0].name] = data;
			
			OC.Upload.queueUpload(data);
			
			//TODO check filename already exists
			/*
			if ($('tr[data-file="'+data.files[0].name+'"][data-id]').length > 0) {
				data.textStatus = 'alreadyexists';
				data.errorThrown = t('files', '{filename} already exists',
					{filename: data.files[0].name}
				);
				//TODO show "file already exists" dialog
				var fu = that.data('blueimp-fileupload') || that.data('fileupload');
				fu._trigger('fail', e, data);
				return false;
			}
			*/

			return true;
		},
		/**
		 * called after the first add, does NOT have the data param
		 * @param e
		 */
		start: function(e) {
			//IE < 10 does not fire the necessary events for the progress bar.
			if($('html.lte9').length > 0) {
				return true;
			}
			$('#uploadprogressbar').progressbar({value:0});
			$('#uploadprogressbar').fadeIn();
		},
		fail: function(e, data) {
			if (typeof data.textStatus !== 'undefined' && data.textStatus !== 'success' ) {
				if (data.textStatus === 'abort') {
					$('#notification').text(t('files', 'Upload cancelled.'));
				} else {
					// HTTP connection problem
					$('#notification').text(data.errorThrown);
				}
				$('#notification').fadeIn();
				//hide notification after 5 sec
				setTimeout(function() {
					$('#notification').fadeOut();
				}, 5000);
			}
			var selection = OC.Upload.getSelection(data.originalFiles);
			delete selection.uploads[data.files[0]];
		},
		progress: function(e, data) {
			// TODO: show nice progress bar in file row
		},
		progressall: function(e, data) {
			//IE < 10 does not fire the necessary events for the progress bar.
			if($('html.lte9').length > 0) {
				return;
			}
			//var progress = (data.loaded/data.total)*100;
			var progress = OC.Upload.progressBytes();
			$('#uploadprogressbar').progressbar('value', progress);
		},
		/**
		 * called for every successful upload
		 * @param e
		 * @param data
		 */
		done:function(e, data) {
			// handle different responses (json or body from iframe for ie)
			var response;
			if (typeof data.result === 'string') {
				response = data.result;
			} else {
				//fetch response from iframe
				response = data.result[0].body.innerText;
			}
			var result=$.parseJSON(response);
			var selection = OC.Upload.getSelection(data.originalFiles);

			if(typeof result[0] !== 'undefined'
				&& result[0].status === 'success'
			) {
				selection.loadedBytes+=data.loaded;
				OC.Upload.nextUpload();
			} else {
				if (result[0].status === 'existserror') {
					//show "file already exists" dialog
					var original = result[0];
					var replacement = data.files[0];
					var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload');
					OC.dialogs.fileexists(data, original, replacement, OC.Upload, fu);
				} else {
					delete selection.uploads[data.files[0]];
					data.textStatus = 'servererror';
					data.errorThrown = t('files', result.data.message);
					var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload');
					fu._trigger('fail', e, data);
				}
			}

		},
		/**
		 * called after last upload
		 * @param e
		 * @param data
		 */
		stop: function(e, data) {
			if(OC.Upload.progressBytes()>=100) {

				if(data.dataType !== 'iframe') {
					$('#uploadprogresswrapper input.stop').hide();
				}

				//IE < 10 does not fire the necessary events for the progress bar.
				if($('html.lte9').length > 0) {
					return;
				}

				$('#uploadprogressbar').progressbar('value', 100);
				$('#uploadprogressbar').fadeOut();
			}
		}
	};
	
	var file_upload_handler = function() {
		$('#file_upload_start').fileupload(file_upload_param);
	};

	if ( document.getElementById('data-upload-form') ) {
		$(file_upload_handler);
	}
	$.assocArraySize = function(obj) {
		// http://stackoverflow.com/a/6700/11236
		var size = 0, key;
		for (key in obj) {
			if (obj.hasOwnProperty(key)) {
				size++;
			}
		}
		return size;
	};

	// warn user not to leave the page while upload is in progress
	$(window).bind('beforeunload', function(e) {
		if ($.assocArraySize(uploadingFiles) > 0) {
			return t('files', 'File upload is in progress. Leaving the page now will cancel the upload.');
		}
	});

	//add multiply file upload attribute to all browsers except konqueror (which crashes when it's used)
	if(navigator.userAgent.search(/konqueror/i) === -1) {
		$('#file_upload_start').attr('multiple', 'multiple');
	}

	//if the breadcrumb is to long, start by replacing foldernames with '...' except for the current folder
	var crumb = $('div.crumb').first();
	while($('div.controls').height() > 40 && crumb.next('div.crumb').length > 0) {
		crumb.children('a').text('...');
		crumb = crumb.next('div.crumb');
	}
	//if that isn't enough, start removing items from the breacrumb except for the current folder and it's parent
	var crumb = $('div.crumb').first();
	var next = crumb.next('div.crumb');
	while($('div.controls').height() > 40 && next.next('div.crumb').length > 0) {
		crumb.remove();
		crumb = next;
		next = crumb.next('div.crumb');
	}
	//still not enough, start shorting down the current folder name
	var crumb = $('div.crumb>a').last();
	while($('div.controls').height() > 40 && crumb.text().length > 6) {
		var text = crumb.text();
		text = text.substr(0, text.length-6)+'...';
		crumb.text(text);
	}

	$(document).click(function() {
		$('#new>ul').hide();
		$('#new').removeClass('active');
		$('#new li').each(function(i, element) {
			if($(element).children('p').length === 0) {
				$(element).children('form').remove();
				$(element).append('<p>' + $(element).data('text') + '</p>');
			}
		});
	});
	$('#new li').click(function() {
		if($(this).children('p').length === 0) {
			return;
		}

	$('#new li').each(function(i, element) {
		if($(element).children('p').length === 0) {
			$(element).children('form').remove();
			$(element).append('<p>' + $(element).data('text') + '</p>');
		}
	});

	var type = $(this).data('type');
	var text = $(this).children('p').text();
	$(this).data('text', text);
	$(this).children('p').remove();
	var form = $('<form></form>');
	var input = $('<input>');
	form.append(input);
	$(this).append(form);
	input.focus();
	form.submit(function(event) {
		event.stopPropagation();
		event.preventDefault();
		var newname=input.val();
		if(type === 'web' && newname.length === 0) {
			OC.Notification.show(t('files', 'URL cannot be empty.'));
			return false;
		} else if (type !== 'web' && !Files.isFileNameValid(newname)) {
			return false;
		} else if( type === 'folder' && $('#dir').val() === '/' && newname === 'Shared') {
			OC.Notification.show(t('files', 'Invalid folder name. Usage of \'Shared\' is reserved by ownCloud'));
			return false;
		}
		if (FileList.lastAction) {
			FileList.lastAction();
		}
		var name = getUniqueName(newname);
		if (newname !== name) {
			FileList.checkName(name, newname, true);
			var hidden = true;
		} else {
			var hidden = false;
		}
		switch(type) {
			case 'file':
				$.post(
					OC.filePath('files', 'ajax', 'newfile.php'),
					{dir:$('#dir').val(), filename:name},
					function(result) {
						if (result.status === 'success') {
							var date = new Date();
							FileList.addFile(name, 0, date, false, hidden);
							var tr = $('tr').filterAttr('data-file', name);
							tr.attr('data-mime', result.data.mime);
							tr.attr('data-id', result.data.id);
							getMimeIcon(result.data.mime, function(path) {
						tr.find('td.filename').attr('style', 'background-image:url('+path+')');
							});
						} else {
							OC.dialogs.alert(result.data.message, t('core', 'Error'));
						}
					}
				);
				break;
			case 'folder':
				$.post(
					OC.filePath('files', 'ajax', 'newfolder.php'),
					{dir:$('#dir').val(), foldername:name},
					function(result) {
						if (result.status === 'success') {
							var date = new Date();
							FileList.addDir(name, 0, date, hidden);
							var tr = $('tr').filterAttr('data-file', name);
							tr.attr('data-id', result.data.id);
						} else {
							OC.dialogs.alert(result.data.message, t('core', 'Error'));
						}
					}
				);
				break;
			case 'web':
				if (name.substr(0, 8) !== 'https://' && name.substr(0, 7) !== 'http://') {
					name = 'http://' + name;
				}
				var localName = name;
				if(localName.substr(localName.length-1, 1) === '/') { //strip /
					localName = localName.substr(0, localName.length-1);
				}
				if (localName.indexOf('/')) { //use last part of url
					localName = localName.split('/').pop();
				} else { //or the domain
					localName = (localName.match(/:\/\/(.[^\/]+)/)[1]).replace('www.', '');
				}
				localName = getUniqueName(localName);
				//IE < 10 does not fire the necessary events for the progress bar.
				if ($('html.lte9').length > 0) {
				} else {
					$('#uploadprogressbar').progressbar({value:0});
					$('#uploadprogressbar').fadeIn();
				}

				var eventSource = new OC.EventSource(
					OC.filePath('files', 'ajax', 'newfile.php'),
					{dir:$('#dir').val(), source:name, filename:localName}
				);
				eventSource.listen('progress', function(progress) {
					//IE < 10 does not fire the necessary events for the progress bar.
					if($('html.lte9').length > 0) {
					} else {
						$('#uploadprogressbar').progressbar('value', progress);
					}
				});
				eventSource.listen('success', function(data) {
					var mime = data.mime;
					var size = data.size;
					var id = data.id;
					$('#uploadprogressbar').fadeOut();
					var date = new Date();
					FileList.addFile(localName, size, date, false, hidden);
					var tr = $('tr').filterAttr('data-file', localName);
					tr.data('mime', mime).data('id', id);
					tr.attr('data-id', id);
					getMimeIcon(mime, function(path) {
						tr.find('td.filename').attr('style', 'background-image:url(' + path + ')');
					});
				});
				eventSource.listen('error', function(error) {
					$('#uploadprogressbar').fadeOut();
					alert(error);
				});
				break;
			}
			var li = form.parent();
			form.remove();
			li.append('<p>' + li.data('text') + '</p>');
			$('#new>a').click();
		});
		
	});
	
});