Blame view

sources/apps/files/js/filelist.js 54.9 KB
6d9380f96   Cédric Dupont   Update sources OC...
1
2
3
4
5
6
7
8
9
10
11
  /*
   * Copyright (c) 2014
   *
   * This file is licensed under the Affero General Public License version 3
   * or later.
   *
   * See the COPYING-README file.
   *
   */
  
  (function() {
a293d369c   Kload   Update sources to...
12
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
13
14
15
  	 * The FileList class manages a file list view.
  	 * A file list view consists of a controls bar and
  	 * a file list table.
a293d369c   Kload   Update sources to...
16
  	 */
6d9380f96   Cédric Dupont   Update sources OC...
17
18
19
20
21
22
  	var FileList = function($el, options) {
  		this.initialize($el, options);
  	};
  	FileList.prototype = {
  		SORT_INDICATOR_ASC_CLASS: 'icon-triangle-n',
  		SORT_INDICATOR_DESC_CLASS: 'icon-triangle-s',
03e52840d   Kload   Init
23

6d9380f96   Cédric Dupont   Update sources OC...
24
25
26
27
  		id: 'files',
  		appName: t('files', 'Files'),
  		isEmpty: true,
  		useUndo:true,
03e52840d   Kload   Init
28

6d9380f96   Cédric Dupont   Update sources OC...
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
  		/**
  		 * Top-level container with controls and file list
  		 */
  		$el: null,
  
  		/**
  		 * Files table
  		 */
  		$table: null,
  
  		/**
  		 * List of rows (table tbody)
  		 */
  		$fileList: null,
  
  		breadcrumb: null,
  
  		/**
  		 * Instance of FileSummary
  		 */
  		fileSummary: null,
  		initialized: false,
  
  		// number of files per page
  		pageSize: 20,
  
  		/**
  		 * Array of files in the current folder.
  		 * The entries are of file data.
  		 */
  		files: [],
  
  		/**
  		 * File actions handler, defaults to OCA.Files.FileActions
  		 */
  		fileActions: null,
  
  		/**
  		 * Map of file id to file data
  		 */
  		_selectedFiles: {},
  
  		/**
  		 * Summary of selected files.
  		 * Instance of FileSummary.
  		 */
  		_selectionSummary: null,
  
  		/**
  		 * Sort attribute
  		 */
  		_sort: 'name',
  
  		/**
  		 * Sort direction: 'asc' or 'desc'
  		 */
  		_sortDirection: 'asc',
  
  		/**
  		 * Sort comparator function for the current sort
  		 */
  		_sortComparator: null,
  
  		/**
  		 * Current directory
  		 */
  		_currentDirectory: null,
  
  		_dragOptions: null,
  		_folderDropOptions: null,
  
  		/**
  		 * Initialize the file list and its components
  		 *
  		 * @param $el container element with existing markup for the #controls
  		 * and a table
  		 * @param options map of options, see other parameters
  		 * @param scrollContainer scrollable container, defaults to $(window)
  		 * @param dragOptions drag options, disabled by default
  		 * @param folderDropOptions folder drop options, disabled by default
  		 */
  		initialize: function($el, options) {
  			var self = this;
  			options = options || {};
  			if (this.initialized) {
  				return;
31b7f2792   Kload   Upgrade to ownclo...
115
  			}
31b7f2792   Kload   Upgrade to ownclo...
116

6d9380f96   Cédric Dupont   Update sources OC...
117
118
119
120
121
122
  			if (options.dragOptions) {
  				this._dragOptions = options.dragOptions;
  			}
  			if (options.folderDropOptions) {
  				this._folderDropOptions = options.folderDropOptions;
  			}
31b7f2792   Kload   Upgrade to ownclo...
123

6d9380f96   Cédric Dupont   Update sources OC...
124
125
126
127
128
129
130
131
  			this.$el = $el;
  			this.$container = options.scrollContainer || $(window);
  			this.$table = $el.find('table:first');
  			this.$fileList = $el.find('#fileList');
  			this._initFileActions(options.fileActions);
  			this.files = [];
  			this._selectedFiles = {};
  			this._selectionSummary = new OCA.Files.FileSummary();
31b7f2792   Kload   Upgrade to ownclo...
132

6d9380f96   Cédric Dupont   Update sources OC...
133
134
135
  			this.fileSummary = this._createSummary();
  
  			this.setSort('name', 'asc');
31b7f2792   Kload   Upgrade to ownclo...
136

6d9380f96   Cédric Dupont   Update sources OC...
137
138
139
140
141
142
143
144
145
146
147
  			var breadcrumbOptions = {
  				onClick: _.bind(this._onClickBreadCrumb, this),
  				getCrumbUrl: function(part) {
  					return self.linkTo(part.dir);
  				}
  			};
  			// if dropping on folders is allowed, then also allow on breadcrumbs
  			if (this._folderDropOptions) {
  				breadcrumbOptions.onDrop = _.bind(this._onDropOnBreadCrumb, this);
  			}
  			this.breadcrumb = new OCA.Files.BreadCrumb(breadcrumbOptions);
31b7f2792   Kload   Upgrade to ownclo...
148

6d9380f96   Cédric Dupont   Update sources OC...
149
  			this.$el.find('#controls').prepend(this.breadcrumb.$el);
31b7f2792   Kload   Upgrade to ownclo...
150

6d9380f96   Cédric Dupont   Update sources OC...
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
  			this.$el.find('thead th .columntitle').click(_.bind(this._onClickHeader, this));
  
  			this._onResize = _.debounce(_.bind(this._onResize, this), 100);
  			$(window).resize(this._onResize);
  
  			this.$el.on('show', this._onResize);
  
  			this.$fileList.on('click','td.filename>a.name', _.bind(this._onClickFile, this));
  			this.$fileList.on('change', 'td.filename>input:checkbox', _.bind(this._onClickFileCheckbox, this));
  			this.$el.on('urlChanged', _.bind(this._onUrlChanged, this));
  			this.$el.find('.select-all').click(_.bind(this._onClickSelectAll, this));
  			this.$el.find('.download').click(_.bind(this._onClickDownloadSelected, this));
  			this.$el.find('.delete-selected').click(_.bind(this._onClickDeleteSelected, this));
  
  			this.setupUploadEvents();
  
  			this.$container.on('scroll', _.bind(this._onScroll, this));
  		},
  
  		/**
  		 * Destroy / uninitialize this instance.
  		 */
  		destroy: function() {
  			// TODO: also unregister other event handlers
  			this.fileActions.off('registerAction', this._onFileActionsUpdated);
  			this.fileActions.off('setDefault', this._onFileActionsUpdated);
  		},
  
  		_initFileActions: function(fileActions) {
  			this.fileActions = fileActions;
  			if (!this.fileActions) {
  				this.fileActions = new OCA.Files.FileActions();
  				this.fileActions.registerDefaultActions();
31b7f2792   Kload   Upgrade to ownclo...
184
  			}
6d9380f96   Cédric Dupont   Update sources OC...
185
186
187
188
  			this._onFileActionsUpdated = _.debounce(_.bind(this._onFileActionsUpdated, this), 100);
  			this.fileActions.on('registerAction', this._onFileActionsUpdated);
  			this.fileActions.on('setDefault', this._onFileActionsUpdated);
  		},
31b7f2792   Kload   Upgrade to ownclo...
189

6d9380f96   Cédric Dupont   Update sources OC...
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
  		/**
  		 * Event handler for when the window size changed
  		 */
  		_onResize: function() {
  			var containerWidth = this.$el.width();
  			var actionsWidth = 0;
  			$.each(this.$el.find('#controls .actions'), function(index, action) {
  				actionsWidth += $(action).outerWidth();
  			});
  
  			// substract app navigation toggle when visible
  			containerWidth -= $('#app-navigation-toggle').width();
  
  			this.breadcrumb.setMaxWidth(containerWidth - actionsWidth - 10);
  		},
  
  		/**
  		 * Event handler for when the URL changed
  		 */
  		_onUrlChanged: function(e) {
  			if (e && e.dir) {
  				this.changeDirectory(e.dir, false, true);
  			}
  		},
  
  		/**
  		 * Selected/deselects the given file element and updated
  		 * the internal selection cache.
  		 *
  		 * @param $tr single file row element
  		 * @param state true to select, false to deselect
  		 */
  		_selectFileEl: function($tr, state) {
  			var $checkbox = $tr.find('td.filename>input:checkbox');
  			var oldData = !!this._selectedFiles[$tr.data('id')];
  			var data;
  			$checkbox.prop('checked', state);
  			$tr.toggleClass('selected', state);
  			// already selected ?
  			if (state === oldData) {
  				return;
  			}
  			data = this.elementToFile($tr);
  			if (state) {
  				this._selectedFiles[$tr.data('id')] = data;
  				this._selectionSummary.add(data);
  			}
  			else {
  				delete this._selectedFiles[$tr.data('id')];
  				this._selectionSummary.remove(data);
  			}
  			this.$el.find('.select-all').prop('checked', this._selectionSummary.getTotal() === this.files.length);
  		},
  
  		/**
  		 * Event handler for when clicking on files to select them
  		 */
  		_onClickFile: function(event) {
  			var $tr = $(event.target).closest('tr');
  			if (event.ctrlKey || event.shiftKey) {
  				event.preventDefault();
  				if (event.shiftKey) {
  					var $lastTr = $(this._lastChecked);
  					var lastIndex = $lastTr.index();
  					var currentIndex = $tr.index();
  					var $rows = this.$fileList.children('tr');
  
  					// last clicked checkbox below current one ?
  					if (lastIndex > currentIndex) {
  						var aux = lastIndex;
  						lastIndex = currentIndex;
  						currentIndex = aux;
  					}
  
  					// auto-select everything in-between
  					for (var i = lastIndex + 1; i < currentIndex; i++) {
  						this._selectFileEl($rows.eq(i), true);
  					}
  				}
  				else {
  					this._lastChecked = $tr;
  				}
  				var $checkbox = $tr.find('td.filename>input:checkbox');
  				this._selectFileEl($tr, !$checkbox.prop('checked'));
  				this.updateSelectionSummary();
  			} else {
  				var filename = $tr.attr('data-file');
  				var renaming = $tr.data('renaming');
  				if (!renaming) {
  					this.fileActions.currentFile = $tr.find('td');
  					var mime = this.fileActions.getCurrentMimeType();
  					var type = this.fileActions.getCurrentType();
  					var permissions = this.fileActions.getCurrentPermissions();
  					var action = this.fileActions.getDefault(mime,type, permissions);
  					if (action) {
  						event.preventDefault();
  						// also set on global object for legacy apps
  						window.FileActions.currentFile = this.fileActions.currentFile;
  						action(filename, {
  							$file: $tr,
  							fileList: this,
  							fileActions: this.fileActions,
  							dir: $tr.attr('data-path') || this.getCurrentDirectory()
  						});
  					}
03e52840d   Kload   Init
295
296
  				}
  			}
6d9380f96   Cédric Dupont   Update sources OC...
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
  		},
  
  		/**
  		 * Event handler for when clicking on a file's checkbox
  		 */
  		_onClickFileCheckbox: function(e) {
  			var $tr = $(e.target).closest('tr');
  			this._selectFileEl($tr, !$tr.hasClass('selected'));
  			this._lastChecked = $tr;
  			this.updateSelectionSummary();
  		},
  
  		/**
  		 * Event handler for when selecting/deselecting all files
  		 */
  		_onClickSelectAll: function(e) {
  			var checked = $(e.target).prop('checked');
  			this.$fileList.find('td.filename>input:checkbox').prop('checked', checked)
  				.closest('tr').toggleClass('selected', checked);
  			this._selectedFiles = {};
  			this._selectionSummary.clear();
  			if (checked) {
  				for (var i = 0; i < this.files.length; i++) {
  					var fileData = this.files[i];
  					this._selectedFiles[fileData.id] = fileData;
  					this._selectionSummary.add(fileData);
  				}
  			}
  			this.updateSelectionSummary();
  		},
  
  		/**
  		 * Event handler for when clicking on "Download" for the selected files
  		 */
  		_onClickDownloadSelected: function(event) {
  			var files;
  			var dir = this.getCurrentDirectory();
  			if (this.isAllSelected()) {
  				files = OC.basename(dir);
  				dir = OC.dirname(dir) || '/';
  			}
  			else {
  				files = _.pluck(this.getSelectedFiles(), 'name');
  			}
  			OC.Notification.show(t('files','Your download is being prepared. This might take some time if the files are big.'));
  			OC.redirect(this.getDownloadUrl(files, dir));
  			return false;
  		},
  
  		/**
  		 * Event handler for when clicking on "Delete" for the selected files
  		 */
  		_onClickDeleteSelected: function(event) {
  			var files = null;
  			if (!this.isAllSelected()) {
  				files = _.pluck(this.getSelectedFiles(), 'name');
  			}
  			this.do_delete(files);
  			event.preventDefault();
  			return false;
  		},
  
  		/**
  		 * Event handler when clicking on a table header
  		 */
  		_onClickHeader: function(e) {
  			var $target = $(e.target);
  			var sort;
  			if (!$target.is('a')) {
  				$target = $target.closest('a');
  			}
  			sort = $target.attr('data-sort');
  			if (sort) {
  				if (this._sort === sort) {
  					this.setSort(sort, (this._sortDirection === 'desc')?'asc':'desc');
  				}
  				else {
  					if ( sort === 'name' ) {	//default sorting of name is opposite to size and mtime
  						this.setSort(sort, 'asc');
  					}
  					else {
  						this.setSort(sort, 'desc');
  					}
  				}
  				this.reload();
  			}
  		},
  
  		/**
  		 * Event handler when clicking on a bread crumb
  		 */
  		_onClickBreadCrumb: function(e) {
  			var $el = $(e.target).closest('.crumb'),
  				$targetDir = $el.data('dir');
  
  			if ($targetDir !== undefined) {
  				e.preventDefault();
  				this.changeDirectory($targetDir);
  			}
  		},
  
  		/**
  		 * Event handler for when scrolling the list container.
  		 * This appends/renders the next page of entries when reaching the bottom.
  		 */
  		_onScroll: function(e) {
  			if (this.$container.scrollTop() + this.$container.height() > this.$el.height() - 100) {
  				this._nextPage(true);
  			}
  		},
  
  		/**
  		 * Event handler when dropping on a breadcrumb
  		 */
  		_onDropOnBreadCrumb: function( event, ui ) {
  			var $target = $(event.target);
  			if (!$target.is('.crumb')) {
  				$target = $target.closest('.crumb');
  			}
  			var targetPath = $(event.target).data('dir');
  			var dir = this.getCurrentDirectory();
  			while (dir.substr(0,1) === '/') {//remove extra leading /'s
  				dir = dir.substr(1);
  			}
  			dir = '/' + dir;
  			if (dir.substr(-1,1) !== '/') {
  				dir = dir + '/';
  			}
  			// do nothing if dragged on current dir
  			if (targetPath === dir || targetPath + '/' === dir) {
  				return;
  			}
  
  			var files = this.getSelectedFiles();
  			if (files.length === 0) {
  				// single one selected without checkbox?
  				files = _.map(ui.helper.find('tr'), this.elementToFile);
  			}
  
  			this.move(_.pluck(files, 'name'), targetPath);
  		},
  
  		/**
  		 * Sets a new page title
  		 */
  		setPageTitle: function(title){
  			if (title) {
  				title += ' - ';
31b7f2792   Kload   Upgrade to ownclo...
445
  			} else {
6d9380f96   Cédric Dupont   Update sources OC...
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
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
  				title = '';
  			}
  			title += this.appName;
  			// Sets the page title with the " - ownCloud" suffix as in templates
  			window.document.title = title + ' - ' + oc_defaults.title;
  
  			return true;
  		},
  		/**
  		 * Returns the tr element for a given file name
  		 * @param fileName file name
  		 */
  		findFileEl: function(fileName){
  			// use filterAttr to avoid escaping issues
  			return this.$fileList.find('tr').filterAttr('data-file', fileName);
  		},
  
  		/**
  		 * Returns the file data from a given file element.
  		 * @param $el file tr element
  		 * @return file data
  		 */
  		elementToFile: function($el){
  			$el = $($el);
  			return {
  				id: parseInt($el.attr('data-id'), 10),
  				name: $el.attr('data-file'),
  				mimetype: $el.attr('data-mime'),
  				type: $el.attr('data-type'),
  				size: parseInt($el.attr('data-size'), 10),
  				etag: $el.attr('data-etag')
  			};
  		},
  
  		/**
  		 * Appends the next page of files into the table
  		 * @param animate true to animate the new elements
  		 * @return array of DOM elements of the newly added files
  		 */
  		_nextPage: function(animate) {
  			var index = this.$fileList.children().length,
  				count = this.pageSize,
  				tr,
  				fileData,
  				newTrs = [],
  				isAllSelected = this.isAllSelected();
  
  			if (index >= this.files.length) {
  				return false;
  			}
  
  			while (count > 0 && index < this.files.length) {
  				fileData = this.files[index];
  				tr = this._renderRow(fileData, {updateSummary: false, silent: true});
  				this.$fileList.append(tr);
  				if (isAllSelected || this._selectedFiles[fileData.id]) {
  					tr.addClass('selected');
  					tr.find('input:checkbox').prop('checked', true);
  				}
  				if (animate) {
  					tr.addClass('appear transparent');
  				}
  				newTrs.push(tr);
  				index++;
  				count--;
  			}
  
  			// trigger event for newly added rows
  			if (newTrs.length > 0) {
  				this.$fileList.trigger($.Event('fileActionsReady', {fileList: this, $files: newTrs}));
  			}
  
  			if (animate) {
  				// defer, for animation
  				window.setTimeout(function() {
  					for (var i = 0; i < newTrs.length; i++ ) {
  						newTrs[i].removeClass('transparent');
  					}
  				}, 0);
  			}
  			return newTrs;
  		},
  
  		/**
  		 * Event handler for when file actions were updated.
  		 * This will refresh the file actions on the list.
  		 */
  		_onFileActionsUpdated: function() {
  			var self = this;
  			var $files = this.$fileList.find('tr');
  			if (!$files.length) {
  				return;
  			}
  
  			$files.each(function() {
  				self.fileActions.display($(this).find('td.filename'), false, self);
  			});
  			this.$fileList.trigger($.Event('fileActionsReady', {fileList: this, $files: $files}));
  
  		},
  
  		/**
  		 * Sets the files to be displayed in the list.
  		 * This operation will re-render the list and update the summary.
  		 * @param filesArray array of file data (map)
  		 */
  		setFiles: function(filesArray) {
  			// detach to make adding multiple rows faster
  			this.files = filesArray;
  
  			this.$fileList.empty();
  
  			// clear "Select all" checkbox
  			this.$el.find('.select-all').prop('checked', false);
  
  			this.isEmpty = this.files.length === 0;
  			this._nextPage();
  
  			this.updateEmptyContent();
  
  			this.fileSummary.calculate(filesArray);
  
  			this._selectedFiles = {};
  			this._selectionSummary.clear();
  			this.updateSelectionSummary();
  			$(window).scrollTop(0);
  
  			this.$fileList.trigger(jQuery.Event("updated"));
  		},
  		/**
  		 * Creates a new table row element using the given file data.
  		 * @param fileData map of file attributes
  		 * @param options map of attribute "loading" whether the entry is currently loading
  		 * @return new tr element (not appended to the table)
  		 */
  		_createRow: function(fileData, options) {
  			var td, simpleSize, basename, extension, sizeColor,
  				icon = OC.Util.replaceSVGIcon(fileData.icon),
  				name = fileData.name,
  				type = fileData.type || 'file',
  				mtime = parseInt(fileData.mtime, 10) || new Date().getTime(),
  				mime = fileData.mimetype,
  				path = fileData.path,
  				linkUrl;
  			options = options || {};
  
  			if (type === 'dir') {
  				mime = mime || 'httpd/unix-directory';
  			}
  
  			//containing tr
  			var tr = $('<tr></tr>').attr({
  				"data-id" : fileData.id,
  				"data-type": type,
  				"data-size": fileData.size,
  				"data-file": name,
  				"data-mime": mime,
  				"data-mtime": mtime,
  				"data-etag": fileData.etag,
  				"data-permissions": fileData.permissions || this.getDirectoryPermissions()
  			});
  
  			if (fileData.mountType) {
  				tr.attr('data-mounttype', fileData.mountType);
  			}
  
  			if (!_.isUndefined(path)) {
  				tr.attr('data-path', path);
  			}
  			else {
  				path = this.getCurrentDirectory();
  			}
  
  			if (type === 'dir') {
  				// use default folder icon
  				icon = icon || OC.imagePath('core', 'filetypes/folder');
  			}
  			else {
  				icon = icon || OC.imagePath('core', 'filetypes/file');
  			}
  
  			// filename td
  			td = $('<td></td>').attr({
  				"class": "filename",
  				"style": 'background-image:url(' + icon + '); background-size: 32px;'
  			});
  
  			// linkUrl
  			if (type === 'dir') {
  				linkUrl = this.linkTo(path + '/' + name);
  			}
  			else {
  				linkUrl = this.getDownloadUrl(name, path);
  			}
  			td.append('<input id="select-' + this.id + '-' + fileData.id +
  				'" type="checkbox" /><label for="select-' + this.id + '-' + fileData.id + '"></label>');
  			var linkElem = $('<a></a>').attr({
  				"class": "name",
  				"href": linkUrl
  			});
  
  			// from here work on the display name
  			name = fileData.displayName || name;
  
  			// split extension from filename for non dirs
  			if (type !== 'dir' && name.indexOf('.') !== -1) {
  				basename = name.substr(0, name.lastIndexOf('.'));
  				extension = name.substr(name.lastIndexOf('.'));
  			} else {
  				basename = name;
  				extension = false;
  			}
  			var nameSpan=$('<span></span>').addClass('nametext');
  			var innernameSpan = $('<span></span>').addClass('innernametext').text(basename);
  			nameSpan.append(innernameSpan);
  			linkElem.append(nameSpan);
  			if (extension) {
  				nameSpan.append($('<span></span>').addClass('extension').text(extension));
  			}
  			// dirs can show the number of uploaded files
  			if (type === 'dir') {
  				linkElem.append($('<span></span>').attr({
  					'class': 'uploadtext',
  					'currentUploads': 0
  				}));
  			}
  			td.append(linkElem);
  			tr.append(td);
  
  			// size column
  			if (typeof(fileData.size) !== 'undefined' && fileData.size >= 0) {
  				simpleSize = humanFileSize(parseInt(fileData.size, 10), true);
  				sizeColor = Math.round(160-Math.pow((fileData.size/(1024*1024)),2));
  			} else {
  				simpleSize = t('files', 'Pending');
  			}
  
  			td = $('<td></td>').attr({
  				"class": "filesize",
  				"style": 'color:rgb(' + sizeColor + ',' + sizeColor + ',' + sizeColor + ')'
  			}).text(simpleSize);
  			tr.append(td);
  
  			// date column (1000 milliseconds to seconds, 60 seconds, 60 minutes, 24 hours)
  			// difference in days multiplied by 5 - brightest shade for files older than 32 days (160/5)
  			var modifiedColor = Math.round(((new Date()).getTime() - mtime )/1000/60/60/24*5 );
  			// ensure that the brightest color is still readable
  			if (modifiedColor >= '160') {
  				modifiedColor = 160;
  			}
  			td = $('<td></td>').attr({ "class": "date" });
  			td.append($('<span></span>').attr({
  				"class": "modified",
  				"title": formatDate(mtime),
  				"style": 'color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')'
  			}).text( relative_modified_date(mtime / 1000) ));
  			tr.find('.filesize').text(simpleSize);
  			tr.append(td);
  			return tr;
  		},
  
  		/**
  		 * Adds an entry to the files array and also into the DOM
  		 * in a sorted manner.
  		 *
  		 * @param fileData map of file attributes
  		 * @param options map of attributes:
  		 * - "updateSummary": true to update the summary after adding (default), false otherwise
  		 * - "silent": true to prevent firing events like "fileActionsReady"
  		 * - "animate": true to animate preview loading (defaults to true here)
  		 * @return new tr element (not appended to the table)
  		 */
  		add: function(fileData, options) {
  			var index = -1;
  			var $tr;
  			var $rows;
  			var $insertionPoint;
  			options = _.extend({animate: true}, options || {});
  
  			// there are three situations to cover:
  			// 1) insertion point is visible on the current page
  			// 2) insertion point is on a not visible page (visible after scrolling)
  			// 3) insertion point is at the end of the list
  
  			$rows = this.$fileList.children();
  			index = this._findInsertionIndex(fileData);
  			if (index > this.files.length) {
  				index = this.files.length;
  			}
  			else {
  				$insertionPoint = $rows.eq(index);
  			}
  
  			// is the insertion point visible ?
  			if ($insertionPoint.length) {
  				// only render if it will really be inserted
  				$tr = this._renderRow(fileData, options);
  				$insertionPoint.before($tr);
  			}
  			else {
  				// if insertion point is after the last visible
  				// entry, append
  				if (index === $rows.length) {
  					$tr = this._renderRow(fileData, options);
  					this.$fileList.append($tr);
  				}
  			}
  
  			this.isEmpty = false;
  			this.files.splice(index, 0, fileData);
  
  			if ($tr && options.animate) {
  				$tr.addClass('appear transparent');
  				window.setTimeout(function() {
  					$tr.removeClass('transparent');
  				});
  			}
  
  			// defaults to true if not defined
  			if (typeof(options.updateSummary) === 'undefined' || !!options.updateSummary) {
  				this.fileSummary.add(fileData, true);
  				this.updateEmptyContent();
  			}
  
  			return $tr;
  		},
  
  		/**
  		 * Creates a new row element based on the given attributes
  		 * and returns it.
  		 *
  		 * @param fileData map of file attributes
  		 * @param options map of attributes:
  		 * - "index" optional index at which to insert the element
  		 * - "updateSummary" true to update the summary after adding (default), false otherwise
  		 * - "animate" true to animate the preview rendering
  		 * @return new tr element (not appended to the table)
  		 */
  		_renderRow: function(fileData, options) {
  			options = options || {};
  			var type = fileData.type || 'file',
  				mime = fileData.mimetype,
  				path = fileData.path || this.getCurrentDirectory(),
  				permissions = parseInt(fileData.permissions, 10) || 0;
  
  			if (fileData.isShareMountPoint) {
  				permissions = permissions | OC.PERMISSION_UPDATE;
  			}
  
  			if (type === 'dir') {
  				mime = mime || 'httpd/unix-directory';
  			}
  			var tr = this._createRow(
  				fileData,
  				options
  			);
  			var filenameTd = tr.find('td.filename');
  
  			// TODO: move dragging to FileActions ?
  			// enable drag only for deletable files
  			if (this._dragOptions && permissions & OC.PERMISSION_DELETE) {
  				filenameTd.draggable(this._dragOptions);
  			}
  			// allow dropping on folders
  			if (this._folderDropOptions && fileData.type === 'dir') {
  				filenameTd.droppable(this._folderDropOptions);
  			}
  
  			if (options.hidden) {
  				tr.addClass('hidden');
  			}
  
  			// display actions
  			this.fileActions.display(filenameTd, !options.silent, this);
  
  			if (fileData.isPreviewAvailable) {
  				// lazy load / newly inserted td ?
  				if (options.animate) {
  					this.lazyLoadPreview({
  						path: path + '/' + fileData.name,
  						mime: mime,
  						etag: fileData.etag,
  						callback: function(url) {
  							filenameTd.css('background-image', 'url(' + url + ')');
  						}
  					});
  				}
  				else {
  					// set the preview URL directly
  					var urlSpec = {
  							file: path + '/' + fileData.name,
  							c: fileData.etag
  						};
  					var previewUrl = this.generatePreviewUrl(urlSpec);
  					previewUrl = previewUrl.replace('(', '%28').replace(')', '%29');
  					filenameTd.css('background-image', 'url(' + previewUrl + ')');
  				}
  			}
  			return tr;
  		},
  		/**
  		 * Returns the current directory
  		 * @return current directory
  		 */
  		getCurrentDirectory: function(){
  			return this._currentDirectory || this.$el.find('#dir').val() || '/';
  		},
  		/**
  		 * Returns the directory permissions
  		 * @return permission value as integer
  		 */
  		getDirectoryPermissions: function() {
  			return parseInt(this.$el.find('#permissions').val(), 10);
  		},
  		/**
  		 * @brief Changes the current directory and reload the file list.
  		 * @param targetDir target directory (non URL encoded)
  		 * @param changeUrl false if the URL must not be changed (defaults to true)
  		 * @param {boolean} force set to true to force changing directory
  		 */
  		changeDirectory: function(targetDir, changeUrl, force) {
  			var self = this;
  			var currentDir = this.getCurrentDirectory();
  			targetDir = targetDir || '/';
  			if (!force && currentDir === targetDir) {
  				return;
  			}
  			this._setCurrentDir(targetDir, changeUrl);
  			this.reload().then(function(success){
  				if (!success) {
  					self.changeDirectory(currentDir, true);
  				}
  			});
  		},
  		linkTo: function(dir) {
  			return OC.linkTo('files', 'index.php')+"?dir="+ encodeURIComponent(dir).replace(/%2F/g, '/');
  		},
  
  		/**
  		 * Sets the current directory name and updates the breadcrumb.
  		 * @param targetDir directory to display
  		 * @param changeUrl true to also update the URL, false otherwise (default)
  		 */
  		_setCurrentDir: function(targetDir, changeUrl) {
  			var previousDir = this.getCurrentDirectory(),
  				baseDir = OC.basename(targetDir);
  
  			if (baseDir !== '') {
  				this.setPageTitle(baseDir);
  			}
  			else {
  				this.setPageTitle();
  			}
  
  			this._currentDirectory = targetDir;
  
  			// legacy stuff
  			this.$el.find('#dir').val(targetDir);
  
  			if (changeUrl !== false) {
  				this.$el.trigger(jQuery.Event('changeDirectory', {
  					dir: targetDir,
  					previousDir: previousDir
  				}));
  			}
  			this.breadcrumb.setDirectory(this.getCurrentDirectory());
  		},
  		/**
  		 * Sets the current sorting and refreshes the list
  		 *
  		 * @param sort sort attribute name
  		 * @param direction sort direction, one of "asc" or "desc"
  		 */
  		setSort: function(sort, direction) {
  			var comparator = FileList.Comparators[sort] || FileList.Comparators.name;
  			this._sort = sort;
  			this._sortDirection = (direction === 'desc')?'desc':'asc';
  			this._sortComparator = comparator;
  
  			if (direction === 'desc') {
  				this._sortComparator = function(fileInfo1, fileInfo2) {
  					return -comparator(fileInfo1, fileInfo2);
  				};
  			}
  			this.$el.find('thead th .sort-indicator')
  				.removeClass(this.SORT_INDICATOR_ASC_CLASS)
  				.removeClass(this.SORT_INDICATOR_DESC_CLASS)
  				.toggleClass('hidden', true)
  				.addClass(this.SORT_INDICATOR_DESC_CLASS);
  
  			this.$el.find('thead th.column-' + sort + ' .sort-indicator')
  				.removeClass(this.SORT_INDICATOR_ASC_CLASS)
  				.removeClass(this.SORT_INDICATOR_DESC_CLASS)
  				.toggleClass('hidden', false)
  				.addClass(direction === 'desc' ? this.SORT_INDICATOR_DESC_CLASS : this.SORT_INDICATOR_ASC_CLASS);
  		},
  
  		/**
  		 * Reloads the file list using ajax call
  		 *
  		 * @return ajax call object
  		 */
  		reload: function() {
  			this._selectedFiles = {};
  			this._selectionSummary.clear();
  			this.$el.find('.select-all').prop('checked', false);
  			this.showMask();
  			if (this._reloadCall) {
  				this._reloadCall.abort();
  			}
  			this._reloadCall = $.ajax({
  				url: this.getAjaxUrl('list'),
  				data: {
  					dir : this.getCurrentDirectory(),
  					sort: this._sort,
  					sortdirection: this._sortDirection
  				}
  			});
  			var callBack = this.reloadCallback.bind(this);
  			return this._reloadCall.then(callBack, callBack);
  		},
  		reloadCallback: function(result) {
  			delete this._reloadCall;
  			this.hideMask();
  
  			if (!result || result.status === 'error') {
  				// if the error is not related to folder we're trying to load, reload the page to handle logout etc
  				if (result.data.error === 'authentication_error' ||
  					result.data.error === 'token_expired' ||
  					result.data.error === 'application_not_enabled'
  				) {
  					OC.redirect(OC.generateUrl('apps/files'));
31b7f2792   Kload   Upgrade to ownclo...
978
  				}
6d9380f96   Cédric Dupont   Update sources OC...
979
980
  				OC.Notification.show(result.data.message);
  				return false;
31b7f2792   Kload   Upgrade to ownclo...
981
  			}
6d9380f96   Cédric Dupont   Update sources OC...
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
  
  			if (result.status === 404) {
  				// go back home
  				this.changeDirectory('/');
  				return false;
  			}
  			// aborted ?
  			if (result.status === 0){
  				return true;
  			}
  
  			// TODO: should rather return upload file size through
  			// the files list ajax call
  			this.updateStorageStatistics(true);
  
  			if (result.data.permissions) {
  				this.setDirectoryPermissions(result.data.permissions);
  			}
  
  			this.setFiles(result.data.files);
31b7f2792   Kload   Upgrade to ownclo...
1002
  			return true;
6d9380f96   Cédric Dupont   Update sources OC...
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
  		},
  
  		updateStorageStatistics: function(force) {
  			OCA.Files.Files.updateStorageStatistics(this.getCurrentDirectory(), force);
  		},
  
  		getAjaxUrl: function(action, params) {
  			return OCA.Files.Files.getAjaxUrl(action, params);
  		},
  
  		getDownloadUrl: function(files, dir) {
  			return OCA.Files.Files.getDownloadUrl(files, dir || this.getCurrentDirectory());
  		},
  
  		/**
  		 * Generates a preview URL based on the URL space.
  		 * @param urlSpec map with {x: width, y: height, file: file path}
  		 * @return preview URL
  		 */
  		generatePreviewUrl: function(urlSpec) {
  			urlSpec = urlSpec || {};
  			if (!urlSpec.x) {
  				urlSpec.x = this.$table.data('preview-x') || 36;
  			}
  			if (!urlSpec.y) {
  				urlSpec.y = this.$table.data('preview-y') || 36;
  			}
  			urlSpec.y *= window.devicePixelRatio;
  			urlSpec.x *= window.devicePixelRatio;
  			urlSpec.forceIcon = 0;
  			return OC.generateUrl('/core/preview.png?') + $.param(urlSpec);
  		},
  
  		/**
  		 * Lazy load a file's preview.
  		 *
  		 * @param path path of the file
  		 * @param mime mime type
  		 * @param callback callback function to call when the image was loaded
  		 * @param etag file etag (for caching)
  		 */
  		lazyLoadPreview : function(options) {
  			var self = this;
  			var path = options.path;
  			var mime = options.mime;
  			var ready = options.callback;
  			var etag = options.etag;
  
  			// get mime icon url
  			OCA.Files.Files.getMimeIcon(mime, function(iconURL) {
  				var previewURL,
  					urlSpec = {};
  				ready(iconURL); // set mimeicon URL
  
  				urlSpec.file = OCA.Files.Files.fixPath(path);
  
  				if (etag){
  					// use etag as cache buster
  					urlSpec.c = etag;
  				}
  				else {
  					console.warn('OCA.Files.FileList.lazyLoadPreview(): missing etag argument');
  				}
  
  				previewURL = self.generatePreviewUrl(urlSpec);
  				previewURL = previewURL.replace('(', '%28');
  				previewURL = previewURL.replace(')', '%29');
  
  				// preload image to prevent delay
  				// this will make the browser cache the image
  				var img = new Image();
  				img.onload = function(){
  					// if loading the preview image failed (no preview for the mimetype) then img.width will < 5
  					if (img.width > 5) {
  						ready(previewURL);
  					}
  				};
  				img.src = previewURL;
  			});
  		},
  
  		setDirectoryPermissions: function(permissions) {
  			var isCreatable = (permissions & OC.PERMISSION_CREATE) !== 0;
  			this.$el.find('#permissions').val(permissions);
  			this.$el.find('.creatable').toggleClass('hidden', !isCreatable);
  			this.$el.find('.notCreatable').toggleClass('hidden', isCreatable);
  		},
  		/**
  		 * Shows/hides action buttons
  		 *
  		 * @param show true for enabling, false for disabling
  		 */
  		showActions: function(show){
  			this.$el.find('.actions,#file_action_panel').toggleClass('hidden', !show);
  			if (show){
  				// make sure to display according to permissions
  				var permissions = this.getDirectoryPermissions();
  				var isCreatable = (permissions & OC.PERMISSION_CREATE) !== 0;
  				this.$el.find('.creatable').toggleClass('hidden', !isCreatable);
  				this.$el.find('.notCreatable').toggleClass('hidden', isCreatable);
  				// remove old style breadcrumbs (some apps might create them)
  				this.$el.find('#controls .crumb').remove();
  				// refresh breadcrumbs in case it was replaced by an app
  				this.breadcrumb.render();
  			}
  			else{
  				this.$el.find('.creatable, .notCreatable').addClass('hidden');
  			}
  		},
  		/**
  		 * Enables/disables viewer mode.
  		 * In viewer mode, apps can embed themselves under the controls bar.
  		 * In viewer mode, the actions of the file list will be hidden.
  		 * @param show true for enabling, false for disabling
  		 */
  		setViewerMode: function(show){
  			this.showActions(!show);
  			this.$el.find('#filestable').toggleClass('hidden', show);
  			this.$el.trigger(new $.Event('changeViewerMode', {viewerModeEnabled: show}));
  		},
  		/**
  		 * Removes a file entry from the list
  		 * @param name name of the file to remove
  		 * @param options optional options as map:
  		 * "updateSummary": true to update the summary (default), false otherwise
  		 * @return deleted element
  		 */
  		remove: function(name, options){
  			options = options || {};
  			var fileEl = this.findFileEl(name);
  			var index = fileEl.index();
  			if (!fileEl.length) {
  				return null;
  			}
  			if (this._selectedFiles[fileEl.data('id')]) {
  				// remove from selection first
  				this._selectFileEl(fileEl, false);
  				this.updateSelectionSummary();
  			}
  			if (this._dragOptions && (fileEl.data('permissions') & OC.PERMISSION_DELETE)) {
  				// file is only draggable when delete permissions are set
  				fileEl.find('td.filename').draggable('destroy');
  			}
  			this.files.splice(index, 1);
  			fileEl.remove();
  			// TODO: improve performance on batch update
  			this.isEmpty = !this.files.length;
  			if (typeof(options.updateSummary) === 'undefined' || !!options.updateSummary) {
  				this.updateEmptyContent();
  				this.fileSummary.remove({type: fileEl.attr('data-type'), size: fileEl.attr('data-size')}, true);
  			}
  
  			var lastIndex = this.$fileList.children().length;
  			// if there are less elements visible than one page
  			// but there are still pending elements in the array,
  			// then directly append the next page
  			if (lastIndex < this.files.length && lastIndex < this.pageSize) {
  				this._nextPage(true);
  			}
  
  			return fileEl;
  		},
  		/**
  		 * Finds the index of the row before which the given
  		 * fileData should be inserted, considering the current
  		 * sorting
  		 */
  		_findInsertionIndex: function(fileData) {
  			var index = 0;
  			while (index < this.files.length && this._sortComparator(fileData, this.files[index]) > 0) {
  				index++;
  			}
  			return index;
  		},
  		/**
  		 * Moves a file to a given target folder.
  		 *
  		 * @param fileNames array of file names to move
  		 * @param targetPath absolute target path
  		 */
  		move: function(fileNames, targetPath) {
  			var self = this;
  			var dir = this.getCurrentDirectory();
  			var target = OC.basename(targetPath);
  			if (!_.isArray(fileNames)) {
  				fileNames = [fileNames];
  			}
  			_.each(fileNames, function(fileName) {
  				var $tr = self.findFileEl(fileName);
  				var $td = $tr.children('td.filename');
  				var oldBackgroundImage = $td.css('background-image');
  				$td.css('background-image', 'url('+ OC.imagePath('core', 'loading.gif') + ')');
  				// TODO: improve performance by sending all file names in a single call
  				$.post(
  					OC.filePath('files', 'ajax', 'move.php'),
  					{
  						dir: dir,
  						file: fileName,
  						target: targetPath
  					},
  					function(result) {
  						if (result) {
  							if (result.status === 'success') {
  								// if still viewing the same directory
  								if (self.getCurrentDirectory() === dir) {
  									// recalculate folder size
  									var oldFile = self.findFileEl(target);
  									var newFile = self.findFileEl(fileName);
  									var oldSize = oldFile.data('size');
  									var newSize = oldSize + newFile.data('size');
  									oldFile.data('size', newSize);
  									oldFile.find('td.filesize').text(OC.Util.humanFileSize(newSize));
  
  									// TODO: also update entry in FileList.files
  
  									self.remove(fileName);
31b7f2792   Kload   Upgrade to ownclo...
1219
  								}
6d9380f96   Cédric Dupont   Update sources OC...
1220
1221
1222
1223
  							} else {
  								OC.Notification.hide();
  								if (result.status === 'error' && result.data.message) {
  									OC.Notification.show(result.data.message);
31b7f2792   Kload   Upgrade to ownclo...
1224
1225
  								}
  								else {
6d9380f96   Cédric Dupont   Update sources OC...
1226
  									OC.Notification.show(t('files', 'Error moving file.'));
31b7f2792   Kload   Upgrade to ownclo...
1227
  								}
6d9380f96   Cédric Dupont   Update sources OC...
1228
1229
1230
1231
  								// hide notification after 10 sec
  								setTimeout(function() {
  									OC.Notification.hide();
  								}, 10000);
31b7f2792   Kload   Upgrade to ownclo...
1232
  							}
6d9380f96   Cédric Dupont   Update sources OC...
1233
1234
  						} else {
  							OC.dialogs.alert(t('files', 'Error moving file'), t('files', 'Error'));
03e52840d   Kload   Init
1235
  						}
6d9380f96   Cédric Dupont   Update sources OC...
1236
  						$td.css('background-image', oldBackgroundImage);
31b7f2792   Kload   Upgrade to ownclo...
1237
  					}
6d9380f96   Cédric Dupont   Update sources OC...
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
  				);
  			});
  
  		},
  
  		/**
  		 * Triggers file rename input field for the given file name.
  		 * If the user enters a new name, the file will be renamed.
  		 *
  		 * @param oldname file name of the file to rename
  		 */
  		rename: function(oldname) {
  			var self = this;
  			var tr, td, input, form;
  			tr = this.findFileEl(oldname);
  			var oldFileInfo = this.files[tr.index()];
  			tr.data('renaming',true);
  			td = tr.children('td.filename');
  			input = $('<input type="text" class="filename"/>').val(oldname);
  			form = $('<form></form>');
  			form.append(input);
  			td.children('a.name').hide();
  			td.append(form);
  			input.focus();
  			//preselect input
  			var len = input.val().lastIndexOf('.');
  			if ( len === -1 ||
  				tr.data('type') === 'dir' ) {
  				len = input.val().length;
03e52840d   Kload   Init
1267
  			}
6d9380f96   Cédric Dupont   Update sources OC...
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
  			input.selectRange(0, len);
  			var checkInput = function () {
  				var filename = input.val();
  				if (filename !== oldname) {
  					// Files.isFileNameValid(filename) throws an exception itself
  					OCA.Files.Files.isFileNameValid(filename);
  					if (self.inList(filename)) {
  						throw t('files', '{new_name} already exists', {new_name: filename});
  					}
  				}
  				return true;
  			};
  
  			function restore() {
31b7f2792   Kload   Upgrade to ownclo...
1282
  				input.tipsy('hide');
03e52840d   Kload   Init
1283
1284
1285
1286
  				tr.data('renaming',false);
  				form.remove();
  				td.children('a.name').show();
  			}
6d9380f96   Cédric Dupont   Update sources OC...
1287
1288
1289
1290
1291
1292
  
  			form.submit(function(event) {
  				event.stopPropagation();
  				event.preventDefault();
  				if (input.hasClass('error')) {
  					return;
03e52840d   Kload   Init
1293
  				}
03e52840d   Kload   Init
1294

6d9380f96   Cédric Dupont   Update sources OC...
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
  				try {
  					var newName = input.val();
  					input.tipsy('hide');
  					form.remove();
  
  					if (newName !== oldname) {
  						checkInput();
  						// mark as loading (temp element)
  						td.css('background-image', 'url('+ OC.imagePath('core', 'loading.gif') + ')');
  						tr.attr('data-file', newName);
  						var basename = newName;
  						if (newName.indexOf('.') > 0 && tr.data('type') !== 'dir') {
  							basename = newName.substr(0, newName.lastIndexOf('.'));
31b7f2792   Kload   Upgrade to ownclo...
1308
  						}
6d9380f96   Cédric Dupont   Update sources OC...
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
  						td.find('a.name span.nametext').text(basename);
  						td.children('a.name').show();
  						tr.find('.fileactions, .action').addClass('hidden');
  
  						$.ajax({
  							url: OC.filePath('files','ajax','rename.php'),
  							data: {
  								dir : tr.attr('data-path') || self.getCurrentDirectory(),
  								newname: newName,
  								file: oldname
  							},
  							success: function(result) {
  								var fileInfo;
  								if (!result || result.status === 'error') {
  									OC.dialogs.alert(result.data.message, t('core', 'Could not rename file'));
  									fileInfo = oldFileInfo;
  								}
  								else {
  									fileInfo = result.data;
  								}
  								// reinsert row
  								self.files.splice(tr.index(), 1);
  								tr.remove();
  								tr = self.add(fileInfo, {updateSummary: false, silent: true});
  								self.$fileList.trigger($.Event('fileActionsReady', {fileList: self, $files: $(tr)}));
  							}
03e52840d   Kload   Init
1335
  						});
6d9380f96   Cédric Dupont   Update sources OC...
1336
1337
1338
1339
1340
1341
  					} else {
  						// add back the old file info when cancelled
  						self.files.splice(tr.index(), 1);
  						tr.remove();
  						tr = self.add(oldFileInfo, {updateSummary: false, silent: true});
  						self.$fileList.trigger($.Event('fileActionsReady', {fileList: self, $files: $(tr)}));
03e52840d   Kload   Init
1342
  					}
6d9380f96   Cédric Dupont   Update sources OC...
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
  				} catch (error) {
  					input.attr('title', error);
  					input.tipsy({gravity: 'w', trigger: 'manual'});
  					input.tipsy('show');
  					input.addClass('error');
  				}
  				return false;
  			});
  			input.keyup(function(event) {
  				// verify filename on typing
  				try {
  					checkInput();
  					input.tipsy('hide');
  					input.removeClass('error');
  				} catch (error) {
  					input.attr('title', error);
  					input.tipsy({gravity: 'w', trigger: 'manual'});
  					input.tipsy('show');
  					input.addClass('error');
  				}
  				if (event.keyCode === 27) {
  					restore();
  				}
  			});
  			input.click(function(event) {
  				event.stopPropagation();
  				event.preventDefault();
  			});
  			input.blur(function() {
  				form.trigger('submit');
  			});
  		},
  		inList:function(file) {
  			return this.findFileEl(file).length;
  		},
  		/**
  		 * Delete the given files from the given dir
  		 * @param files file names list (without path)
  		 * @param dir directory in which to delete the files, defaults to the current
  		 * directory
  		 */
  		do_delete:function(files, dir) {
  			var self = this;
  			var params;
  			if (files && files.substr) {
  				files=[files];
  			}
  			if (files) {
  				for (var i=0; i<files.length; i++) {
  					var deleteAction = this.findFileEl(files[i]).children("td.date").children(".action.delete");
  					deleteAction.removeClass('delete-icon').addClass('progress-icon');
  				}
  			}
  			// Finish any existing actions
  			if (this.lastAction) {
  				this.lastAction();
  			}
  
  			params = {
  				dir: dir || this.getCurrentDirectory()
31b7f2792   Kload   Upgrade to ownclo...
1403
  			};
6d9380f96   Cédric Dupont   Update sources OC...
1404
1405
1406
1407
1408
1409
1410
1411
1412
  			if (files) {
  				params.files = JSON.stringify(files);
  			}
  			else {
  				// no files passed, delete all in current dir
  				params.allfiles = true;
  				// show spinner for all files
  				this.$fileList.find('tr>td.date .action.delete').removeClass('delete-icon').addClass('progress-icon');
  			}
31b7f2792   Kload   Upgrade to ownclo...
1413

6d9380f96   Cédric Dupont   Update sources OC...
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
  			$.post(OC.filePath('files', 'ajax', 'delete.php'),
  					params,
  					function(result) {
  						if (result.status === 'success') {
  							if (params.allfiles) {
  								self.setFiles([]);
  							}
  							else {
  								$.each(files,function(index,file) {
  									var fileEl = self.remove(file, {updateSummary: false});
  									// FIXME: not sure why we need this after the
  									// element isn't even in the DOM any more
  									fileEl.find('input[type="checkbox"]').prop('checked', false);
  									fileEl.removeClass('selected');
  									self.fileSummary.remove({type: fileEl.attr('data-type'), size: fileEl.attr('data-size')});
  								});
  							}
  							// TODO: this info should be returned by the ajax call!
  							self.updateEmptyContent();
  							self.fileSummary.update();
  							self.updateSelectionSummary();
  							self.updateStorageStatistics();
  						} else {
  							if (result.status === 'error' && result.data.message) {
  								OC.Notification.show(result.data.message);
  							}
  							else {
  								OC.Notification.show(t('files', 'Error deleting file.'));
  							}
  							// hide notification after 10 sec
  							setTimeout(function() {
  								OC.Notification.hide();
  							}, 10000);
  							if (params.allfiles) {
  								// reload the page as we don't know what files were deleted
  								// and which ones remain
  								self.reload();
  							}
  							else {
  								$.each(files,function(index,file) {
  									var deleteAction = self.findFileEl(file).find('.action.delete');
  									deleteAction.removeClass('progress-icon').addClass('delete-icon');
  								});
  							}
  						}
  					});
  		},
  		/**
  		 * Creates the file summary section
  		 */
  		_createSummary: function() {
  			var $tr = $('<tr class="summary"></tr>');
  			this.$el.find('tfoot').append($tr);
31b7f2792   Kload   Upgrade to ownclo...
1467

6d9380f96   Cédric Dupont   Update sources OC...
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
  			return new OCA.Files.FileSummary($tr);
  		},
  		updateEmptyContent: function() {
  			var permissions = this.getDirectoryPermissions();
  			var isCreatable = (permissions & OC.PERMISSION_CREATE) !== 0;
  			this.$el.find('#emptycontent').toggleClass('hidden', !isCreatable || !this.isEmpty);
  			this.$el.find('#filestable thead th').toggleClass('hidden', this.isEmpty);
  		},
  		/**
  		 * Shows the loading mask.
  		 *
  		 * @see #hideMask
  		 */
  		showMask: function() {
  			// in case one was shown before
  			var $mask = this.$el.find('.mask');
  			if ($mask.exists()) {
  				return;
31b7f2792   Kload   Upgrade to ownclo...
1486
  			}
6d9380f96   Cédric Dupont   Update sources OC...
1487
  			this.$table.addClass('hidden');
31b7f2792   Kload   Upgrade to ownclo...
1488

6d9380f96   Cédric Dupont   Update sources OC...
1489
  			$mask = $('<div class="mask transparent"></div>');
31b7f2792   Kload   Upgrade to ownclo...
1490

6d9380f96   Cédric Dupont   Update sources OC...
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
  			$mask.css('background-image', 'url('+ OC.imagePath('core', 'loading.gif') + ')');
  			$mask.css('background-repeat', 'no-repeat');
  			this.$el.append($mask);
  
  			$mask.removeClass('transparent');
  		},
  		/**
  		 * Hide the loading mask.
  		 * @see #showMask
  		 */
  		hideMask: function() {
  			this.$el.find('.mask').remove();
  			this.$table.removeClass('hidden');
  		},
  		scrollTo:function(file) {
  			//scroll to and highlight preselected file
  			var $scrollToRow = this.findFileEl(file);
  			if ($scrollToRow.exists()) {
  				$scrollToRow.addClass('searchresult');
  				$(window).scrollTop($scrollToRow.position().top);
  				//remove highlight when hovered over
  				$scrollToRow.one('hover', function() {
  					$scrollToRow.removeClass('searchresult');
  				});
31b7f2792   Kload   Upgrade to ownclo...
1515
  			}
6d9380f96   Cédric Dupont   Update sources OC...
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
  		},
  		filter:function(query) {
  			this.$fileList.find('tr').each(function(i,e) {
  				if ($(e).data('file').toString().toLowerCase().indexOf(query.toLowerCase()) !== -1) {
  					$(e).addClass("searchresult");
  				} else {
  					$(e).removeClass("searchresult");
  				}
  			});
  			//do not use scrollto to prevent removing searchresult css class
  			var first = this.$fileList.find('tr.searchresult').first();
  			if (first.exists()) {
  				$(window).scrollTop(first.position().top);
31b7f2792   Kload   Upgrade to ownclo...
1529
  			}
6d9380f96   Cédric Dupont   Update sources OC...
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
  		},
  		unfilter:function() {
  			this.$fileList.find('tr.searchresult').each(function(i,e) {
  				$(e).removeClass("searchresult");
  			});
  		},
  		/**
  		 * Update UI based on the current selection
  		 */
  		updateSelectionSummary: function() {
  			var summary = this._selectionSummary.summary;
  			var canDelete;
  			if (summary.totalFiles === 0 && summary.totalDirs === 0) {
  				this.$el.find('#headerName a.name>span:first').text(t('files','Name'));
  				this.$el.find('#headerSize a>span:first').text(t('files','Size'));
  				this.$el.find('#modified a>span:first').text(t('files','Modified'));
  				this.$el.find('table').removeClass('multiselect');
  				this.$el.find('.selectedActions').addClass('hidden');
31b7f2792   Kload   Upgrade to ownclo...
1548
  			}
6d9380f96   Cédric Dupont   Update sources OC...
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
  			else {
  				canDelete = (this.getDirectoryPermissions() & OC.PERMISSION_DELETE);
  				this.$el.find('.selectedActions').removeClass('hidden');
  				this.$el.find('#headerSize a>span:first').text(OC.Util.humanFileSize(summary.totalSize));
  				var selection = '';
  				if (summary.totalDirs > 0) {
  					selection += n('files', '%n folder', '%n folders', summary.totalDirs);
  					if (summary.totalFiles > 0) {
  						selection += ' & ';
  					}
  				}
  				if (summary.totalFiles > 0) {
  					selection += n('files', '%n file', '%n files', summary.totalFiles);
  				}
  				this.$el.find('#headerName a.name>span:first').text(selection);
  				this.$el.find('#modified a>span:first').text('');
  				this.$el.find('table').addClass('multiselect');
  				this.$el.find('.delete-selected').toggleClass('hidden', !canDelete);
31b7f2792   Kload   Upgrade to ownclo...
1567
  			}
6d9380f96   Cédric Dupont   Update sources OC...
1568
  		},
31b7f2792   Kload   Upgrade to ownclo...
1569

6d9380f96   Cédric Dupont   Update sources OC...
1570
1571
1572
1573
1574
1575
1576
  		/**
  		 * Returns whether all files are selected
  		 * @return true if all files are selected, false otherwise
  		 */
  		isAllSelected: function() {
  			return this.$el.find('.select-all').prop('checked');
  		},
31b7f2792   Kload   Upgrade to ownclo...
1577

6d9380f96   Cédric Dupont   Update sources OC...
1578
1579
1580
1581
1582
1583
1584
1585
  		/**
  		 * Returns the file info of the selected files
  		 *
  		 * @return array of file names
  		 */
  		getSelectedFiles: function() {
  			return _.values(this._selectedFiles);
  		},
31b7f2792   Kload   Upgrade to ownclo...
1586

6d9380f96   Cédric Dupont   Update sources OC...
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
  		getUniqueName: function(name) {
  			if (this.findFileEl(name).exists()) {
  				var numMatch;
  				var parts=name.split('.');
  				var extension = "";
  				if (parts.length > 1) {
  					extension=parts.pop();
  				}
  				var base=parts.join('.');
  				numMatch=base.match(/\((\d+)\)/);
  				var num=2;
  				if (numMatch && numMatch.length>0) {
  					num=parseInt(numMatch[numMatch.length-1], 10)+1;
  					base=base.split('(');
  					base.pop();
  					base=$.trim(base.join('('));
  				}
  				name=base+' ('+num+')';
  				if (extension) {
  					name = name+'.'+extension;
  				}
  				// FIXME: ugly recursion
  				return this.getUniqueName(name);
31b7f2792   Kload   Upgrade to ownclo...
1610
  			}
6d9380f96   Cédric Dupont   Update sources OC...
1611
1612
  			return name;
  		},
03e52840d   Kload   Init
1613

6d9380f96   Cédric Dupont   Update sources OC...
1614
1615
1616
1617
1618
  		/**
  		 * Setup file upload events related to the file-upload plugin
  		 */
  		setupUploadEvents: function() {
  			var self = this;
03e52840d   Kload   Init
1619

6d9380f96   Cédric Dupont   Update sources OC...
1620
1621
  			// handle upload events
  			var fileUploadStart = this.$el.find('#file_upload_start');
31b7f2792   Kload   Upgrade to ownclo...
1622

6d9380f96   Cédric Dupont   Update sources OC...
1623
1624
  			// detect the progress bar resize
  			fileUploadStart.on('resized', this._onResize);
31b7f2792   Kload   Upgrade to ownclo...
1625

6d9380f96   Cédric Dupont   Update sources OC...
1626
1627
  			fileUploadStart.on('fileuploaddrop', function(e, data) {
  				OC.Upload.log('filelist handle fileuploaddrop', e, data);
31b7f2792   Kload   Upgrade to ownclo...
1628

6d9380f96   Cédric Dupont   Update sources OC...
1629
1630
1631
1632
  				var dropTarget = $(e.originalEvent.target);
  				// check if dropped inside this container and not another one
  				if (dropTarget.length && !self.$el.is(dropTarget) && !self.$el.has(dropTarget).length) {
  					return false;
03e52840d   Kload   Init
1633
  				}
31b7f2792   Kload   Upgrade to ownclo...
1634

6d9380f96   Cédric Dupont   Update sources OC...
1635
1636
  				// find the closest tr or crumb to use as target
  				dropTarget = dropTarget.closest('tr, .crumb');
31b7f2792   Kload   Upgrade to ownclo...
1637

6d9380f96   Cédric Dupont   Update sources OC...
1638
1639
1640
  				// if dropping on tr or crumb, drag&drop upload to folder
  				if (dropTarget && (dropTarget.data('type') === 'dir' ||
  					dropTarget.hasClass('crumb'))) {
31b7f2792   Kload   Upgrade to ownclo...
1641

6d9380f96   Cédric Dupont   Update sources OC...
1642
1643
  					// remember as context
  					data.context = dropTarget;
31b7f2792   Kload   Upgrade to ownclo...
1644

6d9380f96   Cédric Dupont   Update sources OC...
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
  					var dir = dropTarget.data('file');
  					// if from file list, need to prepend parent dir
  					if (dir) {
  						var parentDir = self.getCurrentDirectory();
  						if (parentDir[parentDir.length - 1] !== '/') {
  							parentDir += '/';
  						}
  						dir = parentDir + dir;
  					}
  					else{
  						// read full path from crumb
  						dir = dropTarget.data('dir') || '/';
  					}
03e52840d   Kload   Init
1658

6d9380f96   Cédric Dupont   Update sources OC...
1659
1660
  					// add target dir
  					data.targetDir = dir;
03e52840d   Kload   Init
1661
  				} else {
6d9380f96   Cédric Dupont   Update sources OC...
1662
1663
1664
  					// we are dropping somewhere inside the file list, which will
  					// upload the file to the current directory
  					data.targetDir = self.getCurrentDirectory();
31b7f2792   Kload   Upgrade to ownclo...
1665

6d9380f96   Cédric Dupont   Update sources OC...
1666
1667
1668
1669
1670
1671
1672
1673
1674
  					// cancel uploads to current dir if no permission
  					var isCreatable = (self.getDirectoryPermissions() & OC.PERMISSION_CREATE) !== 0;
  					if (!isCreatable) {
  						return false;
  					}
  				}
  			});
  			fileUploadStart.on('fileuploadadd', function(e, data) {
  				OC.Upload.log('filelist handle fileuploadadd', e, data);
31b7f2792   Kload   Upgrade to ownclo...
1675

6d9380f96   Cédric Dupont   Update sources OC...
1676
1677
1678
  				//finish delete if we are uploading a deleted file
  				if (self.deleteFiles && self.deleteFiles.indexOf(data.files[0].name)!==-1) {
  					self.finishDelete(null, true); //delete file before continuing
31b7f2792   Kload   Upgrade to ownclo...
1679
  				}
6d9380f96   Cédric Dupont   Update sources OC...
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
  				// add ui visualization to existing folder
  				if (data.context && data.context.data('type') === 'dir') {
  					// add to existing folder
  
  					// update upload counter ui
  					var uploadText = data.context.find('.uploadtext');
  					var currentUploads = parseInt(uploadText.attr('currentUploads'), 10);
  					currentUploads += 1;
  					uploadText.attr('currentUploads', currentUploads);
  
  					var translatedText = n('files', 'Uploading %n file', 'Uploading %n files', currentUploads);
  					if (currentUploads === 1) {
  						var img = OC.imagePath('core', 'loading.gif');
  						data.context.find('td.filename').attr('style','background-image:url('+img+')');
  						uploadText.text(translatedText);
  						uploadText.show();
  					} else {
  						uploadText.text(translatedText);
  					}
03e52840d   Kload   Init
1699
  				}
6d9380f96   Cédric Dupont   Update sources OC...
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
  
  			});
  			/*
  			 * when file upload done successfully add row to filelist
  			 * update counter when uploading to sub folder
  			 */
  			fileUploadStart.on('fileuploaddone', function(e, data) {
  				OC.Upload.log('filelist handle fileuploaddone', e, data);
  
  				var response;
  				if (typeof data.result === 'string') {
  					response = data.result;
  				} else {
  					// fetch response from iframe
  					response = data.result[0].body.innerText;
03e52840d   Kload   Init
1715
  				}
6d9380f96   Cédric Dupont   Update sources OC...
1716
1717
1718
1719
1720
  				var result=$.parseJSON(response);
  
  				if (typeof result[0] !== 'undefined' && result[0].status === 'success') {
  					var file = result[0];
  					var size = 0;
31b7f2792   Kload   Upgrade to ownclo...
1721

6d9380f96   Cédric Dupont   Update sources OC...
1722
  					if (data.context && data.context.data('type') === 'dir') {
31b7f2792   Kload   Upgrade to ownclo...
1723

6d9380f96   Cédric Dupont   Update sources OC...
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
  						// update upload counter ui
  						var uploadText = data.context.find('.uploadtext');
  						var currentUploads = parseInt(uploadText.attr('currentUploads'), 10);
  						currentUploads -= 1;
  						uploadText.attr('currentUploads', currentUploads);
  						var translatedText = n('files', 'Uploading %n file', 'Uploading %n files', currentUploads);
  						if (currentUploads === 0) {
  							var img = OC.imagePath('core', 'filetypes/folder');
  							data.context.find('td.filename').attr('style','background-image:url('+img+')');
  							uploadText.text(translatedText);
  							uploadText.hide();
  						} else {
  							uploadText.text(translatedText);
  						}
  
  						// update folder size
  						size = parseInt(data.context.data('size'), 10);
  						size += parseInt(file.size, 10);
  						data.context.attr('data-size', size);
  						data.context.find('td.filesize').text(humanFileSize(size));
  					} else {
  						// only append new file if uploaded into the current folder
  						if (file.directory !== self.getCurrentDirectory()) {
  							// Uploading folders actually uploads a list of files
  							// for which the target directory (file.directory) might lie deeper
  							// than the current directory
  
  							var fileDirectory = file.directory.replace('/','').replace(/\/$/, "");
  							var currentDirectory = self.getCurrentDirectory().replace('/','').replace(/\/$/, "") + '/';
  
  							if (currentDirectory !== '/') {
  								// abort if fileDirectory does not start with current one
  								if (fileDirectory.indexOf(currentDirectory) !== 0) {
  									return;
  								}
  
  								// remove the current directory part
  								fileDirectory = fileDirectory.substr(currentDirectory.length);
  							}
31b7f2792   Kload   Upgrade to ownclo...
1763

6d9380f96   Cédric Dupont   Update sources OC...
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
  							// only take the first section of the path
  							fileDirectory = fileDirectory.split('/');
  
  							var fd;
  							// if the first section exists / is a subdir
  							if (fileDirectory.length) {
  								fileDirectory = fileDirectory[0];
  
  								// See whether it is already in the list
  								fd = self.findFileEl(fileDirectory);
  								if (fd.length === 0) {
  									var dir = {
  										name: fileDirectory,
  										type: 'dir',
  										mimetype: 'httpd/unix-directory',
  										permissions: file.permissions,
  										size: 0,
  										id: file.parentId
  									};
  									fd = self.add(dir, {insert: true});
  								}
  
  								// update folder size
  								size = parseInt(fd.attr('data-size'), 10);
  								size += parseInt(file.size, 10);
  								fd.attr('data-size', size);
  								fd.find('td.filesize').text(OC.Util.humanFileSize(size));
  							}
  
  							return;
  						}
  
  						// add as stand-alone row to filelist
  						size = t('files', 'Pending');
  						if (data.files[0].size>=0) {
  							size=data.files[0].size;
  						}
  						//should the file exist in the list remove it
  						self.remove(file.name);
  
  						// create new file context
  						data.context = self.add(file, {animate: true});
  					}
31b7f2792   Kload   Upgrade to ownclo...
1807
  				}
6d9380f96   Cédric Dupont   Update sources OC...
1808
1809
1810
  			});
  			fileUploadStart.on('fileuploadstop', function(e, data) {
  				OC.Upload.log('filelist handle fileuploadstop', e, data);
03e52840d   Kload   Init
1811

6d9380f96   Cédric Dupont   Update sources OC...
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
  				//if user pressed cancel hide upload chrome
  				if (data.errorThrown === 'abort') {
  					//cleanup uploading to a dir
  					var uploadText = $('tr .uploadtext');
  					var img = OC.imagePath('core', 'filetypes/folder');
  					uploadText.parents('td.filename').attr('style','background-image:url('+img+')');
  					uploadText.fadeOut();
  					uploadText.attr('currentUploads', 0);
  				}
  				self.updateStorageStatistics();
  			});
  			fileUploadStart.on('fileuploadfail', function(e, data) {
  				OC.Upload.log('filelist handle fileuploadfail', e, data);
03e52840d   Kload   Init
1825

6d9380f96   Cédric Dupont   Update sources OC...
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
  				//if user pressed cancel hide upload chrome
  				if (data.errorThrown === 'abort') {
  					//cleanup uploading to a dir
  					var uploadText = $('tr .uploadtext');
  					var img = OC.imagePath('core', 'filetypes/folder');
  					uploadText.parents('td.filename').attr('style','background-image:url('+img+')');
  					uploadText.fadeOut();
  					uploadText.attr('currentUploads', 0);
  				}
  				self.updateStorageStatistics();
03e52840d   Kload   Init
1836
  			});
6d9380f96   Cédric Dupont   Update sources OC...
1837

03e52840d   Kload   Init
1838
  		}
6d9380f96   Cédric Dupont   Update sources OC...
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
  	};
  
  	/**
  	 * Sort comparators.
  	 */
  	FileList.Comparators = {
  		/**
  		 * Compares two file infos by name, making directories appear
  		 * first.
  		 *
  		 * @param fileInfo1 file info
  		 * @param fileInfo2 file info
  		 * @return -1 if the first file must appear before the second one,
  		 * 0 if they are identify, 1 otherwise.
  		 */
  		name: function(fileInfo1, fileInfo2) {
  			if (fileInfo1.type === 'dir' && fileInfo2.type !== 'dir') {
  				return -1;
  			}
  			if (fileInfo1.type !== 'dir' && fileInfo2.type === 'dir') {
  				return 1;
  			}
  			return fileInfo1.name.localeCompare(fileInfo2.name);
  		},
  		/**
  		 * Compares two file infos by size.
  		 *
  		 * @param fileInfo1 file info
  		 * @param fileInfo2 file info
  		 * @return -1 if the first file must appear before the second one,
  		 * 0 if they are identify, 1 otherwise.
  		 */
  		size: function(fileInfo1, fileInfo2) {
  			return fileInfo1.size - fileInfo2.size;
  		},
  		/**
  		 * Compares two file infos by timestamp.
  		 *
  		 * @param fileInfo1 file info
  		 * @param fileInfo2 file info
  		 * @return -1 if the first file must appear before the second one,
  		 * 0 if they are identify, 1 otherwise.
  		 */
  		mtime: function(fileInfo1, fileInfo2) {
  			return fileInfo1.mtime - fileInfo2.mtime;
03e52840d   Kload   Init
1884
  		}
6d9380f96   Cédric Dupont   Update sources OC...
1885
1886
1887
1888
1889
1890
1891
1892
  	};
  
  	OCA.Files.FileList = FileList;
  })();
  
  $(document).ready(function() {
  	// FIXME: unused ?
  	OCA.Files.FileList.useUndo = (window.onbeforeunload)?true:false;
31b7f2792   Kload   Upgrade to ownclo...
1893
  	$(window).bind('beforeunload', function () {
6d9380f96   Cédric Dupont   Update sources OC...
1894
1895
  		if (OCA.Files.FileList.lastAction) {
  			OCA.Files.FileList.lastAction();
03e52840d   Kload   Init
1896
1897
  		}
  	});
31b7f2792   Kload   Upgrade to ownclo...
1898
  	$(window).unload(function () {
03e52840d   Kload   Init
1899
1900
  		$(window).trigger('beforeunload');
  	});
31b7f2792   Kload   Upgrade to ownclo...
1901

03e52840d   Kload   Init
1902
  });