Blame view

sources/apps/files/js/fileactions.js 6.47 KB
03e52840d   Kload   Init
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
  var FileActions = {
  	actions: {},
  	defaults: {},
  	icons: {},
  	currentFile: null,
  	register: function (mime, name, permissions, icon, action) {
  		if (!FileActions.actions[mime]) {
  			FileActions.actions[mime] = {};
  		}
  		if (!FileActions.actions[mime][name]) {
  			FileActions.actions[mime][name] = {};
  		}
  		FileActions.actions[mime][name]['action'] = action;
  		FileActions.actions[mime][name]['permissions'] = permissions;
  		FileActions.icons[name] = icon;
  	},
  	setDefault: function (mime, name) {
  		FileActions.defaults[mime] = name;
  	},
  	get: function (mime, type, permissions) {
  		var actions = {};
  		if (FileActions.actions.all) {
  			actions = $.extend(actions, FileActions.actions.all);
  		}
  		if (type) {//type is 'dir' or 'file'
  			if (FileActions.actions[type]) {
  				actions = $.extend(actions, FileActions.actions[type]);
  			}
  		}
  		if (mime) {
  			var mimePart = mime.substr(0, mime.indexOf('/'));
  			if (FileActions.actions[mimePart]) {
  				actions = $.extend(actions, FileActions.actions[mimePart]);
  			}
  			if (FileActions.actions[mime]) {
  				actions = $.extend(actions, FileActions.actions[mime]);
  			}
  		}
  		var filteredActions = {};
  		$.each(actions, function (name, action) {
  			if (action.permissions & permissions) {
  				filteredActions[name] = action.action;
  			}
  		});
  		return filteredActions;
  	},
  	getDefault: function (mime, type, permissions) {
  		if (mime) {
  			var mimePart = mime.substr(0, mime.indexOf('/'));
  		}
  		var name = false;
  		if (mime && FileActions.defaults[mime]) {
  			name = FileActions.defaults[mime];
  		} else if (mime && FileActions.defaults[mimePart]) {
  			name = FileActions.defaults[mimePart];
  		} else if (type && FileActions.defaults[type]) {
  			name = FileActions.defaults[type];
  		} else {
  			name = FileActions.defaults.all;
  		}
  		var actions = this.get(mime, type, permissions);
  		return actions[name];
  	},
  	/**
  	 * Display file actions for the given element
  	 * @param parent "td" element of the file for which to display actions
  	 * @param triggerEvent if true, triggers the fileActionsReady on the file
  	 * list afterwards (false by default)
  	 */
  	display: function (parent, triggerEvent) {
  		FileActions.currentFile = parent;
  		var actions = FileActions.get(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions());
  		var file = FileActions.getCurrentFile();
a293d369c   Kload   Update sources to...
74
  		if (FileList.findFileEl(file).data('renaming')) {
03e52840d   Kload   Init
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
  			return;
  		}
  
  		// recreate fileactions
  		parent.children('a.name').find('.fileactions').remove();
  		parent.children('a.name').append('<span class="fileactions" />');
  		var defaultAction = FileActions.getDefault(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions());
  
  		var actionHandler = function (event) {
  			event.stopPropagation();
  			event.preventDefault();
  
  			FileActions.currentFile = event.data.elem;
  			var file = FileActions.getCurrentFile();
  
  			event.data.actionFunc(file);
  		};
  
  		var addAction = function (name, action) {
  			// NOTE: Temporary fix to prevent rename action in root of Shared directory
  			if (name === 'Rename' && $('#dir').val() === '/Shared') {
  				return true;
  			}
  
  			if ((name === 'Download' || action !== defaultAction) && name !== 'Delete') {
  				var img = FileActions.icons[name];
  				if (img.call) {
  					img = img(file);
  				}
  				var html = '<a href="#" class="action" data-action="' + name + '">';
  				if (img) {
a293d369c   Kload   Update sources to...
106
  					html += '<img class ="svg" src="' + img + '" />';
03e52840d   Kload   Init
107
  				}
a293d369c   Kload   Update sources to...
108
  				html += '<span> ' + t('files', name) + '</span></a>';
03e52840d   Kload   Init
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
  
  				var element = $(html);
  				element.data('action', name);
  				//alert(element);
  				element.on('click', {a: null, elem: parent, actionFunc: actions[name]}, actionHandler);
  				parent.find('a.name>span.fileactions').append(element);
  			}
  
  		};
  
  		$.each(actions, function (name, action) {
  			if (name !== 'Share') {
  				addAction(name, action);
  			}
  		});
  		if(actions.Share && !($('#dir').val() === '/' && file === 'Shared')){
  			// t('files', 'Share')
  			addAction('Share', actions.Share);
  		}
  
  		// remove the existing delete action
  		parent.parent().children().last().find('.action.delete').remove();
  		if (actions['Delete']) {
  			var img = FileActions.icons['Delete'];
  			if (img.call) {
  				img = img(file);
  			}
  			if (typeof trashBinApp !== 'undefined' && trashBinApp) {
31b7f2792   Kload   Upgrade to ownclo...
137
  				var html = '<a href="#" original-title="' + t('files', 'Delete permanently') + '" class="action delete delete-icon" />';
03e52840d   Kload   Init
138
  			} else {
31b7f2792   Kload   Upgrade to ownclo...
139
  				var html = '<a href="#" class="action delete delete-icon" />';
03e52840d   Kload   Init
140
141
  			}
  			var element = $(html);
03e52840d   Kload   Init
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
  			element.data('action', actions['Delete']);
  			element.on('click', {a: null, elem: parent, actionFunc: actions['Delete']}, actionHandler);
  			parent.parent().children().last().append(element);
  		}
  
  		if (triggerEvent){
  			$('#fileList').trigger(jQuery.Event("fileActionsReady"));
  		}
  	},
  	getCurrentFile: function () {
  		return FileActions.currentFile.parent().attr('data-file');
  	},
  	getCurrentMimeType: function () {
  		return FileActions.currentFile.parent().attr('data-mime');
  	},
  	getCurrentType: function () {
  		return FileActions.currentFile.parent().attr('data-type');
  	},
  	getCurrentPermissions: function () {
  		return FileActions.currentFile.parent().data('permissions');
  	}
  };
  
  $(document).ready(function () {
  	if ($('#allowZipDownload').val() == 1) {
  		var downloadScope = 'all';
  	} else {
  		var downloadScope = 'file';
  	}
  
  	if (typeof disableDownloadActions == 'undefined' || !disableDownloadActions) {
  		FileActions.register(downloadScope, 'Download', OC.PERMISSION_READ, function () {
  			return OC.imagePath('core', 'actions/download');
  		}, function (filename) {
  			window.location = OC.filePath('files', 'ajax', 'download.php') + '?files=' + encodeURIComponent(filename) + '&dir=' + encodeURIComponent($('#dir').val());
  		});
  	}
  	$('#fileList tr').each(function () {
  		FileActions.display($(this).children('td.filename'));
  	});
  	
  	$('#fileList').trigger(jQuery.Event("fileActionsReady"));
  
  });
  
  FileActions.register('all', 'Delete', OC.PERMISSION_DELETE, function () {
  	return OC.imagePath('core', 'actions/delete');
  }, function (filename) {
31b7f2792   Kload   Upgrade to ownclo...
190
  	FileList.do_delete(filename);
03e52840d   Kload   Init
191
192
193
194
195
196
197
198
199
  	$('.tipsy').remove();
  });
  
  // t('files', 'Rename')
  FileActions.register('all', 'Rename', OC.PERMISSION_UPDATE, function () {
  	return OC.imagePath('core', 'actions/rename');
  }, function (filename) {
  	FileList.rename(filename);
  });
03e52840d   Kload   Init
200
  FileActions.register('dir', 'Open', OC.PERMISSION_READ, '', function (filename) {
31b7f2792   Kload   Upgrade to ownclo...
201
202
203
204
205
  	var dir = $('#dir').val() || '/';
  	if (dir !== '/') {
  		dir = dir + '/';
  	}
  	FileList.changeDirectory(dir + filename);
03e52840d   Kload   Init
206
207
208
  });
  
  FileActions.setDefault('dir', 'Open');