Blame view

sources/core/js/share.js 40.4 KB
6d9380f96   Cédric Dupont   Update sources OC...
1
2
3
4
5
  /* global escapeHTML */
  
  /**
   * @namespace
   */
03e52840d   Kload   Init
6
7
8
9
10
  OC.Share={
  	SHARE_TYPE_USER:0,
  	SHARE_TYPE_GROUP:1,
  	SHARE_TYPE_LINK:3,
  	SHARE_TYPE_EMAIL:4,
6d9380f96   Cédric Dupont   Update sources OC...
11
12
13
14
15
16
17
18
19
20
21
  
  	/**
  	 * Regular expression for splitting parts of remote share owners:
  	 * "user@example.com/path/to/owncloud"
  	 * "user@anotherexample.com@example.com/path/to/owncloud
  	 */
  	_REMOTE_OWNER_REGEXP: new RegExp("^([^@]*)@(([^@]*)@)?([^/]*)(.*)?$"),
  
  	/**
  	 * @deprecated use OC.Share.currentShares instead
  	 */
03e52840d   Kload   Init
22
  	itemShares:[],
6d9380f96   Cédric Dupont   Update sources OC...
23
24
25
  	/**
  	 * Full list of all share statuses
  	 */
03e52840d   Kload   Init
26
  	statuses:{},
6d9380f96   Cédric Dupont   Update sources OC...
27
28
29
30
31
32
33
34
35
36
37
  	/**
  	 * Shares for the currently selected file.
  	 * (for which the dropdown is open)
  	 *
  	 * Key is item type and value is an array or
  	 * shares of the given item type.
  	 */
  	currentShares: {},
  	/**
  	 * Whether the share dropdown is opened.
  	 */
03e52840d   Kload   Init
38
39
  	droppedDown:false,
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
40
41
42
43
44
45
46
47
48
49
  	 * Loads ALL share statuses from server, stores them in
  	 * OC.Share.statuses then calls OC.Share.updateIcons() to update the
  	 * files "Share" icon to "Shared" according to their share status and
  	 * share type.
  	 *
  	 * If a callback is specified, the update step is skipped.
  	 *
  	 * @param itemType item type
  	 * @param fileList file list instance, defaults to OCA.Files.App.fileList
  	 * @param callback function to call after the shares were loaded
03e52840d   Kload   Init
50
  	 */
6d9380f96   Cédric Dupont   Update sources OC...
51
  	loadIcons:function(itemType, fileList, callback) {
03e52840d   Kload   Init
52
  		// Load all share icons
6d9380f96   Cédric Dupont   Update sources OC...
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  		$.get(
  			OC.filePath('core', 'ajax', 'share.php'),
  			{
  				fetch: 'getItemsSharedStatuses',
  				itemType: itemType
  			}, function(result) {
  				if (result && result.status === 'success') {
  					OC.Share.statuses = {};
  					$.each(result.data, function(item, data) {
  						OC.Share.statuses[item] = data;
  					});
  					if (_.isFunction(callback)) {
  						callback(OC.Share.statuses);
  					} else {
  						OC.Share.updateIcons(itemType, fileList);
  					}
  				}
03e52840d   Kload   Init
70
  			}
6d9380f96   Cédric Dupont   Update sources OC...
71
  		);
03e52840d   Kload   Init
72
73
74
75
76
  	},
  	/**
  	 * Updates the files' "Share" icons according to the known
  	 * sharing states stored in OC.Share.statuses.
  	 * (not reloaded from server)
6d9380f96   Cédric Dupont   Update sources OC...
77
78
79
80
  	 *
  	 * @param itemType item type
  	 * @param fileList file list instance
  	 * defaults to OCA.Files.App.fileList
03e52840d   Kload   Init
81
  	 */
6d9380f96   Cédric Dupont   Update sources OC...
82
  	updateIcons:function(itemType, fileList){
03e52840d   Kload   Init
83
  		var item;
6d9380f96   Cédric Dupont   Update sources OC...
84
85
86
87
88
89
90
91
92
93
94
  		var $fileList;
  		var currentDir;
  		if (!fileList && OCA.Files) {
  			fileList = OCA.Files.App.fileList;
  		}
  		// fileList is usually only defined in the files app
  		if (fileList) {
  			$fileList = fileList.$fileList;
  			currentDir = fileList.getCurrentDirectory();
  		}
  		// TODO: iterating over the files might be more efficient
03e52840d   Kload   Init
95
  		for (item in OC.Share.statuses){
6d9380f96   Cédric Dupont   Update sources OC...
96
  			var image = OC.imagePath('core', 'actions/share');
03e52840d   Kload   Init
97
  			var data = OC.Share.statuses[item];
6d9380f96   Cédric Dupont   Update sources OC...
98
  			var hasLink = data.link;
03e52840d   Kload   Init
99
100
  			// Links override shared in terms of icon display
  			if (hasLink) {
6d9380f96   Cédric Dupont   Update sources OC...
101
  				image = OC.imagePath('core', 'actions/public');
03e52840d   Kload   Init
102
  			}
6d9380f96   Cédric Dupont   Update sources OC...
103
  			if (itemType !== 'file' && itemType !== 'folder') {
03e52840d   Kload   Init
104
105
  				$('a.share[data-item="'+item+'"]').css('background', 'url('+image+') no-repeat center');
  			} else {
6d9380f96   Cédric Dupont   Update sources OC...
106
107
108
109
  				// TODO: ultimately this part should be moved to files_sharing app
  				var file = $fileList.find('tr[data-id="'+item+'"]');
  				var shareFolder = OC.imagePath('core', 'filetypes/folder-shared');
  				var img;
03e52840d   Kload   Init
110
  				if (file.length > 0) {
6d9380f96   Cédric Dupont   Update sources OC...
111
  					this.markFileAsShared(file, true, hasLink);
03e52840d   Kload   Init
112
  				} else {
6d9380f96   Cédric Dupont   Update sources OC...
113
  					var dir = currentDir;
03e52840d   Kload   Init
114
115
116
117
118
  					if (dir.length > 1) {
  						var last = '';
  						var path = dir;
  						// Search for possible parent folders that are shared
  						while (path != last) {
6d9380f96   Cédric Dupont   Update sources OC...
119
120
121
122
123
124
125
126
  							if (path === data.path && !data.link) {
  								var actions = $fileList.find('.fileactions .action[data-action="Share"]');
  								var files = $fileList.find('.filename');
  								var i;
  								for (i = 0; i < actions.length; i++) {
  									// TODO: use this.markFileAsShared()
  									img = $(actions[i]).find('img');
  									if (img.attr('src') !== OC.imagePath('core', 'actions/public')) {
03e52840d   Kload   Init
127
  										img.attr('src', image);
6d9380f96   Cédric Dupont   Update sources OC...
128
129
130
131
132
133
134
  										$(actions[i]).addClass('permanent');
  										$(actions[i]).html(' <span>'+t('core', 'Shared')+'</span>').prepend(img);
  									}
  								}
  								for(i = 0; i < files.length; i++) {
  									if ($(files[i]).closest('tr').data('type') === 'dir') {
  										$(files[i]).css('background-image', 'url('+shareFolder+')');
03e52840d   Kload   Init
135
  									}
6d9380f96   Cédric Dupont   Update sources OC...
136
  								}
03e52840d   Kload   Init
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
  							}
  							last = path;
  							path = OC.Share.dirname(path);
  						}
  					}
  				}
  			}
  		}
  	},
  	updateIcon:function(itemType, itemSource) {
  		var shares = false;
  		var link = false;
  		var image = OC.imagePath('core', 'actions/share');
  		$.each(OC.Share.itemShares, function(index) {
  			if (OC.Share.itemShares[index]) {
  				if (index == OC.Share.SHARE_TYPE_LINK) {
  					if (OC.Share.itemShares[index] == true) {
  						shares = true;
  						image = OC.imagePath('core', 'actions/public');
  						link = true;
  						return;
  					}
  				} else if (OC.Share.itemShares[index].length > 0) {
  					shares = true;
6d9380f96   Cédric Dupont   Update sources OC...
161
  					image = OC.imagePath('core', 'actions/share');
03e52840d   Kload   Init
162
163
164
165
166
167
  				}
  			}
  		});
  		if (itemType != 'file' && itemType != 'folder') {
  			$('a.share[data-item="'+itemSource+'"]').css('background', 'url('+image+') no-repeat center');
  		} else {
6d9380f96   Cédric Dupont   Update sources OC...
168
169
170
171
172
173
174
  			var $tr = $('tr').filterAttr('data-id', String(itemSource));
  			if ($tr.length > 0) {
  				// it might happen that multiple lists exist in the DOM
  				// with the same id
  				$tr.each(function() {
  					OC.Share.markFileAsShared($(this), shares, link);
  				});
03e52840d   Kload   Init
175
176
177
178
179
180
181
182
183
  			}
  		}
  		if (shares) {
  			OC.Share.statuses[itemSource] = OC.Share.statuses[itemSource] || {};
  			OC.Share.statuses[itemSource]['link'] = link;
  		} else {
  			delete OC.Share.statuses[itemSource];
  		}
  	},
6d9380f96   Cédric Dupont   Update sources OC...
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
  	/**
  	 * Format remote share owner to make it more readable
  	 *
  	 * @param {String} owner full remote share owner name
  	 * @return {String} HTML code for the owner display
  	 */
  	_formatSharedByOwner: function(owner) {
  		var parts = this._REMOTE_OWNER_REGEXP.exec(owner);
  		if (!parts) {
  			// display as is, most likely to be a simple owner name
  			return escapeHTML(owner);
  		}
  
  		var userName = parts[1];
  		var userDomain = parts[3];
  		var server = parts[4];
  		var tooltip = userName;
  		if (userDomain) {
  			tooltip += '@' + userDomain;
  		}
  		if (server) {
  			tooltip += '@' + server;
  		}
  
  		var html = '<span class="remoteOwner" title="' + escapeHTML(tooltip) + '">';
  		html += '<span class="username">' + escapeHTML(userName) + '</span>';
  		if (userDomain) {
  			html += '<span class="userDomain">@' + escapeHTML(userDomain) + '</span>';
  		}
  		html += '</span>';
  		return html;
  	},
  	/**
  	 * Marks/unmarks a given file as shared by changing its action icon
  	 * and folder icon.
  	 *
  	 * @param $tr file element to mark as shared
  	 * @param hasShares whether shares are available
  	 * @param hasLink whether link share is available
  	 */
  	markFileAsShared: function($tr, hasShares, hasLink) {
  		var action = $tr.find('.fileactions .action[data-action="Share"]');
  		var type = $tr.data('type');
  		var img = action.find('img');
  		var message;
  		var recipients;
  		var owner = $tr.attr('data-share-owner');
  		var shareFolderIcon;
  		var image = OC.imagePath('core', 'actions/share');
  		// update folder icon
  		if (type === 'dir' && (hasShares || hasLink)) {
  			if (hasLink) {
  				shareFolderIcon = OC.imagePath('core', 'filetypes/folder-public');
  			}
  			else {
  				shareFolderIcon = OC.imagePath('core', 'filetypes/folder-shared');
  			}
  			$tr.children('.filename').css('background-image', 'url(' + shareFolderIcon + ')');
  		} else if (type === 'dir') {
  			shareFolderIcon = OC.imagePath('core', 'filetypes/folder');
  			$tr.children('.filename').css('background-image', 'url(' + shareFolderIcon + ')');
  		}
  		// update share action text / icon
  		if (hasShares || owner) {
  			recipients = $tr.attr('data-share-recipients');
  
  			action.addClass('permanent');
  			message = t('core', 'Shared');
  			// even if reshared, only show "Shared by"
  			if (owner) {
  				message = this._formatSharedByOwner(owner);
  			}
  			else if (recipients) {
  				message = t('core', 'Shared with {recipients}', {recipients: escapeHTML(recipients)});
  			}
  			action.html(' <span>' + message + '</span>').prepend(img);
  			if (owner) {
  				action.find('.remoteOwner').tipsy({gravity: 's'});
  			}
  		}
  		else {
  			action.removeClass('permanent');
  			action.html(' <span>'+ escapeHTML(t('core', 'Share'))+'</span>').prepend(img);
  		}
  		if (hasLink) {
  			image = OC.imagePath('core', 'actions/public');
  		}
  		img.attr('src', image);
  	},
03e52840d   Kload   Init
273
274
275
276
277
  	loadItem:function(itemType, itemSource) {
  		var data = '';
  		var checkReshare = true;
  		if (typeof OC.Share.statuses[itemSource] === 'undefined') {
  			// NOTE: Check does not always work and misses some shares, fix later
31b7f2792   Kload   Upgrade to ownclo...
278
  			var checkShares = true;
03e52840d   Kload   Init
279
  		} else {
31b7f2792   Kload   Upgrade to ownclo...
280
  			var checkShares = true;
03e52840d   Kload   Init
281
282
283
284
285
286
287
288
  		}
  		$.ajax({type: 'GET', url: OC.filePath('core', 'ajax', 'share.php'), data: { fetch: 'getItem', itemType: itemType, itemSource: itemSource, checkReshare: checkReshare, checkShares: checkShares }, async: false, success: function(result) {
  			if (result && result.status === 'success') {
  				data = result.data;
  			} else {
  				data = false;
  			}
  		}});
31b7f2792   Kload   Upgrade to ownclo...
289

03e52840d   Kload   Init
290
291
  		return data;
  	},
6d9380f96   Cédric Dupont   Update sources OC...
292
293
294
295
296
297
298
299
300
301
302
303
304
305
  	share:function(itemType, itemSource, shareType, shareWith, permissions, itemSourceName, expirationDate, callback) {
  		// Add a fallback for old share() calls without expirationDate.
  		// We should remove this in a later version,
  		// after the Apps have been updated.
  		if (typeof callback === 'undefined' &&
  			typeof expirationDate === 'function') {
  			callback = expirationDate;
  			expirationDate = '';
  			console.warn(
  				"Call to 'OC.Share.share()' with too few arguments. " +
  				"'expirationDate' was assumed to be 'callback'. " +
  				"Please revisit the call and fix the list of arguments."
  			);
  		}
31b7f2792   Kload   Upgrade to ownclo...
306
307
308
309
310
311
312
313
  		$.post(OC.filePath('core', 'ajax', 'share.php'),
  			{
  				action: 'share',
  				itemType: itemType,
  				itemSource: itemSource,
  				shareType: shareType,
  				shareWith: shareWith,
  				permissions: permissions,
6d9380f96   Cédric Dupont   Update sources OC...
314
315
  				itemSourceName: itemSourceName,
  				expirationDate: expirationDate
31b7f2792   Kload   Upgrade to ownclo...
316
  			}, function (result) {
6d9380f96   Cédric Dupont   Update sources OC...
317
318
319
320
  				if (result && result.status === 'success') {
  					if (callback) {
  						callback(result.data);
  					}
03e52840d   Kload   Init
321
  				} else {
6d9380f96   Cédric Dupont   Update sources OC...
322
323
324
325
326
327
  					if (result.data && result.data.message) {
  						var msg = result.data.message;
  					} else {
  						var msg = t('core', 'Error');
  					}
  					OC.dialogs.alert(msg, t('core', 'Error while sharing'));
03e52840d   Kload   Init
328
  				}
03e52840d   Kload   Init
329
  			}
6d9380f96   Cédric Dupont   Update sources OC...
330
  		);
03e52840d   Kload   Init
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
  	},
  	unshare:function(itemType, itemSource, shareType, shareWith, callback) {
  		$.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'unshare', itemType: itemType, itemSource: itemSource, shareType: shareType, shareWith: shareWith }, function(result) {
  			if (result && result.status === 'success') {
  				if (callback) {
  					callback();
  				}
  			} else {
  				OC.dialogs.alert(t('core', 'Error while unsharing'), t('core', 'Error'));
  			}
  		});
  	},
  	setPermissions:function(itemType, itemSource, shareType, shareWith, permissions) {
  		$.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setPermissions', itemType: itemType, itemSource: itemSource, shareType: shareType, shareWith: shareWith, permissions: permissions }, function(result) {
  			if (!result || result.status !== 'success') {
  				OC.dialogs.alert(t('core', 'Error while changing permissions'), t('core', 'Error'));
  			}
  		});
  	},
