2013-01-24 16:00:40 +04:00
|
|
|
var LdapConfiguration = {
|
|
|
|
refreshConfig: function() {
|
2013-01-30 05:30:24 +04:00
|
|
|
if($('#ldap_serverconfig_chooser option').length < 2) {
|
|
|
|
LdapConfiguration.addConfiguration(true);
|
|
|
|
return;
|
|
|
|
}
|
2013-01-24 16:00:40 +04:00
|
|
|
$.post(
|
|
|
|
OC.filePath('user_ldap','ajax','getConfiguration.php'),
|
|
|
|
$('#ldap_serverconfig_chooser').serialize(),
|
|
|
|
function (result) {
|
2013-04-21 00:45:17 +04:00
|
|
|
if(result.status === 'success') {
|
2013-01-24 16:00:40 +04:00
|
|
|
$.each(result.configuration, function(configkey, configvalue) {
|
|
|
|
elementID = '#'+configkey;
|
|
|
|
|
|
|
|
//deal with Checkboxes
|
|
|
|
if($(elementID).is('input[type=checkbox]')) {
|
2014-04-23 12:08:14 +04:00
|
|
|
if(parseInt(configvalue, 10) === 1) {
|
2013-01-24 16:00:40 +04:00
|
|
|
$(elementID).attr('checked', 'checked');
|
|
|
|
} else {
|
|
|
|
$(elementID).removeAttr('checked');
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//On Textareas, Multi-Line Settings come as array
|
|
|
|
if($(elementID).is('textarea') && $.isArray(configvalue)) {
|
|
|
|
configvalue = configvalue.join("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
// assign the value
|
|
|
|
$('#'+configkey).val(configvalue);
|
|
|
|
});
|
2013-09-27 20:30:59 +04:00
|
|
|
LdapWizard.init();
|
2013-01-24 16:00:40 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
resetDefaults: function() {
|
|
|
|
$('#ldap').find('input[type=text], input[type=number], input[type=password], textarea, select').each(function() {
|
2013-04-21 00:45:17 +04:00
|
|
|
if($(this).attr('id') === 'ldap_serverconfig_chooser') {
|
2013-01-24 16:00:40 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$(this).val($(this).attr('data-default'));
|
|
|
|
});
|
|
|
|
$('#ldap').find('input[type=checkbox]').each(function() {
|
2013-04-21 00:45:17 +04:00
|
|
|
if($(this).attr('data-default') === 1) {
|
2013-01-24 16:00:40 +04:00
|
|
|
$(this).attr('checked', 'checked');
|
|
|
|
} else {
|
|
|
|
$(this).removeAttr('checked');
|
|
|
|
}
|
|
|
|
});
|
2013-01-24 17:11:53 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
deleteConfiguration: function() {
|
|
|
|
$.post(
|
|
|
|
OC.filePath('user_ldap','ajax','deleteConfiguration.php'),
|
|
|
|
$('#ldap_serverconfig_chooser').serialize(),
|
|
|
|
function (result) {
|
2013-04-21 00:45:17 +04:00
|
|
|
if(result.status === 'success') {
|
2013-01-24 17:11:53 +04:00
|
|
|
$('#ldap_serverconfig_chooser option:selected').remove();
|
|
|
|
$('#ldap_serverconfig_chooser option:first').select();
|
|
|
|
LdapConfiguration.refreshConfig();
|
|
|
|
} else {
|
|
|
|
OC.dialogs.alert(
|
|
|
|
result.message,
|
2013-01-25 01:47:25 +04:00
|
|
|
t('user_ldap', 'Deletion failed')
|
2013-01-24 17:11:53 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2013-01-30 05:30:24 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
addConfiguration: function(doNotAsk) {
|
|
|
|
$.post(
|
|
|
|
OC.filePath('user_ldap','ajax','getNewServerConfigPrefix.php'),
|
|
|
|
function (result) {
|
2013-04-21 00:45:17 +04:00
|
|
|
if(result.status === 'success') {
|
2013-01-30 05:30:24 +04:00
|
|
|
if(doNotAsk) {
|
|
|
|
LdapConfiguration.resetDefaults();
|
|
|
|
} else {
|
|
|
|
OC.dialogs.confirm(
|
|
|
|
t('user_ldap', 'Take over settings from recent server configuration?'),
|
|
|
|
t('user_ldap', 'Keep settings?'),
|
|
|
|
function(keep) {
|
|
|
|
if(!keep) {
|
|
|
|
LdapConfiguration.resetDefaults();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$('#ldap_serverconfig_chooser option:selected').removeAttr('selected');
|
2014-05-25 14:48:17 +04:00
|
|
|
var html = '<option value="'+result.configPrefix+'" selected="selected">'+t('user_ldap','{nthServer}. Server', {nthServer: $('#ldap_serverconfig_chooser option').length})+'</option>';
|
2013-01-30 05:30:24 +04:00
|
|
|
$('#ldap_serverconfig_chooser option:last').before(html);
|
2013-09-27 20:30:59 +04:00
|
|
|
LdapWizard.init();
|
2013-01-30 05:30:24 +04:00
|
|
|
} else {
|
|
|
|
OC.dialogs.alert(
|
|
|
|
result.message,
|
|
|
|
t('user_ldap', 'Cannot add server configuration')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2013-05-08 19:47:07 +04:00
|
|
|
},
|
|
|
|
|
2013-11-07 20:11:14 +04:00
|
|
|
testConfiguration: function(onSuccess, onError) {
|
|
|
|
$.post(
|
|
|
|
OC.filePath('user_ldap','ajax','testConfiguration.php'),
|
|
|
|
$('#ldap').serialize(),
|
|
|
|
function (result) {
|
|
|
|
if (result.status === 'success') {
|
|
|
|
onSuccess(result);
|
|
|
|
} else {
|
|
|
|
onError(result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2013-05-08 19:47:07 +04:00
|
|
|
clearMappings: function(mappingSubject) {
|
|
|
|
$.post(
|
|
|
|
OC.filePath('user_ldap','ajax','clearMappings.php'),
|
2013-11-20 02:58:08 +04:00
|
|
|
'ldap_clear_mapping='+encodeURIComponent(mappingSubject),
|
2013-05-08 19:47:07 +04:00
|
|
|
function(result) {
|
2014-10-10 13:49:45 +04:00
|
|
|
if(result.status === 'success') {
|
2013-05-08 19:47:07 +04:00
|
|
|
OC.dialogs.info(
|
|
|
|
t('user_ldap', 'mappings cleared'),
|
|
|
|
t('user_ldap', 'Success')
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
OC.dialogs.alert(
|
|
|
|
result.message,
|
|
|
|
t('user_ldap', 'Error')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2013-01-24 16:00:40 +04:00
|
|
|
}
|
2013-07-31 23:21:02 +04:00
|
|
|
};
|
2013-01-24 16:00:40 +04:00
|
|
|
|
2013-09-27 20:30:59 +04:00
|
|
|
var LdapWizard = {
|
|
|
|
checkPortInfoShown: false,
|
2013-09-30 01:53:14 +04:00
|
|
|
saveBlacklist: {},
|
2013-10-08 20:27:36 +04:00
|
|
|
userFilterGroupSelectState: 'enable',
|
2013-10-17 15:05:14 +04:00
|
|
|
spinner: '<img class="wizSpinner" src="'+ OC.imagePath('core', 'loading.gif') +'">',
|
2013-11-20 02:58:08 +04:00
|
|
|
filterModeAssisted: 0,
|
|
|
|
filterModeRaw: 1,
|
2014-02-28 06:07:25 +04:00
|
|
|
userFilter: false,
|
|
|
|
loginFilter: false,
|
|
|
|
groupFilter: false,
|
2014-10-10 15:30:03 +04:00
|
|
|
ajaxRequests: {},
|
2015-01-14 17:15:55 +03:00
|
|
|
lastTestSuccessful: true,
|
2013-09-27 20:30:59 +04:00
|
|
|
|
2014-10-10 15:30:03 +04:00
|
|
|
ajax: function(param, fnOnSuccess, fnOnError, reqID) {
|
2014-10-29 21:20:32 +03:00
|
|
|
if(!_.isUndefined(reqID)) {
|
2014-10-10 15:30:03 +04:00
|
|
|
if(LdapWizard.ajaxRequests.hasOwnProperty(reqID)) {
|
2014-10-24 20:26:48 +04:00
|
|
|
console.log('aborting ' + reqID);
|
|
|
|
console.log(param);
|
2014-10-10 15:30:03 +04:00
|
|
|
LdapWizard.ajaxRequests[reqID].abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var request = $.post(
|
2013-09-27 20:30:59 +04:00
|
|
|
OC.filePath('user_ldap','ajax','wizard.php'),
|
|
|
|
param,
|
|
|
|
function(result) {
|
2014-10-10 13:49:45 +04:00
|
|
|
if(result.status === 'success') {
|
2013-09-27 20:30:59 +04:00
|
|
|
fnOnSuccess(result);
|
|
|
|
} else {
|
|
|
|
fnOnError(result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2014-10-29 21:20:32 +03:00
|
|
|
if(!_.isUndefined(reqID)) {
|
2014-10-10 15:30:03 +04:00
|
|
|
LdapWizard.ajaxRequests[reqID] = request;
|
|
|
|
}
|
2014-10-29 01:04:03 +03:00
|
|
|
return request;
|
2013-09-27 20:30:59 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
applyChanges: function (result) {
|
2014-10-10 13:49:45 +04:00
|
|
|
for (var id in result.changes) {
|
2013-11-20 02:58:08 +04:00
|
|
|
LdapWizard.blacklistAdd(id);
|
2013-10-08 20:27:36 +04:00
|
|
|
if(id.indexOf('count') > 0) {
|
|
|
|
$('#'+id).text(result.changes[id]);
|
|
|
|
} else {
|
|
|
|
$('#'+id).val(result.changes[id]);
|
|
|
|
}
|
2013-09-27 20:30:59 +04:00
|
|
|
}
|
2013-10-10 21:37:12 +04:00
|
|
|
LdapWizard.functionalityCheck();
|
2013-10-17 22:57:19 +04:00
|
|
|
|
|
|
|
if($('#ldapSettings').tabs('option', 'active') == 0) {
|
|
|
|
LdapWizard.basicStatusCheck();
|
|
|
|
}
|
2013-09-27 20:30:59 +04:00
|
|
|
},
|
|
|
|
|
2014-10-15 14:41:53 +04:00
|
|
|
enableTabs: function() {
|
|
|
|
//do not use this function directly, use basicStatusCheck instead.
|
|
|
|
if(LdapWizard.saveProcesses === 0) {
|
|
|
|
$('.ldap_action_continue').removeAttr('disabled');
|
|
|
|
$('.ldap_action_back').removeAttr('disabled');
|
|
|
|
$('#ldapSettings').tabs('option', 'disabled', []);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
disableTabs: function() {
|
|
|
|
$('.ldap_action_continue').attr('disabled', 'disabled');
|
|
|
|
$('.ldap_action_back').attr('disabled', 'disabled');
|
|
|
|
$('#ldapSettings').tabs('option', 'disabled', [1, 2, 3, 4, 5]);
|
|
|
|
},
|
|
|
|
|
2013-10-17 20:33:58 +04:00
|
|
|
basicStatusCheck: function() {
|
2015-01-13 20:36:16 +03:00
|
|
|
//criteria to continue from the first tab
|
2013-10-17 20:33:58 +04:00
|
|
|
// - host, port, user filter, agent dn, password, base dn
|
2014-10-15 14:41:53 +04:00
|
|
|
var host = $('#ldap_host').val();
|
|
|
|
var port = $('#ldap_port').val();
|
|
|
|
var agent = $('#ldap_dn').val();
|
|
|
|
var pwd = $('#ldap_agent_password').val();
|
|
|
|
var base = $('#ldap_base').val();
|
2013-10-17 20:33:58 +04:00
|
|
|
|
2013-11-05 14:51:53 +04:00
|
|
|
if((host && port && base) && ((!agent && !pwd) || (agent && pwd))) {
|
2014-10-15 14:41:53 +04:00
|
|
|
LdapWizard.enableTabs();
|
2013-10-17 20:33:58 +04:00
|
|
|
} else {
|
2014-10-15 14:41:53 +04:00
|
|
|
LdapWizard.disableTabs();
|
2013-10-17 20:33:58 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-11-20 02:58:08 +04:00
|
|
|
|
|
|
|
blacklistAdd: function(id) {
|
2015-01-13 20:36:16 +03:00
|
|
|
var obj = $('#' + id);
|
2014-10-10 13:49:45 +04:00
|
|
|
if(!(obj[0].hasOwnProperty('multiple') && obj[0]['multiple'] === true)) {
|
2013-11-20 02:58:08 +04:00
|
|
|
//no need to blacklist multiselect
|
|
|
|
LdapWizard.saveBlacklist[id] = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
blacklistRemove: function(id) {
|
|
|
|
if(LdapWizard.saveBlacklist.hasOwnProperty(id)) {
|
|
|
|
delete LdapWizard.saveBlacklist[id];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
2013-09-30 01:53:14 +04:00
|
|
|
checkBaseDN: function() {
|
2015-01-13 20:36:16 +03:00
|
|
|
var host = $('#ldap_host').val();
|
|
|
|
var port = $('#ldap_port').val();
|
|
|
|
var user = $('#ldap_dn').val();
|
|
|
|
var pass = $('#ldap_agent_password').val();
|
2013-09-30 01:53:14 +04:00
|
|
|
|
2013-11-07 20:11:14 +04:00
|
|
|
//FIXME: determine base dn with anonymous access
|
2013-10-10 21:37:12 +04:00
|
|
|
if(host && port && user && pass) {
|
2015-01-13 20:36:16 +03:00
|
|
|
var param = 'action=guessBaseDN'+
|
2013-11-20 02:58:08 +04:00
|
|
|
'&ldap_serverconfig_chooser='+
|
|
|
|
encodeURIComponent($('#ldap_serverconfig_chooser').val());
|
2013-09-30 01:53:14 +04:00
|
|
|
|
2013-10-17 15:05:14 +04:00
|
|
|
LdapWizard.showSpinner('#ldap_base');
|
2013-11-11 22:27:38 +04:00
|
|
|
$('#ldap_base').prop('disabled', 'disabled');
|
2013-09-30 01:53:14 +04:00
|
|
|
LdapWizard.ajax(param,
|
|
|
|
function(result) {
|
|
|
|
LdapWizard.applyChanges(result);
|
2013-10-17 15:05:14 +04:00
|
|
|
LdapWizard.hideSpinner('#ldap_base');
|
2013-09-30 01:53:14 +04:00
|
|
|
if($('#ldap_base').val()) {
|
|
|
|
LdapWizard.hideInfoBox();
|
|
|
|
}
|
2013-11-11 22:27:38 +04:00
|
|
|
$('#ldap_base').prop('disabled', false);
|
2013-09-30 01:53:14 +04:00
|
|
|
},
|
|
|
|
function (result) {
|
2013-10-17 15:05:14 +04:00
|
|
|
LdapWizard.hideSpinner('#ldap_base');
|
2014-05-27 18:39:22 +04:00
|
|
|
LdapWizard.showInfoBox(t('user_ldap', 'Please specify a Base DN'));
|
|
|
|
LdapWizard.showInfoBox(t('user_ldap', 'Could not determine Base DN'));
|
2014-02-05 13:30:56 +04:00
|
|
|
$('#ldap_base').prop('disabled', false);
|
2014-10-10 15:30:03 +04:00
|
|
|
},
|
|
|
|
'guessBaseDN'
|
2013-09-30 01:53:14 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-09-27 20:30:59 +04:00
|
|
|
checkPort: function() {
|
2015-01-13 20:36:16 +03:00
|
|
|
var host = $('#ldap_host').val();
|
|
|
|
var port = $('#ldap_port').val();
|
2013-09-27 20:30:59 +04:00
|
|
|
|
2013-11-11 18:16:54 +04:00
|
|
|
if(host && !port) {
|
2015-01-13 20:36:16 +03:00
|
|
|
var param = 'action=guessPortAndTLS'+
|
2013-11-20 02:58:08 +04:00
|
|
|
'&ldap_serverconfig_chooser='+
|
|
|
|
encodeURIComponent($('#ldap_serverconfig_chooser').val());
|
2013-09-27 20:30:59 +04:00
|
|
|
|
2013-10-17 15:05:14 +04:00
|
|
|
LdapWizard.showSpinner('#ldap_port');
|
2013-11-11 18:16:54 +04:00
|
|
|
$('#ldap_port').prop('disabled', 'disabled');
|
2013-09-27 20:30:59 +04:00
|
|
|
LdapWizard.ajax(param,
|
|
|
|
function(result) {
|
|
|
|
LdapWizard.applyChanges(result);
|
2013-10-17 15:05:14 +04:00
|
|
|
LdapWizard.hideSpinner('#ldap_port');
|
2013-09-27 20:30:59 +04:00
|
|
|
if($('#ldap_port').val()) {
|
2013-10-10 21:37:12 +04:00
|
|
|
LdapWizard.checkBaseDN();
|
2013-11-11 18:16:54 +04:00
|
|
|
$('#ldap_port').prop('disabled', false);
|
2013-09-30 01:53:14 +04:00
|
|
|
LdapWizard.hideInfoBox();
|
2013-09-27 20:30:59 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
function (result) {
|
2013-10-17 15:05:14 +04:00
|
|
|
LdapWizard.hideSpinner('#ldap_port');
|
2013-11-11 18:16:54 +04:00
|
|
|
$('#ldap_port').prop('disabled', false);
|
2014-05-27 18:39:22 +04:00
|
|
|
LdapWizard.showInfoBox(t('user_ldap', 'Please specify the port'));
|
2014-10-10 15:30:03 +04:00
|
|
|
},
|
|
|
|
'guessPortAndTLS'
|
2013-09-27 20:30:59 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-10-17 20:33:58 +04:00
|
|
|
controlBack: function() {
|
2015-01-13 20:36:16 +03:00
|
|
|
var curTabIndex = $('#ldapSettings').tabs('option', 'active');
|
2013-10-17 20:33:58 +04:00
|
|
|
if(curTabIndex == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$('#ldapSettings').tabs('option', 'active', curTabIndex - 1);
|
2013-10-24 20:21:02 +04:00
|
|
|
LdapWizard.controlUpdate(curTabIndex - 1);
|
2013-10-17 20:33:58 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
controlContinue: function() {
|
2015-01-13 20:36:16 +03:00
|
|
|
var curTabIndex = $('#ldapSettings').tabs('option', 'active');
|
2013-10-17 20:33:58 +04:00
|
|
|
if(curTabIndex == 3) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$('#ldapSettings').tabs('option', 'active', 1 + curTabIndex);
|
2013-10-24 20:21:02 +04:00
|
|
|
LdapWizard.controlUpdate(curTabIndex + 1);
|
|
|
|
},
|
|
|
|
|
|
|
|
controlUpdate: function(nextTabIndex) {
|
|
|
|
if(nextTabIndex == 0) {
|
|
|
|
$('.ldap_action_back').addClass('invisible');
|
|
|
|
$('.ldap_action_continue').removeClass('invisible');
|
|
|
|
} else
|
|
|
|
if(nextTabIndex == 1) {
|
|
|
|
$('.ldap_action_back').removeClass('invisible');
|
|
|
|
$('.ldap_action_continue').removeClass('invisible');
|
|
|
|
} else
|
|
|
|
if(nextTabIndex == 2) {
|
|
|
|
$('.ldap_action_continue').removeClass('invisible');
|
|
|
|
$('.ldap_action_back').removeClass('invisible');
|
|
|
|
} else
|
|
|
|
if(nextTabIndex == 3) {
|
2013-10-17 20:33:58 +04:00
|
|
|
//now last tab
|
|
|
|
$('.ldap_action_back').removeClass('invisible');
|
2013-10-24 20:21:02 +04:00
|
|
|
$('.ldap_action_continue').addClass('invisible');
|
2013-10-17 20:33:58 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2014-10-10 15:41:32 +04:00
|
|
|
_countThings: function(method, spinnerID, doneCallback) {
|
2014-10-24 20:26:48 +04:00
|
|
|
var param = 'action='+method+
|
2013-11-20 02:58:08 +04:00
|
|
|
'&ldap_serverconfig_chooser='+
|
|
|
|
encodeURIComponent($('#ldap_serverconfig_chooser').val());
|
2013-10-08 20:27:36 +04:00
|
|
|
|
2014-10-08 15:06:18 +04:00
|
|
|
LdapWizard.showSpinner(spinnerID);
|
2015-02-05 18:25:22 +03:00
|
|
|
LdapWizard.ajax(param,
|
2013-10-08 20:27:36 +04:00
|
|
|
function(result) {
|
|
|
|
LdapWizard.applyChanges(result);
|
2014-10-08 15:06:18 +04:00
|
|
|
LdapWizard.hideSpinner(spinnerID);
|
2014-10-29 21:20:32 +03:00
|
|
|
if(!_.isUndefined(doneCallback)) {
|
2014-10-10 15:41:32 +04:00
|
|
|
doneCallback(method);
|
|
|
|
}
|
2013-10-08 20:27:36 +04:00
|
|
|
},
|
|
|
|
function (result) {
|
2015-02-05 18:25:22 +03:00
|
|
|
OC.Notification.showTemporary('Counting the entries failed with: ' + result.message);
|
2014-10-08 15:06:18 +04:00
|
|
|
LdapWizard.hideSpinner(spinnerID);
|
2014-10-29 21:20:32 +03:00
|
|
|
if(!_.isUndefined(doneCallback)) {
|
2014-10-10 15:41:32 +04:00
|
|
|
doneCallback(method);
|
|
|
|
}
|
2014-10-10 15:30:03 +04:00
|
|
|
},
|
|
|
|
method
|
2013-10-08 20:27:36 +04:00
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2014-10-10 15:41:32 +04:00
|
|
|
countGroups: function(doneCallback) {
|
2015-02-05 18:25:22 +03:00
|
|
|
var groupFilter = $('#ldap_group_filter').val();
|
|
|
|
if(!_.isEmpty(groupFilter)) {
|
|
|
|
LdapWizard._countThings('countGroups', '#ldap_group_count', doneCallback);
|
|
|
|
}
|
2013-10-10 00:00:36 +04:00
|
|
|
},
|
|
|
|
|
2014-10-10 15:41:32 +04:00
|
|
|
countUsers: function(doneCallback) {
|
2015-02-05 18:25:22 +03:00
|
|
|
var userFilter = $('#ldap_userlist_filter').val();
|
|
|
|
if(!_.isEmpty(userFilter)) {
|
|
|
|
LdapWizard._countThings('countUsers', '#ldap_user_count', doneCallback);
|
|
|
|
}
|
2014-10-29 01:04:03 +03:00
|
|
|
},
|
|
|
|
|
2014-10-29 13:05:02 +03:00
|
|
|
/**
|
|
|
|
* called after detectors have run
|
|
|
|
* @callback runDetectorsCallback
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* runs detectors to determine appropriate attributes, e.g. displayName
|
|
|
|
* @param {string} type either "User" or "Group"
|
|
|
|
* @param {runDetectorsCallback} triggered after all detectors have completed
|
|
|
|
*/
|
2014-10-29 01:04:03 +03:00
|
|
|
runDetectors: function(type, callback) {
|
|
|
|
if(type === 'Group') {
|
|
|
|
$.when(LdapWizard.detectGroupMemberAssoc())
|
|
|
|
.then(callback, callback);
|
|
|
|
if( LdapWizard.admin.isExperienced
|
|
|
|
&& !(LdapWizard.detectorsRunInXPMode & LdapWizard.groupDetectors)) {
|
|
|
|
LdapWizard.detectorsRunInXPMode += LdapWizard.groupDetectors;
|
|
|
|
}
|
|
|
|
} else if(type === 'User') {
|
|
|
|
var req1 = LdapWizard.detectUserDisplayNameAttribute();
|
|
|
|
var req2 = LdapWizard.detectEmailAttribute();
|
|
|
|
$.when(req1, req2)
|
|
|
|
.then(callback, callback);
|
|
|
|
if( LdapWizard.admin.isExperienced
|
|
|
|
&& !(LdapWizard.detectorsRunInXPMode & LdapWizard.userDetectors)) {
|
|
|
|
LdapWizard.detectorsRunInXPMode += LdapWizard.userDetectors;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2014-10-29 13:05:02 +03:00
|
|
|
/**
|
|
|
|
* runs detector to find out a fitting user display name attribute
|
|
|
|
*/
|
2014-10-29 01:04:03 +03:00
|
|
|
detectUserDisplayNameAttribute: function() {
|
2014-10-24 20:26:48 +04:00
|
|
|
var param = 'action=detectUserDisplayNameAttribute' +
|
|
|
|
'&ldap_serverconfig_chooser='+
|
|
|
|
encodeURIComponent($('#ldap_serverconfig_chooser').val());
|
|
|
|
|
2014-10-29 01:04:03 +03:00
|
|
|
//runs in the background, no callbacks necessary
|
|
|
|
return LdapWizard.ajax(param, LdapWizard.applyChanges, function(){}, 'detectUserDisplayNameAttribute');
|
2013-10-10 00:00:36 +04:00
|
|
|
},
|
|
|
|
|
2014-06-25 21:38:54 +04:00
|
|
|
detectEmailAttribute: function() {
|
2014-10-29 01:04:03 +03:00
|
|
|
var param = 'action=detectEmailAttribute'+
|
2014-06-25 21:38:54 +04:00
|
|
|
'&ldap_serverconfig_chooser='+
|
|
|
|
encodeURIComponent($('#ldap_serverconfig_chooser').val());
|
|
|
|
//runs in the background, no callbacks necessary
|
2014-10-29 01:04:03 +03:00
|
|
|
return LdapWizard.ajax(param, LdapWizard.applyChanges, function(){}, 'detectEmailAttribute');
|
2014-06-25 21:38:54 +04:00
|
|
|
},
|
|
|
|
|
2013-10-10 03:21:05 +04:00
|
|
|
detectGroupMemberAssoc: function() {
|
|
|
|
param = 'action=determineGroupMemberAssoc'+
|
2013-11-20 02:58:08 +04:00
|
|
|
'&ldap_serverconfig_chooser='+
|
|
|
|
encodeURIComponent($('#ldap_serverconfig_chooser').val());
|
2013-10-10 03:21:05 +04:00
|
|
|
|
2014-10-29 01:04:03 +03:00
|
|
|
return LdapWizard.ajax(param,
|
2013-10-10 03:21:05 +04:00
|
|
|
function(result) {
|
|
|
|
//pure background story
|
|
|
|
},
|
|
|
|
function (result) {
|
|
|
|
// error handling
|
2014-10-10 15:30:03 +04:00
|
|
|
},
|
|
|
|
'determineGroupMemberAssoc'
|
2013-10-10 03:21:05 +04:00
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2013-10-09 01:47:57 +04:00
|
|
|
findAttributes: function() {
|
|
|
|
param = 'action=determineAttributes'+
|
2013-11-20 02:58:08 +04:00
|
|
|
'&ldap_serverconfig_chooser='+
|
|
|
|
encodeURIComponent($('#ldap_serverconfig_chooser').val());
|
2013-10-09 01:47:57 +04:00
|
|
|
|
2013-10-17 15:05:14 +04:00
|
|
|
LdapWizard.showSpinner('#ldap_loginfilter_attributes');
|
2013-10-09 01:47:57 +04:00
|
|
|
LdapWizard.ajax(param,
|
|
|
|
function(result) {
|
|
|
|
$('#ldap_loginfilter_attributes').find('option').remove();
|
2014-10-10 13:49:45 +04:00
|
|
|
for (var i in result.options['ldap_loginfilter_attributes']) {
|
2013-10-09 01:47:57 +04:00
|
|
|
//FIXME: move HTML into template
|
2014-10-29 01:04:03 +03:00
|
|
|
var attr = result.options['ldap_loginfilter_attributes'][i];
|
2013-10-09 01:47:57 +04:00
|
|
|
$('#ldap_loginfilter_attributes').append(
|
|
|
|
"<option value='"+attr+"'>"+attr+"</option>");
|
|
|
|
}
|
2013-10-17 15:05:14 +04:00
|
|
|
LdapWizard.hideSpinner('#ldap_loginfilter_attributes');
|
2013-10-09 01:47:57 +04:00
|
|
|
LdapWizard.applyChanges(result);
|
|
|
|
$('#ldap_loginfilter_attributes').multiselect('refresh');
|
2013-11-20 02:58:08 +04:00
|
|
|
if($('#rawLoginFilterContainer').hasClass('invisible')) {
|
|
|
|
$('#ldap_loginfilter_attributes').multiselect('enable');
|
|
|
|
}
|
2013-12-03 16:27:45 +04:00
|
|
|
LdapWizard.postInitLoginFilter();
|
2013-10-09 01:47:57 +04:00
|
|
|
},
|
|
|
|
function (result) {
|
|
|
|
//deactivate if no attributes found
|
|
|
|
$('#ldap_loginfilter_attributes').multiselect(
|
|
|
|
{noneSelectedText : 'No attributes found'});
|
|
|
|
$('#ldap_loginfilter_attributes').multiselect('disable');
|
2013-10-17 15:05:14 +04:00
|
|
|
LdapWizard.hideSpinner('#ldap_loginfilter_attributes');
|
2014-10-10 15:30:03 +04:00
|
|
|
},
|
|
|
|
'determineAttributes'
|
2013-10-09 01:47:57 +04:00
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2013-10-10 00:00:36 +04:00
|
|
|
findAvailableGroups: function(multisel, type) {
|
2014-10-10 15:30:03 +04:00
|
|
|
if(type !== 'Users' && type !== 'Groups') {
|
2013-10-10 00:00:36 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-11-20 02:58:08 +04:00
|
|
|
param = 'action=determineGroupsFor'+encodeURIComponent(type)+
|
|
|
|
'&ldap_serverconfig_chooser='+
|
|
|
|
encodeURIComponent($('#ldap_serverconfig_chooser').val());
|
2013-10-04 20:11:44 +04:00
|
|
|
|
2013-10-17 15:05:14 +04:00
|
|
|
LdapWizard.showSpinner('#'+multisel);
|
2013-10-04 20:11:44 +04:00
|
|
|
LdapWizard.ajax(param,
|
|
|
|
function(result) {
|
2013-10-10 00:00:36 +04:00
|
|
|
$('#'+multisel).find('option').remove();
|
2014-10-10 13:49:45 +04:00
|
|
|
for (var i in result.options[multisel]) {
|
2013-10-04 20:11:44 +04:00
|
|
|
//FIXME: move HTML into template
|
2013-10-10 00:00:36 +04:00
|
|
|
objc = result.options[multisel][i];
|
|
|
|
$('#'+multisel).append("<option value='"+objc+"'>"+objc+"</option>");
|
2013-10-04 20:11:44 +04:00
|
|
|
}
|
2013-10-17 15:05:14 +04:00
|
|
|
LdapWizard.hideSpinner('#'+multisel);
|
2013-10-04 20:11:44 +04:00
|
|
|
LdapWizard.applyChanges(result);
|
2013-10-10 00:00:36 +04:00
|
|
|
$('#'+multisel).multiselect('refresh');
|
2013-11-20 02:58:08 +04:00
|
|
|
part = type.slice(0, -1);
|
|
|
|
if($('#raw' + part + 'FilterContainer').hasClass('invisible')) {
|
|
|
|
//enable only when raw filter editing is not turned on
|
|
|
|
$('#'+multisel).multiselect('enable');
|
|
|
|
}
|
2013-12-03 23:45:05 +04:00
|
|
|
if(type === 'Users') {
|
2013-12-03 16:27:45 +04:00
|
|
|
//required for initial save
|
|
|
|
filter = $('#ldap_userlist_filter').val();
|
|
|
|
if(!filter) {
|
|
|
|
LdapWizard.saveMultiSelect(multisel,
|
|
|
|
$('#'+multisel).multiselect("getChecked"));
|
|
|
|
}
|
|
|
|
LdapWizard.userFilterAvailableGroupsHasRun = true;
|
|
|
|
LdapWizard.postInitUserFilter();
|
|
|
|
}
|
2013-10-04 20:11:44 +04:00
|
|
|
},
|
|
|
|
function (result) {
|
2013-10-17 15:05:14 +04:00
|
|
|
LdapWizard.hideSpinner('#'+multisel);
|
2013-10-10 00:00:36 +04:00
|
|
|
$('#'+multisel).multiselect('disable');
|
2014-10-10 13:49:45 +04:00
|
|
|
if(type === 'Users') {
|
2013-12-03 16:27:45 +04:00
|
|
|
LdapWizard.userFilterAvailableGroupsHasRun = true;
|
|
|
|
LdapWizard.postInitUserFilter();
|
|
|
|
}
|
2014-10-10 15:30:03 +04:00
|
|
|
},
|
|
|
|
'findAvailableGroupsFor' + type
|
2013-10-04 20:11:44 +04:00
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2013-10-10 00:00:36 +04:00
|
|
|
findObjectClasses: function(multisel, type) {
|
2014-10-10 13:49:45 +04:00
|
|
|
if(type !== 'User' && type !== 'Group') {
|
2013-10-10 00:00:36 +04:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-13 20:36:16 +03:00
|
|
|
var param = 'action=determine'+encodeURIComponent(type)+'ObjectClasses'+
|
2013-11-20 02:58:08 +04:00
|
|
|
'&ldap_serverconfig_chooser='+
|
|
|
|
encodeURIComponent($('#ldap_serverconfig_chooser').val());
|
2013-10-04 18:33:37 +04:00
|
|
|
|
2013-10-17 15:05:14 +04:00
|
|
|
LdapWizard.showSpinner('#'+multisel);
|
2013-10-04 18:33:37 +04:00
|
|
|
LdapWizard.ajax(param,
|
|
|
|
function(result) {
|
2013-10-10 00:00:36 +04:00
|
|
|
$('#'+multisel).find('option').remove();
|
2014-10-10 13:49:45 +04:00
|
|
|
for (var i in result.options[multisel]) {
|
2013-10-04 18:33:37 +04:00
|
|
|
//FIXME: move HTML into template
|
2013-10-10 00:00:36 +04:00
|
|
|
objc = result.options[multisel][i];
|
|
|
|
$('#'+multisel).append("<option value='"+objc+"'>"+objc+"</option>");
|
2013-10-04 18:33:37 +04:00
|
|
|
}
|
2013-10-17 15:05:14 +04:00
|
|
|
LdapWizard.hideSpinner('#'+multisel);
|
2013-10-04 18:33:37 +04:00
|
|
|
LdapWizard.applyChanges(result);
|
2013-10-10 00:00:36 +04:00
|
|
|
$('#'+multisel).multiselect('refresh');
|
2013-12-03 23:45:05 +04:00
|
|
|
if(type === 'User') {
|
2013-12-03 16:27:45 +04:00
|
|
|
//required for initial save
|
|
|
|
filter = $('#ldap_userlist_filter').val();
|
|
|
|
if(!filter) {
|
|
|
|
LdapWizard.saveMultiSelect(multisel,
|
|
|
|
$('#'+multisel).multiselect("getChecked"));
|
|
|
|
}
|
|
|
|
LdapWizard.userFilterObjectClassesHasRun = true;
|
|
|
|
LdapWizard.postInitUserFilter();
|
|
|
|
}
|
2013-10-04 18:33:37 +04:00
|
|
|
},
|
|
|
|
function (result) {
|
2013-10-17 15:05:14 +04:00
|
|
|
LdapWizard.hideSpinner('#'+multisel);
|
2014-10-10 13:49:45 +04:00
|
|
|
if(type === 'User') {
|
2013-12-03 16:27:45 +04:00
|
|
|
LdapWizard.userFilterObjectClassesHasRun = true;
|
|
|
|
LdapWizard.postInitUserFilter();
|
|
|
|
}
|
2013-10-04 18:33:37 +04:00
|
|
|
//TODO: error handling
|
2014-10-10 15:30:03 +04:00
|
|
|
},
|
|
|
|
'determine' + type + 'ObjectClasses'
|
2013-10-04 18:33:37 +04:00
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2013-10-10 21:37:12 +04:00
|
|
|
functionalityCheck: function() {
|
2014-04-23 12:08:14 +04:00
|
|
|
//criteria to enable the connection:
|
2013-11-07 20:11:14 +04:00
|
|
|
// - host, port, basedn, user filter, login filter
|
2015-01-13 20:36:16 +03:00
|
|
|
var host = $('#ldap_host').val();
|
|
|
|
var port = $('#ldap_port').val();
|
|
|
|
var base = $('#ldap_base').val();
|
|
|
|
var userfilter = $('#ldap_userlist_filter').val();
|
|
|
|
var loginfilter = $('#ldap_login_filter').val();
|
2013-10-10 21:37:12 +04:00
|
|
|
|
|
|
|
//FIXME: activates a manually deactivated configuration.
|
2013-12-04 17:01:31 +04:00
|
|
|
if(host && port && base && userfilter && loginfilter) {
|
2013-11-07 20:11:14 +04:00
|
|
|
LdapWizard.updateStatusIndicator(true);
|
2013-10-10 21:37:12 +04:00
|
|
|
if($('#ldap_configuration_active').is(':checked')) {
|
|
|
|
return;
|
|
|
|
}
|
2013-12-04 17:01:31 +04:00
|
|
|
if(!LdapWizard.isConfigurationActiveControlLocked) {
|
|
|
|
//avoids a manually deactivated connection will be activated
|
|
|
|
//upon opening the admin page
|
|
|
|
$('#ldap_configuration_active').prop('checked', true);
|
|
|
|
LdapWizard.save($('#ldap_configuration_active')[0]);
|
|
|
|
}
|
2013-10-10 21:37:12 +04:00
|
|
|
} else {
|
|
|
|
if($('#ldap_configuration_active').is(':checked')) {
|
|
|
|
$('#ldap_configuration_active').prop('checked', false);
|
|
|
|
LdapWizard.save($('#ldap_configuration_active')[0]);
|
|
|
|
}
|
2013-11-07 20:11:14 +04:00
|
|
|
LdapWizard.updateStatusIndicator(false);
|
2013-10-10 21:37:12 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-09-30 01:53:14 +04:00
|
|
|
hideInfoBox: function() {
|
|
|
|
if(LdapWizard.checkInfoShown) {
|
2013-10-04 18:33:37 +04:00
|
|
|
$('#ldapWizard1 .ldapWizardInfo').addClass('invisible');
|
2013-09-30 01:53:14 +04:00
|
|
|
LdapWizard.checkInfoShown = false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-10-17 15:05:14 +04:00
|
|
|
hideSpinner: function(id) {
|
|
|
|
$(id+' + .wizSpinner').remove();
|
|
|
|
$(id + " + button").css('display', 'inline');
|
|
|
|
},
|
|
|
|
|
2013-12-04 17:01:31 +04:00
|
|
|
isConfigurationActiveControlLocked: true,
|
2014-10-29 01:04:03 +03:00
|
|
|
detectorsRunInXPMode: 0,
|
|
|
|
userDetectors: 1,
|
|
|
|
groupDetectors: 2,
|
2013-12-04 17:01:31 +04:00
|
|
|
|
2013-09-27 20:30:59 +04:00
|
|
|
init: function() {
|
2014-10-29 01:04:03 +03:00
|
|
|
LdapWizard.detectorsRunInXPMode = 0;
|
2014-10-08 13:38:39 +04:00
|
|
|
LdapWizard.instantiateFilters();
|
2014-10-08 15:06:18 +04:00
|
|
|
LdapWizard.admin.setExperienced($('#ldap_experienced_admin').is(':checked'));
|
2015-01-14 17:15:55 +03:00
|
|
|
LdapWizard.lastTestSuccessful = true;
|
2013-10-17 20:33:58 +04:00
|
|
|
LdapWizard.basicStatusCheck();
|
2013-11-07 20:11:14 +04:00
|
|
|
LdapWizard.functionalityCheck();
|
2013-12-04 17:01:31 +04:00
|
|
|
LdapWizard.isConfigurationActiveControlLocked = false;
|
2013-10-04 18:33:37 +04:00
|
|
|
},
|
|
|
|
|
2013-10-10 00:00:36 +04:00
|
|
|
initGroupFilter: function() {
|
2014-10-08 13:38:39 +04:00
|
|
|
LdapWizard.groupFilter.activate();
|
2013-10-10 00:00:36 +04:00
|
|
|
},
|
|
|
|
|
2013-12-03 16:27:45 +04:00
|
|
|
/** init login filter tab section **/
|
|
|
|
|
2013-10-09 01:47:57 +04:00
|
|
|
initLoginFilter: function() {
|
2014-10-08 13:38:39 +04:00
|
|
|
LdapWizard.loginFilter.activate();
|
2013-10-09 01:47:57 +04:00
|
|
|
},
|
|
|
|
|
2013-12-03 16:27:45 +04:00
|
|
|
postInitLoginFilter: function() {
|
2013-12-03 23:50:46 +04:00
|
|
|
if($('#rawLoginFilterContainer').hasClass('invisible')) {
|
2014-02-28 06:07:25 +04:00
|
|
|
LdapWizard.loginFilter.compose();
|
2013-12-03 23:50:46 +04:00
|
|
|
}
|
2013-12-03 16:27:45 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
/** end of init user filter tab section **/
|
|
|
|
|
2013-10-04 20:11:44 +04:00
|
|
|
initMultiSelect: function(object, id, caption) {
|
|
|
|
object.multiselect({
|
|
|
|
header: false,
|
|
|
|
selectedList: 9,
|
|
|
|
noneSelectedText: caption,
|
|
|
|
click: function(event, ui) {
|
|
|
|
LdapWizard.saveMultiSelect(id,
|
2014-04-23 12:08:14 +04:00
|
|
|
$('#'+id).multiselect("getChecked"));
|
2013-10-04 20:11:44 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2014-10-10 15:41:32 +04:00
|
|
|
hideTestSpinner:function (countMethod) {
|
|
|
|
var selector;
|
|
|
|
if(countMethod === 'countUsers') {
|
|
|
|
selector = '#rawUserFilterContainer .ldapGetEntryCount';
|
|
|
|
} else {
|
|
|
|
selector = '#rawGroupFilterContainer .ldapGetEntryCount';
|
|
|
|
}
|
|
|
|
LdapWizard.hideSpinner(selector);
|
|
|
|
},
|
|
|
|
|
2013-12-03 16:27:45 +04:00
|
|
|
/** init user filter tab section **/
|
|
|
|
|
2014-10-08 13:38:39 +04:00
|
|
|
instantiateFilters: function() {
|
|
|
|
delete LdapWizard.userFilter;
|
|
|
|
LdapWizard.userFilter = new LdapFilter('User', function(mode) {
|
2014-11-21 18:23:56 +03:00
|
|
|
if( !LdapWizard.admin.isExperienced()
|
|
|
|
|| mode === LdapWizard.filterModeAssisted) {
|
2014-11-20 20:31:24 +03:00
|
|
|
LdapWizard.userFilter.updateCount();
|
2014-10-09 19:17:50 +04:00
|
|
|
}
|
2014-10-08 13:38:39 +04:00
|
|
|
LdapWizard.userFilter.findFeatures();
|
|
|
|
});
|
2014-10-08 15:06:18 +04:00
|
|
|
$('#rawUserFilterContainer .ldapGetEntryCount').click(function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
$('#ldap_user_count').text('');
|
2014-10-10 15:41:32 +04:00
|
|
|
LdapWizard.showSpinner('#rawUserFilterContainer .ldapGetEntryCount');
|
|
|
|
LdapWizard.userFilter.updateCount(LdapWizard.hideTestSpinner);
|
2014-10-08 15:06:18 +04:00
|
|
|
$('#ldap_user_count').removeClass('hidden');
|
|
|
|
});
|
2014-10-08 13:38:39 +04:00
|
|
|
|
|
|
|
delete LdapWizard.loginFilter;
|
|
|
|
LdapWizard.loginFilter = new LdapFilter('Login', function(mode) {
|
|
|
|
LdapWizard.loginFilter.findFeatures();
|
|
|
|
});
|
|
|
|
|
|
|
|
delete LdapWizard.groupFilter;
|
|
|
|
LdapWizard.groupFilter = new LdapFilter('Group', function(mode) {
|
2014-11-21 18:23:56 +03:00
|
|
|
if( !LdapWizard.admin.isExperienced()
|
|
|
|
|| mode === LdapWizard.filterModeAssisted) {
|
2014-10-09 19:17:50 +04:00
|
|
|
LdapWizard.groupFilter.updateCount();
|
|
|
|
}
|
2014-10-08 13:38:39 +04:00
|
|
|
LdapWizard.groupFilter.findFeatures();
|
|
|
|
});
|
2014-10-08 15:06:18 +04:00
|
|
|
$('#rawGroupFilterContainer .ldapGetEntryCount').click(function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
$('#ldap_group_count').text('');
|
2014-10-10 15:41:32 +04:00
|
|
|
LdapWizard.showSpinner('#rawGroupFilterContainer .ldapGetEntryCount');
|
|
|
|
LdapWizard.groupFilter.updateCount(LdapWizard.hideTestSpinner);
|
2014-10-08 15:06:18 +04:00
|
|
|
$('#ldap_group_count').removeClass('hidden');
|
|
|
|
});
|
2014-10-08 13:38:39 +04:00
|
|
|
},
|
|
|
|
|
2013-12-03 16:27:45 +04:00
|
|
|
userFilterObjectClassesHasRun: false,
|
|
|
|
userFilterAvailableGroupsHasRun: false,
|
|
|
|
|
2013-10-04 18:33:37 +04:00
|
|
|
initUserFilter: function() {
|
2013-12-03 16:27:45 +04:00
|
|
|
LdapWizard.userFilterObjectClassesHasRun = false;
|
|
|
|
LdapWizard.userFilterAvailableGroupsHasRun = false;
|
2014-10-08 13:38:39 +04:00
|
|
|
LdapWizard.userFilter.activate();
|
2013-10-04 18:33:37 +04:00
|
|
|
},
|
|
|
|
|
2013-12-03 16:27:45 +04:00
|
|
|
postInitUserFilter: function() {
|
2014-04-23 12:08:14 +04:00
|
|
|
if(LdapWizard.userFilterObjectClassesHasRun &&
|
|
|
|
LdapWizard.userFilterAvailableGroupsHasRun) {
|
2014-10-29 01:04:03 +03:00
|
|
|
LdapWizard.userFilter.compose();
|
2013-12-03 16:27:45 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/** end of init user filter tab section **/
|
|
|
|
|
2013-10-04 18:33:37 +04:00
|
|
|
onTabChange: function(event, ui) {
|
2014-10-15 14:51:46 +04:00
|
|
|
if(LdapWizard.saveProcesses > 0) {
|
|
|
|
//do not allow to switch tabs as long as a save process is active
|
|
|
|
return false;
|
|
|
|
}
|
2014-10-29 01:04:03 +03:00
|
|
|
var newTabIndex = 0;
|
2013-10-04 18:33:37 +04:00
|
|
|
if(ui.newTab[0].id === '#ldapWizard2') {
|
|
|
|
LdapWizard.initUserFilter();
|
2013-10-24 20:21:02 +04:00
|
|
|
newTabIndex = 1;
|
2013-10-09 01:47:57 +04:00
|
|
|
} else if(ui.newTab[0].id === '#ldapWizard3') {
|
|
|
|
LdapWizard.initLoginFilter();
|
2013-10-24 20:21:02 +04:00
|
|
|
newTabIndex = 2;
|
2013-10-10 00:00:36 +04:00
|
|
|
} else if(ui.newTab[0].id === '#ldapWizard4') {
|
|
|
|
LdapWizard.initGroupFilter();
|
2013-10-24 20:21:02 +04:00
|
|
|
newTabIndex = 3;
|
|
|
|
}
|
|
|
|
|
2014-10-29 01:04:03 +03:00
|
|
|
var curTabIndex = $('#ldapSettings').tabs('option', 'active');
|
2013-10-24 20:21:02 +04:00
|
|
|
if(curTabIndex >= 0 && curTabIndex <= 3) {
|
|
|
|
LdapWizard.controlUpdate(newTabIndex);
|
2014-10-29 01:04:03 +03:00
|
|
|
//run detectors in XP mode, when "Test Filter" button has not been
|
|
|
|
//clicked in order to make sure that email, displayname, member-
|
|
|
|
//group association attributes are properly set.
|
|
|
|
if( curTabIndex === 1
|
|
|
|
&& LdapWizard.admin.isExperienced
|
|
|
|
&& !(LdapWizard.detecorsRunInXPMode & LdapWizard.userDetectors)
|
|
|
|
) {
|
|
|
|
LdapWizard.runDetectors('User', function(){});
|
|
|
|
} else if( curTabIndex === 3
|
|
|
|
&& LdapWizard.admin.isExperienced
|
|
|
|
&& !(LdapWizard.detecorsRunInXPMode & LdapWizard.groupDetectors)
|
|
|
|
) {
|
|
|
|
LdapWizard.runDetectors('Group', function(){});
|
|
|
|
}
|
2013-09-27 20:30:59 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-01-14 17:15:55 +03:00
|
|
|
/**
|
|
|
|
* allows UserFilter, LoginFilter and GroupFilter to lookup objectClasses
|
|
|
|
* and similar again. This should be called after essential changes, e.g.
|
|
|
|
* Host or BaseDN changes, or positive functionality check
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
allowFilterFeatureSearch: function () {
|
|
|
|
LdapWizard.userFilter.reAllowFeatureLookup();
|
|
|
|
LdapWizard.loginFilter.reAllowFeatureLookup();
|
|
|
|
LdapWizard.groupFilter.reAllowFeatureLookup();
|
|
|
|
},
|
|
|
|
|
|
|
|
processChanges: function (triggerObj) {
|
2013-11-11 18:16:54 +04:00
|
|
|
LdapWizard.hideInfoBox();
|
2013-11-11 22:27:38 +04:00
|
|
|
|
2014-10-10 13:49:45 +04:00
|
|
|
if(triggerObj.id === 'ldap_host'
|
|
|
|
|| triggerObj.id === 'ldap_port'
|
|
|
|
|| triggerObj.id === 'ldap_dn'
|
|
|
|
|| triggerObj.id === 'ldap_agent_password') {
|
2013-09-30 01:53:14 +04:00
|
|
|
LdapWizard.checkPort();
|
2013-10-10 21:37:12 +04:00
|
|
|
if($('#ldap_port').val()) {
|
|
|
|
//if Port is already set, check BaseDN
|
|
|
|
LdapWizard.checkBaseDN();
|
2015-01-14 17:15:55 +03:00
|
|
|
LdapWizard.allowFilterFeatureSearch();
|
2013-10-10 21:37:12 +04:00
|
|
|
}
|
2013-09-30 01:53:14 +04:00
|
|
|
}
|
2013-10-08 20:27:36 +04:00
|
|
|
|
2014-10-10 13:49:45 +04:00
|
|
|
if(triggerObj.id === 'ldap_loginfilter_username'
|
|
|
|
|| triggerObj.id === 'ldap_loginfilter_email') {
|
2014-02-28 06:07:25 +04:00
|
|
|
LdapWizard.loginFilter.compose();
|
2014-11-21 18:23:56 +03:00
|
|
|
} else if (!LdapWizard.admin.isExperienced()) {
|
|
|
|
if(triggerObj.id === 'ldap_userlist_filter') {
|
|
|
|
LdapWizard.userFilter.updateCount();
|
|
|
|
} else if (triggerObj.id === 'ldap_group_filter') {
|
|
|
|
LdapWizard.groupFilter.updateCount();
|
|
|
|
}
|
2013-10-09 01:47:57 +04:00
|
|
|
}
|
2013-10-17 20:33:58 +04:00
|
|
|
|
|
|
|
if($('#ldapSettings').tabs('option', 'active') == 0) {
|
|
|
|
LdapWizard.basicStatusCheck();
|
2013-11-07 20:11:14 +04:00
|
|
|
LdapWizard.functionalityCheck();
|
2013-10-17 20:33:58 +04:00
|
|
|
}
|
2013-09-30 01:53:14 +04:00
|
|
|
},
|
|
|
|
|
2013-09-27 20:30:59 +04:00
|
|
|
save: function(inputObj) {
|
2013-11-20 02:58:08 +04:00
|
|
|
if(LdapWizard.blacklistRemove(inputObj.id)) {
|
2013-09-30 01:53:14 +04:00
|
|
|
return;
|
|
|
|
}
|
2013-10-09 01:47:57 +04:00
|
|
|
if($(inputObj).is('input[type=checkbox]')
|
|
|
|
&& !$(inputObj).is(':checked')) {
|
|
|
|
val = 0;
|
|
|
|
} else {
|
|
|
|
val = $(inputObj).val();
|
|
|
|
}
|
|
|
|
LdapWizard._save(inputObj, val);
|
2013-10-04 18:33:37 +04:00
|
|
|
},
|
|
|
|
|
2015-01-14 19:31:20 +03:00
|
|
|
/**
|
|
|
|
* updates user or group count on multiSelect close. Resets the event
|
|
|
|
* function subsequently.
|
|
|
|
*
|
|
|
|
* @param {LdapFilter} filter
|
|
|
|
* @param {Object} $multiSelectObj
|
|
|
|
*/
|
|
|
|
onMultiSelectClose: function(filter, $multiSelectObj) {
|
|
|
|
filter.updateCount();
|
|
|
|
$multiSelectObj.multiselect({close: function(){}});
|
|
|
|
},
|
|
|
|
|
2013-10-04 18:33:37 +04:00
|
|
|
saveMultiSelect: function(originalObj, resultObj) {
|
2015-01-14 19:31:20 +03:00
|
|
|
var values = '';
|
|
|
|
for(var i = 0; i < resultObj.length; i++) {
|
2013-10-04 18:33:37 +04:00
|
|
|
values = values + "\n" + resultObj[i].value;
|
|
|
|
}
|
|
|
|
LdapWizard._save($('#'+originalObj)[0], $.trim(values));
|
2015-01-14 19:31:20 +03:00
|
|
|
var $multiSelectObj = $('#'+originalObj);
|
|
|
|
var updateCount = !$multiSelectObj.multiselect("isOpen");
|
|
|
|
var applyUpdateOnCloseToFilter;
|
2014-10-08 18:20:52 +04:00
|
|
|
if(originalObj === 'ldap_userfilter_objectclass'
|
|
|
|
|| originalObj === 'ldap_userfilter_groups') {
|
2015-01-14 19:31:20 +03:00
|
|
|
LdapWizard.userFilter.compose(updateCount);
|
|
|
|
if(!updateCount) {
|
|
|
|
applyUpdateOnCloseToFilter = LdapWizard.userFilter;
|
|
|
|
}
|
2013-10-10 21:37:12 +04:00
|
|
|
//when user filter is changed afterwards, login filter needs to
|
|
|
|
//be adjusted, too
|
2014-06-25 21:38:54 +04:00
|
|
|
if(!LdapWizard.loginFilter) {
|
|
|
|
LdapWizard.initLoginFilter();
|
|
|
|
}
|
2014-02-28 06:07:25 +04:00
|
|
|
LdapWizard.loginFilter.compose();
|
2014-10-10 13:49:45 +04:00
|
|
|
} else if(originalObj === 'ldap_loginfilter_attributes') {
|
2014-02-28 06:07:25 +04:00
|
|
|
LdapWizard.loginFilter.compose();
|
2014-10-10 13:49:45 +04:00
|
|
|
} else if(originalObj === 'ldap_groupfilter_objectclass'
|
|
|
|
|| originalObj === 'ldap_groupfilter_groups') {
|
2015-01-14 19:31:20 +03:00
|
|
|
LdapWizard.groupFilter.compose(updateCount);
|
|
|
|
if(!updateCount) {
|
|
|
|
applyUpdateOnCloseToFilter = LdapWizard.groupFilter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(applyUpdateOnCloseToFilter instanceof LdapFilter) {
|
|
|
|
$multiSelectObj.multiselect({
|
|
|
|
close: function () {
|
|
|
|
LdapWizard.onMultiSelectClose(
|
|
|
|
applyUpdateOnCloseToFilter, $multiSelectObj);
|
|
|
|
}
|
|
|
|
});
|
2013-10-08 20:27:36 +04:00
|
|
|
}
|
2013-10-04 18:33:37 +04:00
|
|
|
},
|
|
|
|
|
2014-10-14 19:39:27 +04:00
|
|
|
saveProcesses: 0,
|
2013-10-04 18:33:37 +04:00
|
|
|
_save: function(object, value) {
|
2014-10-14 19:39:27 +04:00
|
|
|
$('#ldap .ldap_saving').removeClass('hidden');
|
|
|
|
LdapWizard.saveProcesses += 1;
|
2014-10-15 14:41:53 +04:00
|
|
|
$('#ldap *').addClass('save-cursor');
|
2013-11-20 02:58:08 +04:00
|
|
|
param = 'cfgkey='+encodeURIComponent(object.id)+
|
|
|
|
'&cfgval='+encodeURIComponent(value)+
|
2013-09-27 20:30:59 +04:00
|
|
|
'&action=save'+
|
|
|
|
'&ldap_serverconfig_chooser='+$('#ldap_serverconfig_chooser').val();
|
|
|
|
|
|
|
|
$.post(
|
|
|
|
OC.filePath('user_ldap','ajax','wizard.php'),
|
|
|
|
param,
|
|
|
|
function(result) {
|
2014-10-14 19:39:27 +04:00
|
|
|
LdapWizard.saveProcesses -= 1;
|
|
|
|
if(LdapWizard.saveProcesses === 0) {
|
|
|
|
$('#ldap .ldap_saving').addClass('hidden');
|
2014-10-15 14:41:53 +04:00
|
|
|
$('#ldap *').removeClass('save-cursor');
|
2014-10-14 19:39:27 +04:00
|
|
|
}
|
2014-10-10 13:49:45 +04:00
|
|
|
if(result.status === 'success') {
|
2013-10-04 18:33:37 +04:00
|
|
|
LdapWizard.processChanges(object);
|
2013-09-27 20:30:59 +04:00
|
|
|
} else {
|
2014-10-14 19:39:27 +04:00
|
|
|
console.log('Could not save value for ' + object.id);
|
2013-09-27 20:30:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2013-09-30 01:53:14 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
showInfoBox: function(text) {
|
2014-05-27 18:39:22 +04:00
|
|
|
$('#ldapWizard1 .ldapWizardInfo').text(text);
|
2013-10-04 18:33:37 +04:00
|
|
|
$('#ldapWizard1 .ldapWizardInfo').removeClass('invisible');
|
2013-09-30 01:53:14 +04:00
|
|
|
LdapWizard.checkInfoShown = true;
|
2013-10-08 20:27:36 +04:00
|
|
|
},
|
|
|
|
|
2013-10-17 15:05:14 +04:00
|
|
|
showSpinner: function(id) {
|
2013-10-17 22:57:19 +04:00
|
|
|
if($(id + ' + .wizSpinner').length == 0) {
|
|
|
|
$(LdapWizard.spinner).insertAfter($(id));
|
|
|
|
$(id + " + img + button").css('display', 'none');
|
|
|
|
}
|
2013-10-17 15:05:14 +04:00
|
|
|
},
|
|
|
|
|
2013-11-20 02:58:08 +04:00
|
|
|
toggleRawFilter: function(container, moc, mg, stateVar, modeKey) {
|
2014-10-08 13:38:39 +04:00
|
|
|
var isUser = moc.indexOf('user') >= 0;
|
|
|
|
var filter = isUser ? LdapWizard.userFilter : LdapWizard.groupFilter;
|
2013-11-14 21:29:18 +04:00
|
|
|
//moc = multiselect objectclass
|
|
|
|
//mg = mutliselect groups
|
2013-10-10 00:00:36 +04:00
|
|
|
if($(container).hasClass('invisible')) {
|
2014-10-08 13:38:39 +04:00
|
|
|
filter.setMode(LdapWizard.filterModeRaw);
|
2013-10-10 00:00:36 +04:00
|
|
|
$(container).removeClass('invisible');
|
|
|
|
$(moc).multiselect('disable');
|
2014-10-10 13:49:45 +04:00
|
|
|
if($(mg).multiselect().attr('disabled') === 'disabled') {
|
2013-10-10 00:00:36 +04:00
|
|
|
LdapWizard[stateVar] = 'disable';
|
2013-10-08 20:27:36 +04:00
|
|
|
} else {
|
2013-10-10 00:00:36 +04:00
|
|
|
LdapWizard[stateVar] = 'enable';
|
2013-10-08 20:27:36 +04:00
|
|
|
}
|
2013-10-10 00:00:36 +04:00
|
|
|
$(mg).multiselect('disable');
|
2013-11-20 02:58:08 +04:00
|
|
|
LdapWizard._save({ id: modeKey }, LdapWizard.filterModeRaw);
|
2013-10-08 20:27:36 +04:00
|
|
|
} else {
|
2014-10-08 13:38:39 +04:00
|
|
|
filter.setMode(LdapWizard.filterModeAssisted);
|
|
|
|
filter.findFeatures();
|
2013-10-10 00:00:36 +04:00
|
|
|
$(container).addClass('invisible');
|
|
|
|
$(mg).multiselect(LdapWizard[stateVar]);
|
|
|
|
$(moc).multiselect('enable');
|
2013-11-20 02:58:08 +04:00
|
|
|
LdapWizard._save({ id: modeKey }, LdapWizard.filterModeAssisted);
|
2014-10-08 13:38:39 +04:00
|
|
|
if(isUser) {
|
2013-11-20 02:58:08 +04:00
|
|
|
LdapWizard.blacklistRemove('ldap_userlist_filter');
|
2014-11-22 02:51:41 +03:00
|
|
|
LdapWizard.userFilter.compose(true);
|
2013-11-20 02:58:08 +04:00
|
|
|
} else {
|
|
|
|
LdapWizard.blacklistRemove('ldap_group_filter');
|
2014-11-22 02:51:41 +03:00
|
|
|
LdapWizard.groupFilter.compose(true);
|
2013-11-20 02:58:08 +04:00
|
|
|
}
|
2013-10-08 20:27:36 +04:00
|
|
|
}
|
2013-10-10 00:00:36 +04:00
|
|
|
},
|
|
|
|
|
2014-10-29 20:52:55 +03:00
|
|
|
onToggleRawFilterConfirmation: function(currentMode, isRawVisible, callback) {
|
|
|
|
if( !LdapWizard.admin.isExperienced()
|
|
|
|
|| currentMode === LdapWizard.filterModeAssisted
|
|
|
|
|| (LdapWizard.admin.isExperienced() && !isRawVisible)
|
2014-10-08 15:29:13 +04:00
|
|
|
) {
|
|
|
|
return callback(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
var confirmed = OCdialogs.confirm(
|
|
|
|
'Switching the mode will enable automatic LDAP queries. Depending on your LDAP size they may take a while. Do you still want to switch the mode?',
|
|
|
|
'Mode switch',
|
|
|
|
callback
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2013-10-10 00:00:36 +04:00
|
|
|
toggleRawGroupFilter: function() {
|
2014-10-08 15:29:13 +04:00
|
|
|
LdapWizard.onToggleRawFilterConfirmation(
|
|
|
|
LdapWizard.groupFilter.getMode(),
|
2014-10-29 20:52:55 +03:00
|
|
|
!$('#rawGroupFilterContainer').hasClass('invisible'),
|
2014-10-08 15:29:13 +04:00
|
|
|
function(confirmed) {
|
|
|
|
if(confirmed !== true) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
LdapWizard.blacklistRemove('ldap_group_filter');
|
|
|
|
LdapWizard.toggleRawFilter('#rawGroupFilterContainer',
|
|
|
|
'#ldap_groupfilter_objectclass',
|
|
|
|
'#ldap_groupfilter_groups',
|
|
|
|
'groupFilterGroupSelectState',
|
|
|
|
'ldapGroupFilterMode'
|
|
|
|
);
|
|
|
|
LdapWizard.admin.updateGroupTab(LdapWizard.groupFilter.getMode());
|
|
|
|
}
|
|
|
|
);
|
2013-10-10 00:00:36 +04:00
|
|
|
},
|
|
|
|
|
2013-11-14 21:29:18 +04:00
|
|
|
toggleRawLoginFilter: function() {
|
2014-10-08 15:29:13 +04:00
|
|
|
LdapWizard.onToggleRawFilterConfirmation(
|
|
|
|
LdapWizard.loginFilter.getMode(),
|
2014-10-29 20:52:55 +03:00
|
|
|
!$('#rawLoginFilterContainer').hasClass('invisible'),
|
2014-10-08 15:29:13 +04:00
|
|
|
function(confirmed) {
|
|
|
|
if(confirmed !== true) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
LdapWizard.blacklistRemove('ldap_login_filter');
|
|
|
|
container = '#rawLoginFilterContainer';
|
|
|
|
if($(container).hasClass('invisible')) {
|
|
|
|
$(container).removeClass('invisible');
|
|
|
|
action = 'disable';
|
|
|
|
property = 'disabled';
|
|
|
|
mode = LdapWizard.filterModeRaw;
|
|
|
|
} else {
|
|
|
|
$(container).addClass('invisible');
|
|
|
|
action = 'enable';
|
|
|
|
property = false;
|
|
|
|
mode = LdapWizard.filterModeAssisted;
|
|
|
|
}
|
|
|
|
LdapWizard.loginFilter.setMode(mode);
|
|
|
|
LdapWizard.loginFilter.findFeatures();
|
|
|
|
$('#ldap_loginfilter_attributes').multiselect(action);
|
|
|
|
$('#ldap_loginfilter_email').prop('disabled', property);
|
|
|
|
$('#ldap_loginfilter_username').prop('disabled', property);
|
|
|
|
LdapWizard._save({ id: 'ldapLoginFilterMode' }, mode);
|
2014-10-10 13:49:45 +04:00
|
|
|
if(action === 'enable') {
|
2014-10-08 15:29:13 +04:00
|
|
|
LdapWizard.loginFilter.compose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2013-11-14 21:29:18 +04:00
|
|
|
},
|
|
|
|
|
2013-10-10 00:00:36 +04:00
|
|
|
toggleRawUserFilter: function() {
|
2014-10-08 15:29:13 +04:00
|
|
|
LdapWizard.onToggleRawFilterConfirmation(
|
|
|
|
LdapWizard.userFilter.getMode(),
|
2014-10-29 20:52:55 +03:00
|
|
|
!$('#rawUserFilterContainer').hasClass('invisible'),
|
2014-10-08 15:29:13 +04:00
|
|
|
function(confirmed) {
|
|
|
|
if(confirmed === true) {
|
|
|
|
LdapWizard.blacklistRemove('ldap_userlist_filter');
|
|
|
|
LdapWizard.toggleRawFilter('#rawUserFilterContainer',
|
|
|
|
'#ldap_userfilter_objectclass',
|
|
|
|
'#ldap_userfilter_groups',
|
|
|
|
'userFilterGroupSelectState',
|
|
|
|
'ldapUserFilterMode'
|
|
|
|
);
|
|
|
|
LdapWizard.admin.updateUserTab(LdapWizard.userFilter.getMode());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2013-11-07 20:11:14 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
updateStatusIndicator: function(isComplete) {
|
|
|
|
if(isComplete) {
|
|
|
|
LdapConfiguration.testConfiguration(
|
|
|
|
//onSuccess
|
|
|
|
function(result) {
|
|
|
|
$('.ldap_config_state_indicator').text(t('user_ldap',
|
|
|
|
'Configuration OK'
|
|
|
|
));
|
2013-11-08 17:58:24 +04:00
|
|
|
$('.ldap_config_state_indicator').addClass('ldap_grey');
|
2013-11-07 20:11:14 +04:00
|
|
|
$('.ldap_config_state_indicator_sign').removeClass('error');
|
|
|
|
$('.ldap_config_state_indicator_sign').addClass('success');
|
2015-01-14 17:15:55 +03:00
|
|
|
if(!LdapWizard.lastTestSuccessful) {
|
|
|
|
LdapWizard.lastTestSuccessful = true;
|
|
|
|
LdapWizard.allowFilterFeatureSearch();
|
|
|
|
}
|
2013-11-07 20:11:14 +04:00
|
|
|
},
|
|
|
|
//onError
|
|
|
|
function(result) {
|
|
|
|
$('.ldap_config_state_indicator').text(t('user_ldap',
|
|
|
|
'Configuration incorrect'
|
|
|
|
));
|
2013-11-08 17:58:24 +04:00
|
|
|
$('.ldap_config_state_indicator').removeClass('ldap_grey');
|
2013-11-07 20:11:14 +04:00
|
|
|
$('.ldap_config_state_indicator_sign').addClass('error');
|
|
|
|
$('.ldap_config_state_indicator_sign').removeClass('success');
|
2015-01-14 17:15:55 +03:00
|
|
|
LdapWizard.lastTestSuccessful = false;
|
2013-11-07 20:11:14 +04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$('.ldap_config_state_indicator').text(t('user_ldap',
|
|
|
|
'Configuration incomplete'
|
|
|
|
));
|
2013-11-08 17:58:24 +04:00
|
|
|
$('.ldap_config_state_indicator').removeClass('ldap_grey');
|
2013-11-07 20:11:14 +04:00
|
|
|
$('.ldap_config_state_indicator_sign').removeClass('error');
|
|
|
|
$('.ldap_config_state_indicator_sign').removeClass('success');
|
|
|
|
}
|
2013-09-27 20:30:59 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-04-23 20:57:06 +04:00
|
|
|
$(document).ready(function() {
|
2013-02-02 02:48:22 +04:00
|
|
|
$('#ldapAdvancedAccordion').accordion({ heightStyle: 'content', animate: 'easeInOutCirc'});
|
2013-10-04 18:33:37 +04:00
|
|
|
$('#ldapSettings').tabs({ beforeActivate: LdapWizard.onTabChange });
|
2013-11-04 19:48:40 +04:00
|
|
|
$('.ldap_submit').button();
|
|
|
|
$('.ldap_action_test_connection').button();
|
2013-01-24 17:11:53 +04:00
|
|
|
$('#ldap_action_delete_configuration').button();
|
2013-10-04 20:11:44 +04:00
|
|
|
LdapWizard.initMultiSelect($('#ldap_userfilter_groups'),
|
|
|
|
'ldap_userfilter_groups',
|
|
|
|
t('user_ldap', 'Select groups'));
|
|
|
|
LdapWizard.initMultiSelect($('#ldap_userfilter_objectclass'),
|
|
|
|
'ldap_userfilter_objectclass',
|
|
|
|
t('user_ldap', 'Select object classes'));
|
2013-10-09 01:47:57 +04:00
|
|
|
LdapWizard.initMultiSelect($('#ldap_loginfilter_attributes'),
|
|
|
|
'ldap_loginfilter_attributes',
|
|
|
|
t('user_ldap', 'Select attributes'));
|
2013-10-10 00:00:36 +04:00
|
|
|
LdapWizard.initMultiSelect($('#ldap_groupfilter_groups'),
|
|
|
|
'ldap_groupfilter_groups',
|
|
|
|
t('user_ldap', 'Select groups'));
|
|
|
|
LdapWizard.initMultiSelect($('#ldap_groupfilter_objectclass'),
|
|
|
|
'ldap_groupfilter_objectclass',
|
|
|
|
t('user_ldap', 'Select object classes'));
|
2014-10-08 13:38:39 +04:00
|
|
|
|
2013-09-27 20:30:59 +04:00
|
|
|
$('.lwautosave').change(function() { LdapWizard.save(this); });
|
2013-10-08 20:27:36 +04:00
|
|
|
$('#toggleRawUserFilter').click(LdapWizard.toggleRawUserFilter);
|
2013-10-10 00:00:36 +04:00
|
|
|
$('#toggleRawGroupFilter').click(LdapWizard.toggleRawGroupFilter);
|
2013-11-14 21:29:18 +04:00
|
|
|
$('#toggleRawLoginFilter').click(LdapWizard.toggleRawLoginFilter);
|
2013-01-24 16:00:40 +04:00
|
|
|
LdapConfiguration.refreshConfig();
|
2013-10-17 20:33:58 +04:00
|
|
|
$('.ldap_action_continue').click(function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
LdapWizard.controlContinue();
|
|
|
|
});
|
|
|
|
$('.ldap_action_back').click(function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
LdapWizard.controlBack();
|
|
|
|
});
|
2013-11-04 19:48:40 +04:00
|
|
|
$('.ldap_action_test_connection').click(function(event){
|
2012-07-26 20:10:53 +04:00
|
|
|
event.preventDefault();
|
2013-11-07 20:11:14 +04:00
|
|
|
LdapConfiguration.testConfiguration(
|
|
|
|
//onSuccess
|
|
|
|
function(result) {
|
|
|
|
OC.dialogs.alert(
|
|
|
|
result.message,
|
|
|
|
t('user_ldap', 'Connection test succeeded')
|
|
|
|
);
|
|
|
|
},
|
|
|
|
//onError
|
|
|
|
function(result) {
|
|
|
|
OC.dialogs.alert(
|
|
|
|
result.message,
|
|
|
|
t('user_ldap', 'Connection test failed')
|
|
|
|
);
|
2012-07-26 20:10:53 +04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
2013-01-18 04:23:15 +04:00
|
|
|
|
2013-01-24 17:11:53 +04:00
|
|
|
$('#ldap_action_delete_configuration').click(function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
OC.dialogs.confirm(
|
2013-01-25 01:47:25 +04:00
|
|
|
t('user_ldap', 'Do you really want to delete the current Server Configuration?'),
|
|
|
|
t('user_ldap', 'Confirm Deletion'),
|
2013-01-24 17:11:53 +04:00
|
|
|
function(deleteConfiguration) {
|
|
|
|
if(deleteConfiguration) {
|
|
|
|
LdapConfiguration.deleteConfiguration();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2013-11-04 19:48:40 +04:00
|
|
|
$('.ldap_submit').click(function(event) {
|
2013-01-20 21:02:44 +04:00
|
|
|
event.preventDefault();
|
|
|
|
$.post(
|
|
|
|
OC.filePath('user_ldap','ajax','setConfiguration.php'),
|
|
|
|
$('#ldap').serialize(),
|
|
|
|
function (result) {
|
2013-11-04 19:48:40 +04:00
|
|
|
bgcolor = $('.ldap_submit').css('background');
|
2013-04-21 00:45:17 +04:00
|
|
|
if (result.status === 'success') {
|
2013-01-30 06:34:51 +04:00
|
|
|
//the dealing with colors is a but ugly, but the jQuery version in use has issues with rgba colors
|
2013-11-04 19:48:40 +04:00
|
|
|
$('.ldap_submit').css('background', '#fff');
|
|
|
|
$('.ldap_submit').effect('highlight', {'color':'#A8FA87'}, 5000, function() {
|
|
|
|
$('.ldap_submit').css('background', bgcolor);
|
2013-01-30 06:34:51 +04:00
|
|
|
});
|
2013-08-15 18:10:49 +04:00
|
|
|
//update the Label in the config chooser
|
|
|
|
caption = $('#ldap_serverconfig_chooser option:selected:first').text();
|
|
|
|
pretext = '. Server: ';
|
|
|
|
caption = caption.slice(0, caption.indexOf(pretext) + pretext.length);
|
|
|
|
caption = caption + $('#ldap_host').val();
|
|
|
|
$('#ldap_serverconfig_chooser option:selected:first').text(caption);
|
|
|
|
|
2013-01-30 06:34:51 +04:00
|
|
|
} else {
|
2013-11-04 19:48:40 +04:00
|
|
|
$('.ldap_submit').css('background', '#fff');
|
|
|
|
$('.ldap_submit').effect('highlight', {'color':'#E97'}, 5000, function() {
|
|
|
|
$('.ldap_submit').css('background', bgcolor);
|
2013-01-30 06:34:51 +04:00
|
|
|
});
|
2013-01-20 21:02:44 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2013-05-08 19:47:07 +04:00
|
|
|
$('#ldap_action_clear_user_mappings').click(function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
LdapConfiguration.clearMappings('user');
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#ldap_action_clear_group_mappings').click(function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
LdapConfiguration.clearMappings('group');
|
|
|
|
});
|
|
|
|
|
2013-01-18 04:23:15 +04:00
|
|
|
$('#ldap_serverconfig_chooser').change(function(event) {
|
|
|
|
value = $('#ldap_serverconfig_chooser option:selected:first').attr('value');
|
2013-04-21 00:45:17 +04:00
|
|
|
if(value === 'NEW') {
|
2013-01-30 05:30:24 +04:00
|
|
|
LdapConfiguration.addConfiguration(false);
|
2013-01-18 04:23:15 +04:00
|
|
|
} else {
|
2013-01-24 16:00:40 +04:00
|
|
|
LdapConfiguration.refreshConfig();
|
2013-01-18 04:23:15 +04:00
|
|
|
}
|
|
|
|
});
|
2014-10-07 19:28:09 +04:00
|
|
|
|
|
|
|
expAdminCB = $('#ldap_experienced_admin');
|
|
|
|
LdapWizard.admin = new ExperiencedAdmin(LdapWizard, expAdminCB.is(':checked'));
|
|
|
|
expAdminCB.change(function() {
|
2014-10-08 15:06:18 +04:00
|
|
|
LdapWizard.admin.setExperienced($(this).is(':checked'));
|
2014-10-07 19:28:09 +04:00
|
|
|
});
|
2013-08-18 13:02:08 +04:00
|
|
|
});
|