Blame view

sources/settings/js/users.js 16 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
  /**
   * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
   * This file is licensed under the Affero General Public License version 3 or later.
   * See the COPYING-README file.
   */
  
  function setQuota (uid, quota, ready) {
  	$.post(
  		OC.filePath('settings', 'ajax', 'setquota.php'),
  		{username: uid, quota: quota},
  		function (result) {
  			if (ready) {
  				ready(result.data.quota);
  			}
  		}
  	);
  }
  
  var UserList = {
  	useUndo: true,
  	availableGroups: [],
  	offset: 30, //The first 30 users are there. No prob, if less in total.
  				//hardcoded in settings/users.php
  
  	usersToLoad: 10, //So many users will be loaded when user scrolls down
  
  	/**
  	 * @brief Initiate user deletion process in UI
  	 * @param string uid the user ID to be deleted
  	 *
  	 * Does not actually delete the user; it sets them for
  	 * deletion when the current page is unloaded, at which point
  	 * finishDelete() completes the process. This allows for 'undo'.
  	 */
  	do_delete: function (uid) {
  		if (typeof UserList.deleteUid !== 'undefined') {
  			//Already a user in the undo queue
  			UserList.finishDelete(null);
  		}
  		UserList.deleteUid = uid;
  
  		// Set undo flag
  		UserList.deleteCanceled = false;
  
  		// Provide user with option to undo
  		$('#notification').data('deleteuser', true);
a293d369c   Kload   Update sources to...
47
  		OC.Notification.showHtml(t('settings', 'deleted') + ' ' + escapeHTML(uid) + '<span class="undo">' + t('settings', 'undo') + '</span>');
03e52840d   Kload   Init
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  	},
  
  	/**
  	 * @brief Delete a user via ajax
  	 * @param bool ready whether to use ready() upon completion
  	 *
  	 * Executes deletion via ajax of user identified by property deleteUid
  	 * if 'undo' has not been used.  Completes the user deletion procedure
  	 * and reflects success in UI.
  	 */
  	finishDelete: function (ready) {
  
  		// Check deletion has not been undone
  		if (!UserList.deleteCanceled && UserList.deleteUid) {
  
  			// Delete user via ajax
  			$.ajax({
  				type: 'POST',
  				url: OC.filePath('settings', 'ajax', 'removeuser.php'),
  				async: false,
  				data: { username: UserList.deleteUid },
  				success: function (result) {
31b7f2792   Kload   Upgrade to ownclo...
70
  					if (result.status === 'success') {
03e52840d   Kload   Init
71
72
73
74
75
76
77
78
  						// Remove undo option, & remove user from table
  						OC.Notification.hide();
  						$('tr').filterAttr('data-uid', UserList.deleteUid).remove();
  						UserList.deleteCanceled = true;
  						if (ready) {
  							ready();
  						}
  					} else {
31b7f2792   Kload   Upgrade to ownclo...
79
  						OC.dialogs.alert(result.data.message, t('settings', 'Unable to remove user'));
03e52840d   Kload   Init
80
81
82
83
84
85
86
87
  					}
  				}
  			});
  		}
  	},
  
  	add: function (username, displayname, groups, subadmin, quota, sort) {
  		var tr = $('tbody tr').first().clone();
a293d369c   Kload   Update sources to...
88
89
90
91
  		var subadminsEl;
  		var subadminSelect;
  		var groupsSelect;
  		if (tr.find('div.avatardiv').length){
31b7f2792   Kload   Upgrade to ownclo...
92
93
  			$('div.avatardiv', tr).avatar(username, 32);
  		}
03e52840d   Kload   Init
94
95
96
97
  		tr.attr('data-uid', username);
  		tr.attr('data-displayName', displayname);
  		tr.find('td.name').text(username);
  		tr.find('td.displayName > span').text(displayname);
a293d369c   Kload   Update sources to...
98
99
100
101
  
  		// make them look like the multiselect buttons
  		// until they get time to really get initialized
  		groupsSelect = $('<select multiple="multiple" class="groupsselect multiselect button" data-placehoder="Groups" title="' + t('settings', 'Groups') + '"></select>')
03e52840d   Kload   Init
102
103
  			.attr('data-username', username)
  			.data('user-groups', groups);
03e52840d   Kload   Init
104
  		if (tr.find('td.subadmins').length > 0) {
a293d369c   Kload   Update sources to...
105
  			subadminSelect = $('<select multiple="multiple" class="subadminsselect multiselect button" data-placehoder="subadmins" title="' + t('settings', 'Group Admin') + '">')
03e52840d   Kload   Init
106
107
108
109
110
111
112
  				.attr('data-username', username)
  				.data('user-groups', groups)
  				.data('subadmin', subadmin);
  			tr.find('td.subadmins').empty();
  		}
  		$.each(this.availableGroups, function (i, group) {
  			groupsSelect.append($('<option value="' + escapeHTML(group) + '">' + escapeHTML(group) + '</option>'));
31b7f2792   Kload   Upgrade to ownclo...
113
  			if (typeof subadminSelect !== 'undefined' && group !== 'admin') {
03e52840d   Kload   Init
114
115
116
  				subadminSelect.append($('<option value="' + escapeHTML(group) + '">' + escapeHTML(group) + '</option>'));
  			}
  		});
a293d369c   Kload   Update sources to...
117
118
119
120
  		tr.find('td.groups').empty().append(groupsSelect);
  		subadminsEl = tr.find('td.subadmins');
  		if (subadminsEl.length > 0) {
  			subadminsEl.append(subadminSelect);
03e52840d   Kload   Init
121
  		}
31b7f2792   Kload   Upgrade to ownclo...
122
  		if (tr.find('td.remove img').length === 0 && OC.currentUser !== username) {
03e52840d   Kload   Init
123
124
125
126
127
128
129
  			var rm_img = $('<img class="svg action">').attr({
  				src: OC.imagePath('core', 'actions/delete')
  			});
  			var rm_link = $('<a class="action delete">')
  				.attr({ href: '#', 'original-title': t('settings', 'Delete')})
  				.append(rm_img);
  			tr.find('td.remove').append(rm_link);
31b7f2792   Kload   Upgrade to ownclo...
130
  		} else if (OC.currentUser === username) {
03e52840d   Kload   Init
131
132
133
  			tr.find('td.remove a').remove();
  		}
  		var quotaSelect = tr.find('select.quota-user');
31b7f2792   Kload   Upgrade to ownclo...
134
  		if (quota === 'default') {
03e52840d   Kload   Init
135
136
137
138
139
140
141
142
143
144
145
  			quotaSelect.find('option').attr('selected', null);
  			quotaSelect.find('option').first().attr('selected', 'selected');
  			quotaSelect.data('previous', 'default');
  		} else {
  			if (quotaSelect.find('option[value="' + quota + '"]').length > 0) {
  				quotaSelect.find('option[value="' + quota + '"]').attr('selected', 'selected');
  			} else {
  				quotaSelect.append('<option value="' + escapeHTML(quota) + '" selected="selected">' + escapeHTML(quota) + '</option>');
  			}
  		}
  		$(tr).appendTo('tbody');
a293d369c   Kload   Update sources to...
146

03e52840d   Kload   Init
147
148
149
  		if (sort) {
  			UserList.doSort();
  		}
03e52840d   Kload   Init
150
151
152
  		quotaSelect.on('change', function () {
  			var uid = $(this).parent().parent().attr('data-uid');
  			var quota = $(this).val();
31b7f2792   Kload   Upgrade to ownclo...
153
154
155
156
157
  			setQuota(uid, quota, function(returnedQuota){
  				if (quota !== returnedQuota) {
  					$(quotaSelect).find(':selected').text(returnedQuota);
  				}
  			});
03e52840d   Kload   Init
158
  		});
a293d369c   Kload   Update sources to...
159
160
161
162
163
164
165
166
167
168
  
  		// defer init so the user first sees the list appear more quickly
  		window.setTimeout(function(){
  			quotaSelect.singleSelect();
  			UserList.applyMultiplySelect(groupsSelect);
  			if (subadminSelect) {
  				UserList.applyMultiplySelect(subadminSelect);
  			}
  		}, 0);
  		return tr;
03e52840d   Kload   Init
169
170
171
172
173
174
175
  	},
  	// From http://my.opera.com/GreyWyvern/blog/show.dml/1671288
  	alphanum: function(a, b) {
  		function chunkify(t) {
  			var tz = [], x = 0, y = -1, n = 0, i, j;
  
  			while (i = (j = t.charAt(x++)).charCodeAt(0)) {
31b7f2792   Kload   Upgrade to ownclo...
176
  			var m = (i === 46 || (i >=48 && i <= 57));
03e52840d   Kload   Init
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
  			if (m !== n) {
  				tz[++y] = "";
  				n = m;
  			}
  			tz[y] += j;
  			}
  			return tz;
  		}
  
  		var aa = chunkify(a.toLowerCase());
  		var bb = chunkify(b.toLowerCase());
  
  		for (x = 0; aa[x] && bb[x]; x++) {
  			if (aa[x] !== bb[x]) {
  			var c = Number(aa[x]), d = Number(bb[x]);
31b7f2792   Kload   Upgrade to ownclo...
192
  			if (c === aa[x] && d === bb[x]) {
03e52840d   Kload   Init
193
  				return c - d;
31b7f2792   Kload   Upgrade to ownclo...
194
195
196
  			} else {
  				return (aa[x] > bb[x]) ? 1 : -1;
  			}
03e52840d   Kload   Init
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
  			}
  		}
  		return aa.length - bb.length;
  	},
  	doSort: function() {
  		var self = this;
  		var rows = $('tbody tr').get();
  
  		rows.sort(function(a, b) {
  			return UserList.alphanum($(a).find('td.name').text(), $(b).find('td.name').text());
  		});
  
  		var items = [];
  		$.each(rows, function(index, row) {
  			items.push(row);
  			if(items.length === 100) {
  				$('tbody').append(items);
  				items = [];
  			}
  		});
  		if(items.length > 0) {
  			$('tbody').append(items);
  		}
  	},
  	update: function () {
  		if (UserList.updating) {
  			return;
  		}
a293d369c   Kload   Update sources to...
225
  		$('table+.loading').css('visibility', 'visible');
03e52840d   Kload   Init
226
227
  		UserList.updating = true;
  		$.get(OC.Router.generate('settings_ajax_userlist', { offset: UserList.offset, limit: UserList.usersToLoad }), function (result) {
a293d369c   Kload   Update sources to...
228
229
  			var loadedUsers = 0;
  			var trs = [];
03e52840d   Kload   Init
230
231
232
233
  			if (result.status === 'success') {
  				//The offset does not mirror the amount of users available,
  				//because it is backend-dependent. For correct retrieval,
  				//always the limit(requested amount of users) needs to be added.
03e52840d   Kload   Init
234
235
236
237
238
  				$.each(result.data, function (index, user) {
  					if($('tr[data-uid="' + user.name + '"]').length > 0) {
  						return true;
  					}
  					var tr = UserList.add(user.name, user.displayname, user.groups, user.subadmin, user.quota, false);
a293d369c   Kload   Update sources to...
239
240
241
  					tr.addClass('appear transparent');
  					trs.push(tr);
  					loadedUsers++;
03e52840d   Kload   Init
242
243
244
  				});
  				if (result.data.length > 0) {
  					UserList.doSort();
a293d369c   Kload   Update sources to...
245
  					$('table+.loading').css('visibility', 'hidden');
03e52840d   Kload   Init
246
  				}
a293d369c   Kload   Update sources to...
247
248
249
250
251
252
253
254
255
256
257
  				else {
  					UserList.noMoreEntries = true;
  					$('table+.loading').remove();
  				}
  				UserList.offset += loadedUsers;
  				// animate
  				setTimeout(function() {
  					for (var i = 0; i < trs.length; i++) {
  						trs[i].removeClass('transparent');
  					}
  				}, 0);
03e52840d   Kload   Init
258
259
260
261
262
263
264
265
  			}
  			UserList.updating = false;
  		});
  	},
  
  	applyMultiplySelect: function (element) {
  		var checked = [];
  		var user = element.attr('data-username');
a293d369c   Kload   Update sources to...
266
  		if ($(element).hasClass('groupsselect')) {
03e52840d   Kload   Init
267
268
269
270
271
  			if (element.data('userGroups')) {
  				checked = element.data('userGroups');
  			}
  			if (user) {
  				var checkHandeler = function (group) {
31b7f2792   Kload   Upgrade to ownclo...
272
  					if (user === OC.currentUser && group === 'admin') {
03e52840d   Kload   Init
273
274
  						return false;
  					}
31b7f2792   Kload   Upgrade to ownclo...
275
  					if (!isadmin && checked.length === 1 && checked[0] === group) {
03e52840d   Kload   Init
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
  						return false;
  					}
  					$.post(
  						OC.filePath('settings', 'ajax', 'togglegroups.php'),
  						{
  							username: user,
  							group: group
  						},
  						function (response) {
  							if(response.status === 'success'
  									&& UserList.availableGroups.indexOf(response.data.groupname) === -1
  									&& response.data.action === 'add') {
  								UserList.availableGroups.push(response.data.groupname);
  							}
  							if(response.data.message) {
  								OC.Notification.show(response.data.message);
  							}
  						}
  					);
  				};
  			} else {
  				checkHandeler = false;
  			}
  			var addGroup = function (select, group) {
  				$('select[multiple]').each(function (index, element) {
  					if ($(element).find('option[value="' + group + '"]').length === 0 && select.data('msid') !== $(element).data('msid')) {
  						$(element).append('<option value="' + escapeHTML(group) + '">' + escapeHTML(group) + '</option>');
  					}
31b7f2792   Kload   Upgrade to ownclo...
304
  				});
03e52840d   Kload   Init
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
  			};
  			var label;
  			if (isadmin) {
  				label = t('settings', 'add group');
  			} else {
  				label = null;
  			}
  			element.multiSelect({
  				createCallback: addGroup,
  				createText: label,
  				selectedFirst: true,
  				checked: checked,
  				oncheck: checkHandeler,
  				onuncheck: checkHandeler,
  				minWidth: 100
  			});
  		}
a293d369c   Kload   Update sources to...
322
  		if ($(element).hasClass('subadminsselect')) {
03e52840d   Kload   Init
323
324
325
326
  			if (element.data('subadmin')) {
  				checked = element.data('subadmin');
  			}
  			var checkHandeler = function (group) {
31b7f2792   Kload   Upgrade to ownclo...
327
  				if (group === 'admin') {
03e52840d   Kload   Init
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
  					return false;
  				}
  				$.post(
  					OC.filePath('settings', 'ajax', 'togglesubadmins.php'),
  					{
  						username: user,
  						group: group
  					},
  					function () {
  					}
  				);
  			};
  
  			var addSubAdmin = function (group) {
  				$('select[multiple]').each(function (index, element) {
31b7f2792   Kload   Upgrade to ownclo...
343
  					if ($(element).find('option[value="' + group + '"]').length === 0) {
03e52840d   Kload   Init
344
345
  						$(element).append('<option value="' + escapeHTML(group) + '">' + escapeHTML(group) + '</option>');
  					}
31b7f2792   Kload   Upgrade to ownclo...
346
  				});
03e52840d   Kload   Init
347
348
349
350
351
352
353
354
355
356
  			};
  			element.multiSelect({
  				createCallback: addSubAdmin,
  				createText: null,
  				checked: checked,
  				oncheck: checkHandeler,
  				onuncheck: checkHandeler,
  				minWidth: 100
  			});
  		}
a293d369c   Kload   Update sources to...
357
358
359
360
361
362
363
364
365
366
  	},
  
  	_onScroll: function(e) {
  		if (!!UserList.noMoreEntries) {
  			return;
  		}
  		if ($(window).scrollTop() + $(window).height() > $(document).height() - 500) {
  			UserList.update(true);
  		}
  	},
03e52840d   Kload   Init
367
368
369
370
371
372
  };
  
  $(document).ready(function () {
  
  	UserList.doSort();
  	UserList.availableGroups = $('#content table').data('groups');
a293d369c   Kload   Update sources to...
373
374
  	OC.Router.registerLoadedCallback(function() {
  		$(window).scroll(function(e) {UserList._onScroll(e);});
03e52840d   Kload   Init
375
  	});
a293d369c   Kload   Update sources to...
376
  	$('table').after($('<div class="loading" style="height: 200px; visibility: hidden;"></div>'));
03e52840d   Kload   Init
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
  
  	$('select[multiple]').each(function (index, element) {
  		UserList.applyMultiplySelect($(element));
  	});
  
  	$('table').on('click', 'td.remove>a', function (event) {
  		var row = $(this).parent().parent();
  		var uid = $(row).attr('data-uid');
  		$(row).hide();
  		// Call function for handling delete/undo
  		UserList.do_delete(uid);
  	});
  
  	$('table').on('click', 'td.password>img', function (event) {
  		event.stopPropagation();
  		var img = $(this);
  		var uid = img.parent().parent().attr('data-uid');
  		var input = $('<input type="password">');
  		img.css('display', 'none');
  		img.parent().children('span').replaceWith(input);
  		input.focus();
  		input.keypress(function (event) {
31b7f2792   Kload   Upgrade to ownclo...
399
  			if (event.keyCode === 13) {
03e52840d   Kload   Init
400
401
402
  				if ($(this).val().length > 0) {
  					var recoveryPasswordVal = $('input:password[id="recoveryPassword"]').val();
  					$.post(
31b7f2792   Kload   Upgrade to ownclo...
403
  						OC.Router.generate('settings_users_changepassword'),
03e52840d   Kload   Init
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
  						{username: uid, password: $(this).val(), recoveryPassword: recoveryPasswordVal},
  						function (result) {
  							if (result.status != 'success') {
  								OC.Notification.show(t('admin', result.data.message));
  							}
  						}
  					);
  					input.blur();
  				} else {
  					input.blur();
  				}
  			}
  		});
  		input.blur(function () {
  			$(this).replaceWith($('<span>●●●●●●●</span>'));
  			img.css('display', '');
  		});
  	});
  	$('input:password[id="recoveryPassword"]').keyup(function(event) {
  		OC.Notification.hide();
  	});
31b7f2792   Kload   Upgrade to ownclo...
425

03e52840d   Kload   Init
426
427
428
429
430
431
432
433
434
435
436
437
438
439
  	$('table').on('click', 'td.password', function (event) {
  		$(this).children('img').click();
  	});
  
  	$('table').on('click', 'td.displayName>img', function (event) {
  		event.stopPropagation();
  		var img = $(this);
  		var uid = img.parent().parent().attr('data-uid');
  		var displayName = escapeHTML(img.parent().parent().attr('data-displayName'));
  		var input = $('<input type="text" value="' + displayName + '">');
  		img.css('display', 'none');
  		img.parent().children('span').replaceWith(input);
  		input.focus();
  		input.keypress(function (event) {
31b7f2792   Kload   Upgrade to ownclo...
440
  			if (event.keyCode === 13) {
03e52840d   Kload   Init
441
442
443
444
445
  				if ($(this).val().length > 0) {
  					$.post(
  						OC.filePath('settings', 'ajax', 'changedisplayname.php'),
  						{username: uid, displayName: $(this).val()},
  						function (result) {
31b7f2792   Kload   Upgrade to ownclo...
446
447
448
  							if (result && result.status==='success'){
  								img.parent().parent().find('div.avatardiv').avatar(result.data.username, 32);
  							}
03e52840d   Kload   Init
449
450
451
452
453
454
455
456
457
  						}
  					);
  					input.blur();
  				} else {
  					input.blur();
  				}
  			}
  		});
  		input.blur(function () {
0f30ed153   Kload   RC4
458
  			$(this).replaceWith(escapeHTML($(this).val()));
03e52840d   Kload   Init
459
460
461
462
463
464
465
466
  			img.css('display', '');
  		});
  	});
  	$('table').on('click', 'td.displayName', function (event) {
  		$(this).children('img').click();
  	});
  
  	$('select.quota, select.quota-user').singleSelect().on('change', function () {
31b7f2792   Kload   Upgrade to ownclo...
467
  		var select = $(this);
03e52840d   Kload   Init
468
469
  		var uid = $(this).parent().parent().attr('data-uid');
  		var quota = $(this).val();
31b7f2792   Kload   Upgrade to ownclo...
470
471
472
473
474
  		setQuota(uid, quota, function(returnedQuota){
  			if (quota !== returnedQuota) {
  				select.find(':selected').text(returnedQuota);
  			}
  		});
03e52840d   Kload   Init
475
476
477
478
479
480
  	});
  
  	$('#newuser').submit(function (event) {
  		event.preventDefault();
  		var username = $('#newusername').val();
  		var password = $('#newuserpassword').val();
31b7f2792   Kload   Upgrade to ownclo...
481
  		if ($.trim(username) === '') {
03e52840d   Kload   Init
482
483
484
485
486
  			OC.dialogs.alert(
  				t('settings', 'A valid username must be provided'),
  				t('settings', 'Error creating user'));
  			return false;
  		}
31b7f2792   Kload   Upgrade to ownclo...
487
  		if ($.trim(password) === '') {
03e52840d   Kload   Init
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
  			OC.dialogs.alert(
  				t('settings', 'A valid password must be provided'),
  				t('settings', 'Error creating user'));
  			return false;
  		}
  		var groups = $('#newusergroups').prev().children('div').data('settings').checked;
  		$('#newuser').get(0).reset();
  		$.post(
  			OC.filePath('settings', 'ajax', 'createuser.php'),
  			{
  				username: username,
  				password: password,
  				groups: groups
  			},
  			function (result) {
31b7f2792   Kload   Upgrade to ownclo...
503
  				if (result.status !== 'success') {
03e52840d   Kload   Init
504
505
506
507
508
509
510
  					OC.dialogs.alert(result.data.message,
  						t('settings', 'Error creating user'));
  				} else {
  					if (result.data.groups) {
  						var addedGroups = result.data.groups;
  						UserList.availableGroups = $.unique($.merge(UserList.availableGroups, addedGroups));
  					}
31b7f2792   Kload   Upgrade to ownclo...
511
512
513
514
515
516
517
518
519
520
521
522
  					if (result.data.homeExists){
  						OC.Notification.hide();
  						OC.Notification.show(t('settings', 'Warning: Home directory for user "{user}" already exists', {user: result.data.username}));
  						if (UserList.notificationTimeout){
  							window.clearTimeout(UserList.notificationTimeout);
  						}
  						UserList.notificationTimeout = window.setTimeout(
  							function(){
  								OC.Notification.hide();
  								UserList.notificationTimeout = null;
  							}, 10000);
  					}
03e52840d   Kload   Init
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
  					if($('tr[data-uid="' + username + '"]').length === 0) {
  						UserList.add(username, username, result.data.groups, null, 'default', true);
  					}
  				}
  			}
  		);
  	});
  	// Handle undo notifications
  	OC.Notification.hide();
  	$('#notification').on('click', '.undo', function () {
  		if ($('#notification').data('deleteuser')) {
  			$('tbody tr').filterAttr('data-uid', UserList.deleteUid).show();
  			UserList.deleteCanceled = true;
  		}
  		OC.Notification.hide();
  	});
31b7f2792   Kload   Upgrade to ownclo...
539
  	UserList.useUndo = ('onbeforeunload' in window);
03e52840d   Kload   Init
540
541
542
543
  	$(window).bind('beforeunload', function () {
  		UserList.finishDelete(null);
  	});
  });