31b7f2792   Kload   Upgrade to ownclo...
350
  	showDropDown:function(itemType, itemSource, appendTo, link, possiblePermissions, filename) {
03e52840d   Kload   Init
351
  		var data = OC.Share.loadItem(itemType, itemSource);
a293d369c   Kload   Update sources to...
352
353
  		var dropDownEl;
  		var html = '<div id="dropdown" class="drop" data-item-type="'+itemType+'" data-item-source="'+itemSource+'">';
03e52840d   Kload   Init
354
355
356
357
358
359
360
361
  		if (data !== false && data.reshare !== false && data.reshare.uid_owner !== undefined) {
  			if (data.reshare.share_type == OC.Share.SHARE_TYPE_GROUP) {
  				html += '<span class="reshare">'+t('core', 'Shared with you and the group {group} by {owner}', {group: escapeHTML(data.reshare.share_with), owner: escapeHTML(data.reshare.displayname_owner)})+'</span>';
  			} else {
  				html += '<span class="reshare">'+t('core', 'Shared with you by {owner}', {owner: escapeHTML(data.reshare.displayname_owner)})+'</span>';
  			}
  			html += '<br />';
  		}
31b7f2792   Kload   Upgrade to ownclo...
362

03e52840d   Kload   Init
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
  		if (possiblePermissions & OC.PERMISSION_SHARE) {
  			// Determine the Allow Public Upload status.
  			// Used later on to determine if the
  			// respective checkbox should be checked or
  			// not.
  
  			var publicUploadEnabled = $('#filestable').data('allow-public-upload');
  			if (typeof publicUploadEnabled == 'undefined') {
  				publicUploadEnabled = 'no';
  			}
  			var allowPublicUploadStatus = false;
  
  			$.each(data.shares, function(key, value) {
  				if (value.share_type === OC.Share.SHARE_TYPE_LINK) {
  					allowPublicUploadStatus = (value.permissions & OC.PERMISSION_CREATE) ? true : false;
  					return true;
  				}
  			});
31b7f2792   Kload   Upgrade to ownclo...
381
  			html += '<input id="shareWith" type="text" placeholder="'+t('core', 'Share with user or group …')+'" />';
03e52840d   Kload   Init
382
383
  			html += '<ul id="shareWithList">';
  			html += '</ul>';
31b7f2792   Kload   Upgrade to ownclo...
384
385
  			var linksAllowed = $('#allowShareWithLink').val() === 'yes';
  			if (link && linksAllowed) {
03e52840d   Kload   Init
386
  				html += '<div id="link">';
31b7f2792   Kload   Upgrade to ownclo...
387
  				html += '<input type="checkbox" name="linkCheckbox" id="linkCheckbox" value="1" /><label for="linkCheckbox">'+t('core', 'Share link')+'</label>';
03e52840d   Kload   Init
388
  				html += '<br />';
6d9380f96   Cédric Dupont   Update sources OC...
389
390
391
392
393
  
  				var defaultExpireMessage = '';
  				if ((itemType === 'folder' || itemType === 'file') && oc_appconfig.core.defaultExpireDateEnforced) {
  					defaultExpireMessage = t('core', 'The public link will expire no later than {days} days after it is created',  {'days': escapeHTML(oc_appconfig.core.defaultExpireDate)}) + '<br/>';
  				}
03e52840d   Kload   Init
394
395
396
  				html += '<input id="linkText" type="text" readonly="readonly" />';
  				html += '<input type="checkbox" name="showPassword" id="showPassword" value="1" style="display:none;" /><label for="showPassword" style="display:none;">'+t('core', 'Password protect')+'</label>';
  				html += '<div id="linkPass">';
6d9380f96   Cédric Dupont   Update sources OC...
397
  				html += '<input id="linkPassText" type="password" placeholder="'+t('core', 'Choose a password for the public link')+'" />';
03e52840d   Kload   Init
398
  				html += '</div>';
6d9380f96   Cédric Dupont   Update sources OC...
399

03e52840d   Kload   Init
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
  				if (itemType === 'folder' && (possiblePermissions & OC.PERMISSION_CREATE) && publicUploadEnabled === 'yes') {
  					html += '<div id="allowPublicUploadWrapper" style="display:none;">';
  					html += '<input type="checkbox" value="1" name="allowPublicUpload" id="sharingDialogAllowPublicUpload"' + ((allowPublicUploadStatus) ? 'checked="checked"' : '') + ' />';
  					html += '<label for="sharingDialogAllowPublicUpload">' + t('core', 'Allow Public Upload') + '</label>';
  					html += '</div>';
  				}
  				html += '</div><form id="emailPrivateLink" >';
  				html += '<input id="email" style="display:none; width:62%;" value="" placeholder="'+t('core', 'Email link to person')+'" type="text" />';
  				html += '<input id="emailButton" style="display:none;" type="submit" value="'+t('core', 'Send')+'" />';
  				html += '</form>';
  			}
  
  			html += '<div id="expiration">';
  			html += '<input type="checkbox" name="expirationCheckbox" id="expirationCheckbox" value="1" /><label for="expirationCheckbox">'+t('core', 'Set expiration date')+'</label>';
  			html += '<input id="expirationDate" type="text" placeholder="'+t('core', 'Expiration date')+'" style="display:none; width:90%;" />';
6d9380f96   Cédric Dupont   Update sources OC...
415
  			html += '<em id="defaultExpireMessage">'+defaultExpireMessage+'</em>';
03e52840d   Kload   Init
416
  			html += '</div>';
a293d369c   Kload   Update sources to...
417
418
  			dropDownEl = $(html);
  			dropDownEl = dropDownEl.appendTo(appendTo);
03e52840d   Kload   Init
419
420
  			// Reset item shares
  			OC.Share.itemShares = [];
6d9380f96   Cédric Dupont   Update sources OC...
421
  			OC.Share.currentShares = {};
03e52840d   Kload   Init
422
423
424
  			if (data.shares) {
  				$.each(data.shares, function(index, share) {
  					if (share.share_type == OC.Share.SHARE_TYPE_LINK) {
6d9380f96   Cédric Dupont   Update sources OC...
425
  						if (itemSource === share.file_source || itemSource === share.item_source) {
03e52840d   Kload   Init
426
427
428
429
  							OC.Share.showLink(share.token, share.share_with, itemSource);
  						}
  					} else {
  						if (share.collection) {
31b7f2792   Kload   Upgrade to ownclo...
430
  							OC.Share.addShareWith(share.share_type, share.share_with, share.share_with_displayname, share.permissions, possiblePermissions, share.mail_send, share.collection);
03e52840d   Kload   Init
431
  						} else {
31b7f2792   Kload   Upgrade to ownclo...
432
  							OC.Share.addShareWith(share.share_type, share.share_with, share.share_with_displayname, share.permissions, possiblePermissions, share.mail_send, false);
03e52840d   Kload   Init
433
434
435
  						}
  					}
  					if (share.expiration != null) {
6d9380f96   Cédric Dupont   Update sources OC...
436
  						OC.Share.showExpirationDate(share.expiration, share.stime);
03e52840d   Kload   Init
437
438
439
440
  					}
  				});
  			}
  			$('#shareWith').autocomplete({minLength: 1, source: function(search, response) {
31b7f2792   Kload   Upgrade to ownclo...
441
442
443
  	//			if (cache[search.term]) {
  	//				response(cache[search.term]);
  	//			} else {
03e52840d   Kload   Init
444
445
446
447
448
449
  					$.get(OC.filePath('core', 'ajax', 'share.php'), { fetch: 'getShareWith', search: search.term, itemShares: OC.Share.itemShares }, function(result) {
  						if (result.status == 'success' && result.data.length > 0) {
  							$( "#shareWith" ).autocomplete( "option", "autoFocus", true );
  							response(result.data);
  						} else {
  							// Suggest sharing via email if valid email address
31b7f2792   Kload   Upgrade to ownclo...
450
451
452
453
  //							var pattern = new RegExp(/^[+a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/i);
  //							if (pattern.test(search.term)) {
  //								response([{label: t('core', 'Share via email:')+' '+search.term, value: {shareType: OC.Share.SHARE_TYPE_EMAIL, shareWith: search.term}}]);
  //							} else {
03e52840d   Kload   Init
454
455
  								$( "#shareWith" ).autocomplete( "option", "autoFocus", false );
  								response([t('core', 'No people found')]);
31b7f2792   Kload   Upgrade to ownclo...
456
  //							}
03e52840d   Kload   Init
457
458
  						}
  					});
31b7f2792   Kload   Upgrade to ownclo...
459
  	//			}
03e52840d   Kload   Init
460
461
462
463
464
465
466
467
  			},
  			focus: function(event, focused) {
  				event.preventDefault();
  			},
  			select: function(event, selected) {
  				event.stopPropagation();
  				var itemType = $('#dropdown').data('item-type');
  				var itemSource = $('#dropdown').data('item-source');
31b7f2792   Kload   Upgrade to ownclo...
468
  				var itemSourceName = $('#dropdown').data('item-source-name');
6d9380f96   Cédric Dupont   Update sources OC...
469
470
471
472
  				var expirationDate = '';
  				if ( $('#expirationCheckbox').is(':checked') === true ) {
  					expirationDate = $( "#expirationDate" ).val();
  				}
03e52840d   Kload   Init
473
474
475
  				var shareType = selected.item.value.shareType;
  				var shareWith = selected.item.value.shareWith;
  				$(this).val(shareWith);
31b7f2792   Kload   Upgrade to ownclo...
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
  				// Default permissions are Edit (CRUD) and Share
  				// Check if these permissions are possible
  				var permissions = OC.PERMISSION_READ;
  				if (possiblePermissions & OC.PERMISSION_UPDATE) {
  					permissions = permissions | OC.PERMISSION_UPDATE;
  				}
  				if (possiblePermissions & OC.PERMISSION_CREATE) {
  					permissions = permissions | OC.PERMISSION_CREATE;
  				}
  				if (possiblePermissions & OC.PERMISSION_DELETE) {
  					permissions = permissions | OC.PERMISSION_DELETE;
  				}
  				if (possiblePermissions & OC.PERMISSION_SHARE) {
  					permissions = permissions | OC.PERMISSION_SHARE;
  				}
6d9380f96   Cédric Dupont   Update sources OC...
491
  				OC.Share.share(itemType, itemSource, shareType, shareWith, permissions, itemSourceName, expirationDate, function() {
03e52840d   Kload   Init
492
493
  					OC.Share.addShareWith(shareType, shareWith, selected.item.label, permissions, possiblePermissions);
  					$('#shareWith').val('');
6d9380f96   Cédric Dupont   Update sources OC...
494
  					$('#dropdown').trigger(new $.Event('sharesChanged', {shares: OC.Share.currentShares}));
03e52840d   Kload   Init
495
496
497
498
  					OC.Share.updateIcon(itemType, itemSource);
  				});
  				return false;
  			}
31b7f2792   Kload   Upgrade to ownclo...
499
500
501
502
503
504
505
506
507
508
509
510
511
512
  			})
  			// customize internal _renderItem function to display groups and users differently
  			.data("ui-autocomplete")._renderItem = function( ul, item ) {
  				var insert = $( "<a>" );
  				var text = (item.value.shareType == 1)? item.label + ' ('+t('core', 'group')+')' : item.label;
  				insert.text( text );
  				if(item.value.shareType == 1) {
  					insert = insert.wrapInner('<strong></strong>');
  				}
  				return $( "<li>" )
  					.addClass((item.value.shareType == 1)?'group':'user')
  					.append( insert )
  					.appendTo( ul );
  			};
6d9380f96   Cédric Dupont   Update sources OC...
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
  			if (link) {
  				$('#email').autocomplete({
  					minLength: 1,
  					source: function (search, response) {
  						$.get(OC.filePath('core', 'ajax', 'share.php'), { fetch: 'getShareWithEmail', search: search.term }, function(result) {
  							if (result.status == 'success' && result.data.length > 0) {
  								response(result.data);
  							}
  						});
  						},
  					select: function( event, item ) {
  						$('#email').val(item.item.email);
  						return false;
  					}
  				})
  				.data("ui-autocomplete")._renderItem = function( ul, item ) {
  					return $('<li>')
  						.append('<a>' + escapeHTML(item.displayname) + "<br>" + escapeHTML(item.email) + '</a>' )
  						.appendTo( ul );
  				};
  			}
03e52840d   Kload   Init
534
535
536
  		} else {
  			html += '<input id="shareWith" type="text" placeholder="'+t('core', 'Resharing is not allowed')+'" style="width:90%;" disabled="disabled"/>';
  			html += '</div>';
a293d369c   Kload   Update sources to...
537
538
  			dropDownEl = $(html);
  			dropDownEl.appendTo(appendTo);
03e52840d   Kload   Init
539
  		}
a293d369c   Kload   Update sources to...
540
  		dropDownEl.attr('data-item-source-name', filename);
03e52840d   Kload   Init
541
542
543
  		$('#dropdown').show('blind', function() {
  			OC.Share.droppedDown = true;
  		});
31b7f2792   Kload   Upgrade to ownclo...
544
545
546
  		if ($('html').hasClass('lte9')){
  			$('#dropdown input[placeholder]').placeholder();
  		}
03e52840d   Kload   Init
547
548
549
  		$('#shareWith').focus();
  	},
  	hideDropDown:function(callback) {
6d9380f96   Cédric Dupont   Update sources OC...
550
  		OC.Share.currentShares = null;
03e52840d   Kload   Init
551
552
553
554
555
556
557
558
559
560
561
  		$('#dropdown').hide('blind', function() {
  			OC.Share.droppedDown = false;
  			$('#dropdown').remove();
  			if (typeof FileActions !== 'undefined') {
  				$('tr').removeClass('mouseOver');
  			}
  			if (callback) {
  				callback.call();
  			}
  		});
  	},
31b7f2792   Kload   Upgrade to ownclo...
562
  	addShareWith:function(shareType, shareWith, shareWithDisplayName, permissions, possiblePermissions, mailSend, collection) {
6d9380f96   Cédric Dupont   Update sources OC...
563
564
565
566
567
568
  		var shareItem = {
  			share_type: shareType,
  			share_with: shareWith,
  			share_with_displayname: shareWithDisplayName,
  			permissions: permissions
  		};
31b7f2792   Kload   Upgrade to ownclo...
569
570
571
  		if (shareType === 1) {
  			shareWithDisplayName = shareWithDisplayName + " (" + t('core', 'group') + ')';
  		}
03e52840d   Kload   Init
572
573
574
575
576
577
578
579
580
581
582
583
584
585
  		if (!OC.Share.itemShares[shareType]) {
  			OC.Share.itemShares[shareType] = [];
  		}
  		OC.Share.itemShares[shareType].push(shareWith);
  		if (collection) {
  			if (collection.item_type == 'file' || collection.item_type == 'folder') {
  				var item = collection.path;
  			} else {
  				var item = collection.item_source;
  			}
  			var collectionList = $('#shareWithList li').filterAttr('data-collection', item);
  			if (collectionList.length > 0) {
  				$(collectionList).append(', '+shareWithDisplayName);
  			} else {
6d9380f96   Cédric Dupont   Update sources OC...
586
  				var html = '<li style="clear: both;" data-collection="'+item+'">'+t('core', 'Shared in {item} with {user}', {'item': escapeHTML(item), user: escapeHTML(shareWithDisplayName)})+'</li>';
03e52840d   Kload   Init
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
  				$('#shareWithList').prepend(html);
  			}
  		} else {
  			var editChecked = createChecked = updateChecked = deleteChecked = shareChecked = '';
  			if (permissions & OC.PERMISSION_CREATE) {
  				createChecked = 'checked="checked"';
  				editChecked = 'checked="checked"';
  			}
  			if (permissions & OC.PERMISSION_UPDATE) {
  				updateChecked = 'checked="checked"';
  				editChecked = 'checked="checked"';
  			}
  			if (permissions & OC.PERMISSION_DELETE) {
  				deleteChecked = 'checked="checked"';
  				editChecked = 'checked="checked"';
  			}
  			if (permissions & OC.PERMISSION_SHARE) {
  				shareChecked = 'checked="checked"';
  			}
  			var html = '<li style="clear: both;" data-share-type="'+escapeHTML(shareType)+'" data-share-with="'+escapeHTML(shareWith)+'" title="' + escapeHTML(shareWith) + '">';
31b7f2792   Kload   Upgrade to ownclo...
607
  			var showCrudsButton;
6d9380f96   Cédric Dupont   Update sources OC...
608
  			html += '<a href="#" class="unshare"><img class="svg" alt="'+t('core', 'Unshare')+'" title="'+t('core', 'Unshare')+'" src="'+OC.imagePath('core', 'actions/delete')+'"/></a>';
31b7f2792   Kload   Upgrade to ownclo...
609
610
611
612
613
614
615
616
  			html += '<span class="username">' + escapeHTML(shareWithDisplayName) + '</span>';
  			var mailNotificationEnabled = $('input:hidden[name=mailNotificationEnabled]').val();
  			if (mailNotificationEnabled === 'yes') {
  				var checked = '';
  				if (mailSend === '1') {
  					checked = 'checked';
  				}
  				html += '<label><input type="checkbox" name="mailNotification" class="mailNotification" ' + checked + ' />'+t('core', 'notify by email')+'</label> ';
03e52840d   Kload   Init
617
  			}
6d9380f96   Cédric Dupont   Update sources OC...
618
619
620
  			if (possiblePermissions & OC.PERMISSION_SHARE) {
  				html += '<label><input type="checkbox" name="share" class="permissions" '+shareChecked+' data-permissions="'+OC.PERMISSION_SHARE+'" />'+t('core', 'can share')+'</label>';
  			}
03e52840d   Kload   Init
621
  			if (possiblePermissions & OC.PERMISSION_CREATE || possiblePermissions & OC.PERMISSION_UPDATE || possiblePermissions & OC.PERMISSION_DELETE) {
31b7f2792   Kload   Upgrade to ownclo...
622
  				html += '<label><input type="checkbox" name="edit" class="permissions" '+editChecked+' />'+t('core', 'can edit')+'</label> ';
03e52840d   Kload   Init
623
  			}
6d9380f96   Cédric Dupont   Update sources OC...
624
  			showCrudsButton = '<a href="#" class="showCruds"><img class="svg" alt="'+t('core', 'access control')+'" title="'+t('core', 'access control')+'" src="'+OC.imagePath('core', 'actions/triangle-s')+'"/></a>';
03e52840d   Kload   Init
625
626
627
628
629
630
631
632
633
634
  			html += '<div class="cruds" style="display:none;">';
  				if (possiblePermissions & OC.PERMISSION_CREATE) {
  					html += '<label><input type="checkbox" name="create" class="permissions" '+createChecked+' data-permissions="'+OC.PERMISSION_CREATE+'" />'+t('core', 'create')+'</label>';
  				}
  				if (possiblePermissions & OC.PERMISSION_UPDATE) {
  					html += '<label><input type="checkbox" name="update" class="permissions" '+updateChecked+' data-permissions="'+OC.PERMISSION_UPDATE+'" />'+t('core', 'update')+'</label>';
  				}
  				if (possiblePermissions & OC.PERMISSION_DELETE) {
  					html += '<label><input type="checkbox" name="delete" class="permissions" '+deleteChecked+' data-permissions="'+OC.PERMISSION_DELETE+'" />'+t('core', 'delete')+'</label>';
  				}
03e52840d   Kload   Init
635
636
  			html += '</div>';
  			html += '</li>';
31b7f2792   Kload   Upgrade to ownclo...
637
638
639
640
641
642
643
644
645
  			html = $(html).appendTo('#shareWithList');
  			// insert cruds button into last label element
  			var lastLabel = html.find('>label:last');
  			if (lastLabel.exists()){
  				lastLabel.append(showCrudsButton);
  			}
  			else{
  				html.find('.cruds').before(showCrudsButton);
  			}
6d9380f96   Cédric Dupont   Update sources OC...
646
647
648
649
  			if (!OC.Share.currentShares[shareType]) {
  				OC.Share.currentShares[shareType] = [];
  			}
  			OC.Share.currentShares[shareType].push(shareItem);
03e52840d   Kload   Init
650
651
652
653
654
  		}
  	},
  	showLink:function(token, password, itemSource) {
  		OC.Share.itemShares[OC.Share.SHARE_TYPE_LINK] = true;
  		$('#linkCheckbox').attr('checked', true);
6d9380f96   Cédric Dupont   Update sources OC...
655
656
657
  
  		//check itemType
  		var linkSharetype=$('#dropdown').data('item-type');
03e52840d   Kload   Init
658
659
660
661
662
663
664
665
666
667
  		if (! token) {
  			//fallback to pre token link
  			var filename = $('tr').filterAttr('data-id', String(itemSource)).data('file');
  			var type = $('tr').filterAttr('data-id', String(itemSource)).data('type');
  			if ($('#dir').val() == '/') {
  				var file = $('#dir').val() + filename;
  			} else {
  				var file = $('#dir').val() + '/' + filename;
  			}
  			file = '/'+OC.currentUser+'/files'+file;
6d9380f96   Cédric Dupont   Update sources OC...
668
  			// TODO: use oc webroot ?
03e52840d   Kload   Init
669
670
671
  			var link = parent.location.protocol+'//'+location.host+OC.linkTo('', 'public.php')+'?service=files&'+type+'='+encodeURIComponent(file);
  		} else {
  			//TODO add path param when showing a link to file in a subfolder of a public link share
6d9380f96   Cédric Dupont   Update sources OC...
672
673
674
675
676
677
678
679
680
  			var service='';
  			if(linkSharetype === 'folder' || linkSharetype === 'file'){
  				service='files';
  			}else{
  				service=linkSharetype;
  			}
  
  			// TODO: use oc webroot ?
  			var link = parent.location.protocol+'//'+location.host+OC.linkTo('', 'public.php')+'?service='+service+'&t='+token;
03e52840d   Kload   Init
681
682
683
684
  		}
  		$('#linkText').val(link);
  		$('#linkText').show('blind');
  		$('#linkText').css('display','block');
6d9380f96   Cédric Dupont   Update sources OC...
685
686
687
688
  		if (oc_appconfig.core.enforcePasswordForPublicLink === false || password === null) {
  			$('#showPassword').show();
  			$('#showPassword+label').show();
  		}
03e52840d   Kload   Init
689
690
691
  		if (password != null) {
  			$('#linkPass').show('blind');
  			$('#showPassword').attr('checked', true);
31b7f2792   Kload   Upgrade to ownclo...
692
  			$('#linkPassText').attr('placeholder', '**********');
03e52840d   Kload   Init
693
694
695
696
697
698
699
700
  		}
  		$('#expiration').show();
  		$('#emailPrivateLink #email').show();
  		$('#emailPrivateLink #emailButton').show();
  		$('#allowPublicUploadWrapper').show();
  	},
  	hideLink:function() {
  		$('#linkText').hide('blind');
6d9380f96   Cédric Dupont   Update sources OC...
701
  		$('#defaultExpireMessage').hide();
03e52840d   Kload   Init
702
703
  		$('#showPassword').hide();
  		$('#showPassword+label').hide();
6d9380f96   Cédric Dupont   Update sources OC...
704
  		$('#linkPass').hide('blind');
03e52840d   Kload   Init
705
706
707
708
709
710
711
  		$('#emailPrivateLink #email').hide();
  		$('#emailPrivateLink #emailButton').hide();
  		$('#allowPublicUploadWrapper').hide();
  	},
  	dirname:function(path) {
  		return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, '');
  	},
6d9380f96   Cédric Dupont   Update sources OC...
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
  	/**
  	 * Displays the expiration date field
  	 *
  	 * @param {Date} date current expiration date
  	 * @param {int} [shareTime] share timestamp in seconds, defaults to now
  	 */
  	showExpirationDate:function(date, shareTime) {
  		var now = new Date();
  		var datePickerOptions = {
  			minDate: now,
  			maxDate: null
  		};
  		if (_.isNumber(shareTime)) {
  			shareTime = new Date(shareTime * 1000);
  		}
  		if (!shareTime) {
  			shareTime = now;
  		}
03e52840d   Kload   Init
730
  		$('#expirationCheckbox').attr('checked', true);
03e52840d   Kload   Init
731
  		$('#expirationDate').val(date);
6d9380f96   Cédric Dupont   Update sources OC...
732
733
  		$('#expirationDate').show('blind');
  		$('#expirationDate').css('display','block');
03e52840d   Kload   Init
734
735
736
  		$('#expirationDate').datepicker({
  			dateFormat : 'dd-mm-yy'
  		});
6d9380f96   Cédric Dupont   Update sources OC...
737
738
739
740
741
742
743
744
745
746
  		if (oc_appconfig.core.defaultExpireDateEnforced) {
  			$('#expirationCheckbox').attr('disabled', true);
  			shareTime = OC.Util.stripTime(shareTime).getTime();
  			// max date is share date + X days
  			datePickerOptions.maxDate = new Date(shareTime + oc_appconfig.core.defaultExpireDate * 24 * 3600 * 1000);
  		}
  		if(oc_appconfig.core.defaultExpireDateEnabled) {
  			$('#defaultExpireMessage').show('blind');
  		}
  		$.datepicker.setDefaults(datePickerOptions);
03e52840d   Kload   Init
747
748
749
750
751
752
753
754
755
756
757
758
  	}
  };
  
  $(document).ready(function() {
  
  	if(typeof monthNames != 'undefined'){
  		$.datepicker.setDefaults({
  			monthNames: monthNames,
  			monthNamesShort: $.map(monthNames, function(v) { return v.slice(0,3)+'.'; }),
  			dayNames: dayNames,
  			dayNamesMin: $.map(dayNames, function(v) { return v.slice(0,2); }),
  			dayNamesShort: $.map(dayNames, function(v) { return v.slice(0,3)+'.'; }),
6d9380f96   Cédric Dupont   Update sources OC...
759
760
  			firstDay: firstDay,
  			minDate : new Date()
03e52840d   Kload   Init
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
  		});
  	}
  	$(document).on('click', 'a.share', function(event) {
  		event.stopPropagation();
  		if ($(this).data('item-type') !== undefined && $(this).data('item') !== undefined) {
  			var itemType = $(this).data('item-type');
  			var itemSource = $(this).data('item');
  			var appendTo = $(this).parent().parent();
  			var link = false;
  			var possiblePermissions = $(this).data('possible-permissions');
  			if ($(this).data('link') !== undefined && $(this).data('link') == true) {
  				link = true;
  			}
  			if (OC.Share.droppedDown) {
  				if (itemSource != $('#dropdown').data('item')) {
  					OC.Share.hideDropDown(function () {
  						OC.Share.showDropDown(itemType, itemSource, appendTo, link, possiblePermissions);
  					});
  				} else {
  					OC.Share.hideDropDown();
  				}
  			} else {
  				OC.Share.showDropDown(itemType, itemSource, appendTo, link, possiblePermissions);
  			}
  		}
  	});
  
  	$(this).click(function(event) {
  		var target = $(event.target);
  		var isMatched = !target.is('.drop, .ui-datepicker-next, .ui-datepicker-prev, .ui-icon')
31b7f2792   Kload   Upgrade to ownclo...
791
  			&& !target.closest('#ui-datepicker-div').length && !target.closest('.ui-autocomplete').length;
03e52840d   Kload   Init
792
793
794
795
  		if (OC.Share.droppedDown && isMatched && $('#dropdown').has(event.target).length === 0) {
  			OC.Share.hideDropDown();
  		}
  	});
03e52840d   Kload   Init
796
  	$(document).on('click', '#dropdown .showCruds', function() {
31b7f2792   Kload   Upgrade to ownclo...
797
798
  		$(this).closest('li').find('.cruds').toggle();
  		return false;
03e52840d   Kload   Init
799
800
801
  	});
  
  	$(document).on('click', '#dropdown .unshare', function() {
31b7f2792   Kload   Upgrade to ownclo...
802
  		var $li = $(this).closest('li');
03e52840d   Kload   Init
803
804
  		var itemType = $('#dropdown').data('item-type');
  		var itemSource = $('#dropdown').data('item-source');
31b7f2792   Kload   Upgrade to ownclo...
805
  		var shareType = $li.data('share-type');
837968727   Kload   [enh] Upgrade to ...
806
  		var shareWith = $li.attr('data-share-with');
03e52840d   Kload   Init
807
  		OC.Share.unshare(itemType, itemSource, shareType, shareWith, function() {
31b7f2792   Kload   Upgrade to ownclo...
808
  			$li.remove();
03e52840d   Kload   Init
809
810
  			var index = OC.Share.itemShares[shareType].indexOf(shareWith);
  			OC.Share.itemShares[shareType].splice(index, 1);
6d9380f96   Cédric Dupont   Update sources OC...
811
812
813
  			// updated list of shares
  			OC.Share.currentShares[shareType].splice(index, 1);
  			$('#dropdown').trigger(new $.Event('sharesChanged', {shares: OC.Share.currentShares}));
03e52840d   Kload   Init
814
815
  			OC.Share.updateIcon(itemType, itemSource);
  			if (typeof OC.Share.statuses[itemSource] === 'undefined') {
6d9380f96   Cédric Dupont   Update sources OC...
816
  				$('#expiration').hide('blind');
03e52840d   Kload   Init
817
818
  			}
  		});
31b7f2792   Kload   Upgrade to ownclo...
819
  		return false;
03e52840d   Kload   Init
820
821
822
  	});
  
  	$(document).on('change', '#dropdown .permissions', function() {
31b7f2792   Kload   Upgrade to ownclo...
823
  		var li = $(this).closest('li');
03e52840d   Kload   Init
824
  		if ($(this).attr('name') == 'edit') {
03e52840d   Kload   Init
825
826
827
828
829
830
831
  			var checkboxes = $('.permissions', li);
  			var checked = $(this).is(':checked');
  			// Check/uncheck Create, Update, and Delete checkboxes if Edit is checked/unck
  			$(checkboxes).filter('input[name="create"]').attr('checked', checked);
  			$(checkboxes).filter('input[name="update"]').attr('checked', checked);
  			$(checkboxes).filter('input[name="delete"]').attr('checked', checked);
  		} else {
03e52840d   Kload   Init
832
833
834
835
836
837
838
839
840
841
  			var checkboxes = $('.permissions', li);
  			// Uncheck Edit if Create, Update, and Delete are not checked
  			if (!$(this).is(':checked')
  				&& !$(checkboxes).filter('input[name="create"]').is(':checked')
  				&& !$(checkboxes).filter('input[name="update"]').is(':checked')
  				&& !$(checkboxes).filter('input[name="delete"]').is(':checked'))
  			{
  				$(checkboxes).filter('input[name="edit"]').attr('checked', false);
  			// Check Edit if Create, Update, or Delete is checked
  			} else if (($(this).attr('name') == 'create'
6d9380f96   Cédric Dupont   Update sources OC...
842
843
  				|| $(this).attr('name') == 'update'
  				|| $(this).attr('name') == 'delete'))
03e52840d   Kload   Init
844
845
846
847
848
849
850
851
852
853
  			{
  				$(checkboxes).filter('input[name="edit"]').attr('checked', true);
  			}
  		}
  		var permissions = OC.PERMISSION_READ;
  		$(checkboxes).filter(':not(input[name="edit"])').filter(':checked').each(function(index, checkbox) {
  			permissions |= $(checkbox).data('permissions');
  		});
  		OC.Share.setPermissions($('#dropdown').data('item-type'),
  			$('#dropdown').data('item-source'),
31b7f2792   Kload   Upgrade to ownclo...
854
  			li.data('share-type'),
837968727   Kload   [enh] Upgrade to ...
855
  			li.attr('data-share-with'),
03e52840d   Kload   Init
856
857
858
859
860
861
  			permissions);
  	});
  
  	$(document).on('change', '#dropdown #linkCheckbox', function() {
  		var itemType = $('#dropdown').data('item-type');
  		var itemSource = $('#dropdown').data('item-source');
31b7f2792   Kload   Upgrade to ownclo...
862
  		var itemSourceName = $('#dropdown').data('item-source-name');
6d9380f96   Cédric Dupont   Update sources OC...
863

03e52840d   Kload   Init
864
  		if (this.checked) {
6d9380f96   Cédric Dupont   Update sources OC...
865
866
867
868
869
870
871
872
873
874
  			var expireDateString = '';
  			if (oc_appconfig.core.defaultExpireDateEnabled) {
  				var date = new Date().getTime();
  				var expireAfterMs = oc_appconfig.core.defaultExpireDate * 24 * 60 * 60 * 1000;
  				var expireDate = new Date(date + expireAfterMs);
  				var month = expireDate.getMonth() + 1;
  				var year = expireDate.getFullYear();
  				var day = expireDate.getDate();
  				expireDateString = year + "-" + month + '-' + day + ' 00:00:00';
  			}
03e52840d   Kload   Init
875
  			// Create a link
6d9380f96   Cédric Dupont   Update sources OC...
876
877
878
879
880
881
882
883
884
885
886
887
888
  			if (oc_appconfig.core.enforcePasswordForPublicLink === false) {
  				OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', OC.PERMISSION_READ, itemSourceName, expireDateString, function(data) {
  					OC.Share.showLink(data.token, null, itemSource);
  					$('#dropdown').trigger(new $.Event('sharesChanged', {shares: OC.Share.currentShares}));
  					OC.Share.updateIcon(itemType, itemSource);
  				});
  			} else {
  				$('#linkPass').toggle('blind');
  				$('#linkPassText').focus();
  			}
  			if (expireDateString !== '') {
  				OC.Share.showExpirationDate(expireDateString);
  			}
03e52840d   Kload   Init
889
890
  		} else {
  			// Delete private link
6d9380f96   Cédric Dupont   Update sources OC...
891
892
893
894
895
896
897
898
899
900
901
902
  			OC.Share.hideLink();
  			$('#expiration').hide('blind');
  			if ($('#linkText').val() !== '') {
  				OC.Share.unshare(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', function() {
  					OC.Share.itemShares[OC.Share.SHARE_TYPE_LINK] = false;
  					$('#dropdown').trigger(new $.Event('sharesChanged', {shares: OC.Share.currentShares}));
  					OC.Share.updateIcon(itemType, itemSource);
  					if (typeof OC.Share.statuses[itemSource] === 'undefined') {
  						$('#expiration').hide('blind');
  					}
  				});
  			}
03e52840d   Kload   Init
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
  		}
  	});
  
  	$(document).on('click', '#dropdown #linkText', function() {
  		$(this).focus();
  		$(this).select();
  	});
  
  	// Handle the Allow Public Upload Checkbox
  	$(document).on('click', '#sharingDialogAllowPublicUpload', function() {
  
  		// Gather data
  		var allowPublicUpload = $(this).is(':checked');
  		var itemType = $('#dropdown').data('item-type');
  		var itemSource = $('#dropdown').data('item-source');
31b7f2792   Kload   Upgrade to ownclo...
918
  		var itemSourceName = $('#dropdown').data('item-source-name');
6d9380f96   Cédric Dupont   Update sources OC...
919
920
921
922
  		var expirationDate = '';
  		if ($('#expirationCheckbox').is(':checked') === true) {
  			expirationDate = $( "#expirationDate" ).val();
  		}
03e52840d   Kload   Init
923
924
925
926
927
928
929
930
931
932
  		var permissions = 0;
  
  		// Calculate permissions
  		if (allowPublicUpload) {
  			permissions = OC.PERMISSION_UPDATE + OC.PERMISSION_CREATE + OC.PERMISSION_READ;
  		} else {
  			permissions = OC.PERMISSION_READ;
  		}
  
  		// Update the share information
6d9380f96   Cédric Dupont   Update sources OC...
933
  		OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions, itemSourceName, expirationDate, function(data) {
03e52840d   Kload   Init
934
935
936
937
938
939
940
941
  		});
  	});
  
  	$(document).on('click', '#dropdown #showPassword', function() {
  		$('#linkPass').toggle('blind');
  		if (!$('#showPassword').is(':checked') ) {
  			var itemType = $('#dropdown').data('item-type');
  			var itemSource = $('#dropdown').data('item-source');
31b7f2792   Kload   Upgrade to ownclo...
942
  			var itemSourceName = $('#dropdown').data('item-source-name');
03e52840d   Kload   Init
943
944
945
946
947
948
949
950
951
  			var allowPublicUpload = $('#sharingDialogAllowPublicUpload').is(':checked');
  			var permissions = 0;
  
  			// Calculate permissions
  			if (allowPublicUpload) {
  				permissions = OC.PERMISSION_UPDATE + OC.PERMISSION_CREATE + OC.PERMISSION_READ;
  			} else {
  				permissions = OC.PERMISSION_READ;
  			}
31b7f2792   Kload   Upgrade to ownclo...
952
  			OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions, itemSourceName);
03e52840d   Kload   Init
953
954
955
956
957
958
959
960
961
962
963
964
965
  		} else {
  			$('#linkPassText').focus();
  		}
  	});
  
  	$(document).on('focusout keyup', '#dropdown #linkPassText', function(event) {
  		var linkPassText = $('#linkPassText');
  		if ( linkPassText.val() != '' && (event.type == 'focusout' || event.keyCode == 13) ) {
  
  			var allowPublicUpload = $('#sharingDialogAllowPublicUpload').is(':checked');
  			var dropDown = $('#dropdown');
  			var itemType = dropDown.data('item-type');
  			var itemSource = dropDown.data('item-source');
31b7f2792   Kload   Upgrade to ownclo...
966
  			var itemSourceName = $('#dropdown').data('item-source-name');
03e52840d   Kload   Init
967
968
969
970
971
972
973
974
  			var permissions = 0;
  
  			// Calculate permissions
  			if (allowPublicUpload) {
  				permissions = OC.PERMISSION_UPDATE + OC.PERMISSION_CREATE + OC.PERMISSION_READ;
  			} else {
  				permissions = OC.PERMISSION_READ;
  			}
6d9380f96   Cédric Dupont   Update sources OC...
975
  			OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $('#linkPassText').val(), permissions, itemSourceName, function(data) {
03e52840d   Kload   Init
976
977
  				linkPassText.val('');
  				linkPassText.attr('placeholder', t('core', 'Password protected'));
6d9380f96   Cédric Dupont   Update sources OC...
978
979
980
981
982
  
  				if (oc_appconfig.core.enforcePasswordForPublicLink) {
  					OC.Share.showLink(data.token, "password set", itemSource);
  					OC.Share.updateIcon(itemType, itemSource);
  				}
03e52840d   Kload   Init
983
  			});
6d9380f96   Cédric Dupont   Update sources OC...
984

03e52840d   Kload   Init
985
986
987
988
989
990
991
992
993
994
995
996
997
  		}
  	});
  
  	$(document).on('click', '#dropdown #expirationCheckbox', function() {
  		if (this.checked) {
  			OC.Share.showExpirationDate('');
  		} else {
  			var itemType = $('#dropdown').data('item-type');
  			var itemSource = $('#dropdown').data('item-source');
  			$.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setExpirationDate', itemType: itemType, itemSource: itemSource, date: '' }, function(result) {
  				if (!result || result.status !== 'success') {
  					OC.dialogs.alert(t('core', 'Error unsetting expiration date'), t('core', 'Error'));
  				}
6d9380f96   Cédric Dupont   Update sources OC...
998
999
1000
1001
  				$('#expirationDate').hide('blind');
  				if (oc_appconfig.core.defaultExpireDateEnforced === false) {
  					$('#defaultExpireMessage').show('blind');
  				}
03e52840d   Kload   Init
1002
1003
1004
1005
1006
1007
1008
  			});
  		}
  	});
  
  	$(document).on('change', '#dropdown #expirationDate', function() {
  		var itemType = $('#dropdown').data('item-type');
  		var itemSource = $('#dropdown').data('item-source');
6d9380f96   Cédric Dupont   Update sources OC...
1009
1010
1011
  
  		$(this).tipsy('hide');
  		$(this).removeClass('error');
03e52840d   Kload   Init
1012
1013
  		$.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setExpirationDate', itemType: itemType, itemSource: itemSource, date: $(this).val() }, function(result) {
  			if (!result || result.status !== 'success') {
6d9380f96   Cédric Dupont   Update sources OC...
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
  				var expirationDateField = $('#dropdown #expirationDate');
  				if (!result.data.message) {
  					expirationDateField.attr('original-title', t('core', 'Error setting expiration date'));
  				} else {
  					expirationDateField.attr('original-title', result.data.message);
  				}
  				expirationDateField.tipsy({gravity: 'n', fade: true});
  				expirationDateField.tipsy('show');
  				expirationDateField.addClass('error');
  			} else {
  				if (oc_appconfig.core.defaultExpireDateEnforced === 'no') {
  					$('#defaultExpireMessage'). hide('blind');
  				}
03e52840d   Kload   Init
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
  			}
  		});
  	});
  
  
  	$(document).on('submit', '#dropdown #emailPrivateLink', function(event) {
  		event.preventDefault();
  		var link = $('#linkText').val();
  		var itemType = $('#dropdown').data('item-type');
  		var itemSource = $('#dropdown').data('item-source');
  		var file = $('tr').filterAttr('data-id', String(itemSource)).data('file');
  		var email = $('#email').val();
a293d369c   Kload   Update sources to...
1039
1040
1041
1042
  		var expirationDate = '';
  		if ( $('#expirationCheckbox').is(':checked') === true ) {
  			expirationDate = $( "#expirationDate" ).val();
  		}
03e52840d   Kload   Init
1043
  		if (email != '') {
31b7f2792   Kload   Upgrade to ownclo...
1044
  			$('#email').prop('disabled', true);
03e52840d   Kload   Init
1045
  			$('#email').val(t('core', 'Sending ...'));
31b7f2792   Kload   Upgrade to ownclo...
1046
  			$('#emailButton').prop('disabled', true);
03e52840d   Kload   Init
1047

a293d369c   Kload   Update sources to...
1048
  			$.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'email', toaddress: email, link: link, itemType: itemType, itemSource: itemSource, file: file, expiration: expirationDate},
03e52840d   Kload   Init
1049
  				function(result) {
31b7f2792   Kload   Upgrade to ownclo...
1050
1051
  					$('#email').prop('disabled', false);
  					$('#emailButton').prop('disabled', false);
03e52840d   Kload   Init
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
  				if (result && result.status == 'success') {
  					$('#email').css('font-weight', 'bold');
  					$('#email').animate({ fontWeight: 'normal' }, 2000, function() {
  						$(this).val('');
  					}).val(t('core','Email sent'));
  				} else {
  					OC.dialogs.alert(result.data.message, t('core', 'Error while sharing'));
  				}
  			});
  		}
  	});
31b7f2792   Kload   Upgrade to ownclo...
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
  	$(document).on('click', '#dropdown input[name=mailNotification]', function() {
  		var $li = $(this).closest('li');
  		var itemType = $('#dropdown').data('item-type');
  		var itemSource = $('#dropdown').data('item-source');
  		var action = '';
  		if (this.checked) {
  			action = 'informRecipients';
  		} else {
  			action = 'informRecipientsDisabled';
  		}
  
  		var shareType = $li.data('share-type');
837968727   Kload   [enh] Upgrade to ...
1075
  		var shareWith = $li.attr('data-share-with');
31b7f2792   Kload   Upgrade to ownclo...
1076
1077
1078
1079
1080
1081
1082
1083
  
  		$.post(OC.filePath('core', 'ajax', 'share.php'), {action: action, recipient: shareWith, shareType: shareType, itemSource: itemSource, itemType: itemType}, function(result) {
  			if (result.status !== 'success') {
  				OC.dialogs.alert(t('core', result.data.message), t('core', 'Warning'));
  			}
  		});
  
  });
03e52840d   Kload   Init
1084
1085
  
  });