LDAP Wizard Overhaul
wizard refactor
reimplement save spinners and cursor
implement Port detector
introduced detector queue, added base dn detector
disable input fields when detectors are running
introduce spinners for fields that are being updated by detector
cache jq element objects
consolidate processing of detector results in generic / abstract base class
display notification if a detector discovered a problem
don't run base dn detector if a base is configured
reset detector queue on configuration switch
implement functionality check and update of status indicator
document ConfigModel
jsdoc for controller and main view
more documentation
implement the user filter tab view
so far the multiselects get initialized (not filled yet) and the mode can be switched.
mode is also restored.
reintroduce filter switch confirmation in admin XP mode
new detector for user object classes. so we also load user object classes if necessary and are able to save and show the setting.
multiselect trigger save actions now on close only
show spinners automatically, when a detector is running
20k limit for object classes preselection test
adjust wordings, fix grammar
add group (for users tab) detector
also includes wording fixes
error presentation moved from detectors to view, where it belongs
add info label to users page
missing wording changes
show effective LDAP filter in Assisted Mode
add user filter detector
implement count button for users and limit all count actions to 1001 for performance reasons
make port field a bit bigger. not perfect though.
do not detect port automatically
implement login filter tab view
only load features in assisted mode and don't enable assisted fields while in raw mode
add tooltips on login filter checkbox options for better understanding
permanently show filter on login tab
and also compile login filter in assisted mode
test/verify button on login attributes tab, with backend changes.
only run wizard requests if your an active tab. also run compile filter requests when switching to assisted mode
underline toggle filter links to stress that they are clickable
unity user and group tab functionality in common abstract class, add group filter tab view. only detectors and template adjustments left to have group tab implementation complete
add object class and group detector for groups as well as filter composer
show ldap filter permanently on groups tab
introduce input element that can deal better with many groups, will be used with > 40
fix disabling complex group chooser while detection is running
hide complex group chooser on config switch
fix few more issues with complex chooser
make complex group chooser available on Users tab as well
detect base dn improvements/changes:
- do not look for Base DN automatically, offer a button instead
- fix for alternative way to detect a base dn (if agent dn is not given)
- do not trigger filter composers on config switch
Changes with configuration chooser controls
- "New" was removed out of the configuration list
- and split into buttons "add" and "copy"
- delete button is also now an icon
add test button for Base DN
reimplement advanced tab. The save button is gone.
reimplement expert tab
remove unused methods
implement mail attribute detector
implement user display name attribute detection
implement member group association detector
replace text input with textarea for raw filter input
finish functionality check
auto-enable good configurations, as it was before
cleanup
move save confirmation handling to base class, reduces code duplication
enable tabs only if no running save processes are left.
move onConfigLoaded to base class, avoids code duplication
simplify, save LOCs
Test Configuration button to be dealt with in main view as it is a cross-tab element
require detectorQueue in constructor
cleanup
put bootstrap into a function and thus make it testable
get rid of old stuff
2015-03-03 13:56:03 +03:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015, Arthur Schiwon <blizzz@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
OCA = OCA || {};
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @classdesc main view class. It takes care of tab-unrelated control
|
|
|
|
* elements (status bar, control buttons) and does or requests configuration
|
|
|
|
* checks. It also manages the separate tab views.
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
*/
|
|
|
|
var WizardView = function() {};
|
|
|
|
|
|
|
|
WizardView.prototype = {
|
|
|
|
/** @constant {number} */
|
|
|
|
STATUS_ERROR: 0,
|
|
|
|
/** @constant {number} */
|
|
|
|
STATUS_INCOMPLETE: 1,
|
|
|
|
/** @constant {number} */
|
|
|
|
STATUS_SUCCESS: 2,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* initializes the instance. Always call it after creating the instance.
|
|
|
|
*/
|
|
|
|
init: function () {
|
|
|
|
this.tabs = {};
|
|
|
|
this.tabs.server = new OCA.LDAP.Wizard.WizardTabElementary();
|
|
|
|
this.$settings = $('#ldapSettings');
|
|
|
|
this.$saveSpinners = $('.ldap_saving');
|
|
|
|
this.saveProcesses = 0;
|
|
|
|
_.bindAll(this, 'onTabChange', 'onTestButtonClick');
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* applies click events to the forward and backword buttons
|
|
|
|
*/
|
|
|
|
initControls: function() {
|
|
|
|
var view = this;
|
|
|
|
$('.ldap_action_continue').click(function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
view._controlContinue(view);
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.ldap_action_back').click(function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
view._controlBack(view);
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.ldap_action_test_connection').click(this.onTestButtonClick);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* registers a tab
|
|
|
|
*
|
|
|
|
* @param {OCA.LDAP.Wizard.WizardTabGeneric} tabView
|
|
|
|
* @param {string} index
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
registerTab: function(tabView, index) {
|
|
|
|
if( _.isUndefined(this.tabs[index])
|
|
|
|
&& tabView instanceof OCA.LDAP.Wizard.WizardTabGeneric
|
|
|
|
) {
|
|
|
|
this.tabs[index] = tabView;
|
|
|
|
this.tabs[index].setModel(this.configModel);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* checks certain config values for completeness and depending on them
|
|
|
|
* enables or disables non-elementary tabs.
|
|
|
|
*/
|
|
|
|
basicStatusCheck: function(view) {
|
|
|
|
var host = view.configModel.configuration.ldap_host;
|
|
|
|
var port = view.configModel.configuration.ldap_port;
|
|
|
|
var base = view.configModel.configuration.ldap_base;
|
|
|
|
var agent = view.configModel.configuration.ldap_dn;
|
|
|
|
var pwd = view.configModel.configuration.ldap_agent_password;
|
|
|
|
|
|
|
|
if((host && port && base) && ((!agent && !pwd) || (agent && pwd))) {
|
|
|
|
view.enableTabs();
|
|
|
|
} else {
|
|
|
|
view.disableTabs();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* if the configuration is sufficient the model is being request to
|
|
|
|
* perform a configuration test. Otherwise, the status indicator is
|
|
|
|
* being updated with the status "incomplete"
|
|
|
|
*/
|
|
|
|
functionalityCheck: function() {
|
|
|
|
// this method should be called only if necessary, because it may
|
|
|
|
// cause an LDAP request!
|
|
|
|
var host = this.configModel.configuration.ldap_host;
|
|
|
|
var port = this.configModel.configuration.ldap_port;
|
|
|
|
var base = this.configModel.configuration.ldap_base;
|
|
|
|
var userFilter = this.configModel.configuration.ldap_userlist_filter;
|
|
|
|
var loginFilter = this.configModel.configuration.ldap_login_filter;
|
|
|
|
|
|
|
|
if(host && port && base && userFilter && loginFilter) {
|
|
|
|
this.configModel.requestConfigurationTest();
|
|
|
|
} else {
|
|
|
|
this._updateStatusIndicator(this.STATUS_INCOMPLETE);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* will request a functionality check if one of the related configuration
|
|
|
|
* settings was changed.
|
|
|
|
*
|
|
|
|
* @param {ConfigSetPayload|Object} [changeSet]
|
|
|
|
*/
|
|
|
|
considerFunctionalityCheck: function(changeSet) {
|
|
|
|
var testTriggers = [
|
|
|
|
'ldap_host', 'ldap_port', 'ldap_dn', 'ldap_agent_password',
|
|
|
|
'ldap_base', 'ldap_userlist_filter', 'ldap_login_filter'
|
|
|
|
];
|
|
|
|
for(var key in changeSet) {
|
2015-04-09 13:36:53 +03:00
|
|
|
if($.inArray(key, testTriggers) >= 0) {
|
LDAP Wizard Overhaul
wizard refactor
reimplement save spinners and cursor
implement Port detector
introduced detector queue, added base dn detector
disable input fields when detectors are running
introduce spinners for fields that are being updated by detector
cache jq element objects
consolidate processing of detector results in generic / abstract base class
display notification if a detector discovered a problem
don't run base dn detector if a base is configured
reset detector queue on configuration switch
implement functionality check and update of status indicator
document ConfigModel
jsdoc for controller and main view
more documentation
implement the user filter tab view
so far the multiselects get initialized (not filled yet) and the mode can be switched.
mode is also restored.
reintroduce filter switch confirmation in admin XP mode
new detector for user object classes. so we also load user object classes if necessary and are able to save and show the setting.
multiselect trigger save actions now on close only
show spinners automatically, when a detector is running
20k limit for object classes preselection test
adjust wordings, fix grammar
add group (for users tab) detector
also includes wording fixes
error presentation moved from detectors to view, where it belongs
add info label to users page
missing wording changes
show effective LDAP filter in Assisted Mode
add user filter detector
implement count button for users and limit all count actions to 1001 for performance reasons
make port field a bit bigger. not perfect though.
do not detect port automatically
implement login filter tab view
only load features in assisted mode and don't enable assisted fields while in raw mode
add tooltips on login filter checkbox options for better understanding
permanently show filter on login tab
and also compile login filter in assisted mode
test/verify button on login attributes tab, with backend changes.
only run wizard requests if your an active tab. also run compile filter requests when switching to assisted mode
underline toggle filter links to stress that they are clickable
unity user and group tab functionality in common abstract class, add group filter tab view. only detectors and template adjustments left to have group tab implementation complete
add object class and group detector for groups as well as filter composer
show ldap filter permanently on groups tab
introduce input element that can deal better with many groups, will be used with > 40
fix disabling complex group chooser while detection is running
hide complex group chooser on config switch
fix few more issues with complex chooser
make complex group chooser available on Users tab as well
detect base dn improvements/changes:
- do not look for Base DN automatically, offer a button instead
- fix for alternative way to detect a base dn (if agent dn is not given)
- do not trigger filter composers on config switch
Changes with configuration chooser controls
- "New" was removed out of the configuration list
- and split into buttons "add" and "copy"
- delete button is also now an icon
add test button for Base DN
reimplement advanced tab. The save button is gone.
reimplement expert tab
remove unused methods
implement mail attribute detector
implement user display name attribute detection
implement member group association detector
replace text input with textarea for raw filter input
finish functionality check
auto-enable good configurations, as it was before
cleanup
move save confirmation handling to base class, reduces code duplication
enable tabs only if no running save processes are left.
move onConfigLoaded to base class, avoids code duplication
simplify, save LOCs
Test Configuration button to be dealt with in main view as it is a cross-tab element
require detectorQueue in constructor
cleanup
put bootstrap into a function and thus make it testable
get rid of old stuff
2015-03-03 13:56:03 +03:00
|
|
|
this.functionalityCheck();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* keeps number of running save processes and shows a spinner if
|
|
|
|
* necessary
|
|
|
|
*
|
|
|
|
* @param {WizardView} [view]
|
|
|
|
* @listens ConfigModel#setRequested
|
|
|
|
*/
|
|
|
|
onSetRequested: function(view) {
|
|
|
|
view.saveProcesses += 1;
|
|
|
|
if(view.saveProcesses === 1) {
|
|
|
|
view.showSaveSpinner();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* keeps number of running save processes and hides the spinner if
|
|
|
|
* necessary. Also triggers checks, to adjust tabs state and status bar.
|
|
|
|
*
|
|
|
|
* @param {WizardView} [view]
|
|
|
|
* @param {ConfigSetPayload} [result]
|
|
|
|
* @listens ConfigModel#setCompleted
|
|
|
|
*/
|
|
|
|
onSetRequestDone: function(view, result) {
|
|
|
|
if(view.saveProcesses > 0) {
|
|
|
|
view.saveProcesses -= 1;
|
|
|
|
if(view.saveProcesses === 0) {
|
|
|
|
view.hideSaveSpinner();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
view.basicStatusCheck(view);
|
|
|
|
var param = {};
|
|
|
|
param[result.key] = 1;
|
|
|
|
view.considerFunctionalityCheck(param);
|
|
|
|
},
|
|
|
|
|
2015-05-13 17:21:50 +03:00
|
|
|
/**
|
|
|
|
* Base DN test results will arrive here
|
|
|
|
*
|
|
|
|
* @param {WizardTabElementary} view
|
|
|
|
* @param {FeaturePayload} payload
|
|
|
|
*/
|
|
|
|
onDetectionTestCompleted: function(view, payload) {
|
|
|
|
if(payload.feature === 'TestBaseDN') {
|
|
|
|
if(payload.data.status === 'success') {
|
|
|
|
var objectsFound = parseInt(payload.data.changes.ldap_test_base, 10);
|
|
|
|
if(objectsFound > 0) {
|
|
|
|
view._updateStatusIndicator(view.STATUS_SUCCESS);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
view._updateStatusIndicator(view.STATUS_ERROR);
|
|
|
|
OC.Notification.showTemporary(t('user_ldap', 'The Base DN appears to be wrong'));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
LDAP Wizard Overhaul
wizard refactor
reimplement save spinners and cursor
implement Port detector
introduced detector queue, added base dn detector
disable input fields when detectors are running
introduce spinners for fields that are being updated by detector
cache jq element objects
consolidate processing of detector results in generic / abstract base class
display notification if a detector discovered a problem
don't run base dn detector if a base is configured
reset detector queue on configuration switch
implement functionality check and update of status indicator
document ConfigModel
jsdoc for controller and main view
more documentation
implement the user filter tab view
so far the multiselects get initialized (not filled yet) and the mode can be switched.
mode is also restored.
reintroduce filter switch confirmation in admin XP mode
new detector for user object classes. so we also load user object classes if necessary and are able to save and show the setting.
multiselect trigger save actions now on close only
show spinners automatically, when a detector is running
20k limit for object classes preselection test
adjust wordings, fix grammar
add group (for users tab) detector
also includes wording fixes
error presentation moved from detectors to view, where it belongs
add info label to users page
missing wording changes
show effective LDAP filter in Assisted Mode
add user filter detector
implement count button for users and limit all count actions to 1001 for performance reasons
make port field a bit bigger. not perfect though.
do not detect port automatically
implement login filter tab view
only load features in assisted mode and don't enable assisted fields while in raw mode
add tooltips on login filter checkbox options for better understanding
permanently show filter on login tab
and also compile login filter in assisted mode
test/verify button on login attributes tab, with backend changes.
only run wizard requests if your an active tab. also run compile filter requests when switching to assisted mode
underline toggle filter links to stress that they are clickable
unity user and group tab functionality in common abstract class, add group filter tab view. only detectors and template adjustments left to have group tab implementation complete
add object class and group detector for groups as well as filter composer
show ldap filter permanently on groups tab
introduce input element that can deal better with many groups, will be used with > 40
fix disabling complex group chooser while detection is running
hide complex group chooser on config switch
fix few more issues with complex chooser
make complex group chooser available on Users tab as well
detect base dn improvements/changes:
- do not look for Base DN automatically, offer a button instead
- fix for alternative way to detect a base dn (if agent dn is not given)
- do not trigger filter composers on config switch
Changes with configuration chooser controls
- "New" was removed out of the configuration list
- and split into buttons "add" and "copy"
- delete button is also now an icon
add test button for Base DN
reimplement advanced tab. The save button is gone.
reimplement expert tab
remove unused methods
implement mail attribute detector
implement user display name attribute detection
implement member group association detector
replace text input with textarea for raw filter input
finish functionality check
auto-enable good configurations, as it was before
cleanup
move save confirmation handling to base class, reduces code duplication
enable tabs only if no running save processes are left.
move onConfigLoaded to base class, avoids code duplication
simplify, save LOCs
Test Configuration button to be dealt with in main view as it is a cross-tab element
require detectorQueue in constructor
cleanup
put bootstrap into a function and thus make it testable
get rid of old stuff
2015-03-03 13:56:03 +03:00
|
|
|
/**
|
|
|
|
* updates the status indicator based on the configuration test result
|
|
|
|
*
|
|
|
|
* @param {WizardView} [view]
|
|
|
|
* @param {ConfigTestPayload} [result]
|
|
|
|
* @listens ConfigModel#configurationTested
|
|
|
|
*/
|
|
|
|
onTestCompleted: function(view, result) {
|
|
|
|
if(result.isSuccess) {
|
2015-05-13 17:21:50 +03:00
|
|
|
view.configModel.requestWizard('ldap_test_base');
|
LDAP Wizard Overhaul
wizard refactor
reimplement save spinners and cursor
implement Port detector
introduced detector queue, added base dn detector
disable input fields when detectors are running
introduce spinners for fields that are being updated by detector
cache jq element objects
consolidate processing of detector results in generic / abstract base class
display notification if a detector discovered a problem
don't run base dn detector if a base is configured
reset detector queue on configuration switch
implement functionality check and update of status indicator
document ConfigModel
jsdoc for controller and main view
more documentation
implement the user filter tab view
so far the multiselects get initialized (not filled yet) and the mode can be switched.
mode is also restored.
reintroduce filter switch confirmation in admin XP mode
new detector for user object classes. so we also load user object classes if necessary and are able to save and show the setting.
multiselect trigger save actions now on close only
show spinners automatically, when a detector is running
20k limit for object classes preselection test
adjust wordings, fix grammar
add group (for users tab) detector
also includes wording fixes
error presentation moved from detectors to view, where it belongs
add info label to users page
missing wording changes
show effective LDAP filter in Assisted Mode
add user filter detector
implement count button for users and limit all count actions to 1001 for performance reasons
make port field a bit bigger. not perfect though.
do not detect port automatically
implement login filter tab view
only load features in assisted mode and don't enable assisted fields while in raw mode
add tooltips on login filter checkbox options for better understanding
permanently show filter on login tab
and also compile login filter in assisted mode
test/verify button on login attributes tab, with backend changes.
only run wizard requests if your an active tab. also run compile filter requests when switching to assisted mode
underline toggle filter links to stress that they are clickable
unity user and group tab functionality in common abstract class, add group filter tab view. only detectors and template adjustments left to have group tab implementation complete
add object class and group detector for groups as well as filter composer
show ldap filter permanently on groups tab
introduce input element that can deal better with many groups, will be used with > 40
fix disabling complex group chooser while detection is running
hide complex group chooser on config switch
fix few more issues with complex chooser
make complex group chooser available on Users tab as well
detect base dn improvements/changes:
- do not look for Base DN automatically, offer a button instead
- fix for alternative way to detect a base dn (if agent dn is not given)
- do not trigger filter composers on config switch
Changes with configuration chooser controls
- "New" was removed out of the configuration list
- and split into buttons "add" and "copy"
- delete button is also now an icon
add test button for Base DN
reimplement advanced tab. The save button is gone.
reimplement expert tab
remove unused methods
implement mail attribute detector
implement user display name attribute detection
implement member group association detector
replace text input with textarea for raw filter input
finish functionality check
auto-enable good configurations, as it was before
cleanup
move save confirmation handling to base class, reduces code duplication
enable tabs only if no running save processes are left.
move onConfigLoaded to base class, avoids code duplication
simplify, save LOCs
Test Configuration button to be dealt with in main view as it is a cross-tab element
require detectorQueue in constructor
cleanup
put bootstrap into a function and thus make it testable
get rid of old stuff
2015-03-03 13:56:03 +03:00
|
|
|
} else {
|
|
|
|
view._updateStatusIndicator(view.STATUS_ERROR);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* triggers initial checks upon configuration loading to update status
|
|
|
|
* controls
|
|
|
|
*
|
|
|
|
* @param {WizardView} [view]
|
|
|
|
* @listens ConfigModel#configLoaded
|
|
|
|
*/
|
|
|
|
onConfigLoaded: function(view) {
|
|
|
|
view.basicStatusCheck(view);
|
|
|
|
view.functionalityCheck();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* reacts on attempts to switch to a different tab
|
|
|
|
*
|
|
|
|
* @param {object} event
|
|
|
|
* @param {object} ui
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
onTabChange: function(event, ui) {
|
|
|
|
if(this.saveProcesses > 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
var newTabID = ui.newTab[0].id;
|
|
|
|
if(newTabID === '#ldapWizard1') {
|
|
|
|
newTabID = 'server';
|
|
|
|
}
|
|
|
|
var oldTabID = ui.oldTab[0].id;
|
|
|
|
if(oldTabID === '#ldapWizard1') {
|
|
|
|
oldTabID = 'server';
|
|
|
|
}
|
|
|
|
if(!_.isUndefined(this.tabs[newTabID])) {
|
|
|
|
this.tabs[newTabID].isActive = true;
|
|
|
|
this.tabs[newTabID].onActivate();
|
|
|
|
} else {
|
|
|
|
console.warn('Unreferenced activated tab ' + newTabID);
|
|
|
|
}
|
|
|
|
if(!_.isUndefined(this.tabs[oldTabID])) {
|
|
|
|
this.tabs[oldTabID].isActive = false;
|
|
|
|
} else {
|
|
|
|
console.warn('Unreferenced left tab ' + oldTabID);
|
|
|
|
}
|
2015-04-09 15:40:00 +03:00
|
|
|
|
|
|
|
if(!_.isUndefined(this.tabs[newTabID])) {
|
|
|
|
this._controlUpdate(this.tabs[newTabID].tabIndex);
|
|
|
|
}
|
LDAP Wizard Overhaul
wizard refactor
reimplement save spinners and cursor
implement Port detector
introduced detector queue, added base dn detector
disable input fields when detectors are running
introduce spinners for fields that are being updated by detector
cache jq element objects
consolidate processing of detector results in generic / abstract base class
display notification if a detector discovered a problem
don't run base dn detector if a base is configured
reset detector queue on configuration switch
implement functionality check and update of status indicator
document ConfigModel
jsdoc for controller and main view
more documentation
implement the user filter tab view
so far the multiselects get initialized (not filled yet) and the mode can be switched.
mode is also restored.
reintroduce filter switch confirmation in admin XP mode
new detector for user object classes. so we also load user object classes if necessary and are able to save and show the setting.
multiselect trigger save actions now on close only
show spinners automatically, when a detector is running
20k limit for object classes preselection test
adjust wordings, fix grammar
add group (for users tab) detector
also includes wording fixes
error presentation moved from detectors to view, where it belongs
add info label to users page
missing wording changes
show effective LDAP filter in Assisted Mode
add user filter detector
implement count button for users and limit all count actions to 1001 for performance reasons
make port field a bit bigger. not perfect though.
do not detect port automatically
implement login filter tab view
only load features in assisted mode and don't enable assisted fields while in raw mode
add tooltips on login filter checkbox options for better understanding
permanently show filter on login tab
and also compile login filter in assisted mode
test/verify button on login attributes tab, with backend changes.
only run wizard requests if your an active tab. also run compile filter requests when switching to assisted mode
underline toggle filter links to stress that they are clickable
unity user and group tab functionality in common abstract class, add group filter tab view. only detectors and template adjustments left to have group tab implementation complete
add object class and group detector for groups as well as filter composer
show ldap filter permanently on groups tab
introduce input element that can deal better with many groups, will be used with > 40
fix disabling complex group chooser while detection is running
hide complex group chooser on config switch
fix few more issues with complex chooser
make complex group chooser available on Users tab as well
detect base dn improvements/changes:
- do not look for Base DN automatically, offer a button instead
- fix for alternative way to detect a base dn (if agent dn is not given)
- do not trigger filter composers on config switch
Changes with configuration chooser controls
- "New" was removed out of the configuration list
- and split into buttons "add" and "copy"
- delete button is also now an icon
add test button for Base DN
reimplement advanced tab. The save button is gone.
reimplement expert tab
remove unused methods
implement mail attribute detector
implement user display name attribute detection
implement member group association detector
replace text input with textarea for raw filter input
finish functionality check
auto-enable good configurations, as it was before
cleanup
move save confirmation handling to base class, reduces code duplication
enable tabs only if no running save processes are left.
move onConfigLoaded to base class, avoids code duplication
simplify, save LOCs
Test Configuration button to be dealt with in main view as it is a cross-tab element
require detectorQueue in constructor
cleanup
put bootstrap into a function and thus make it testable
get rid of old stuff
2015-03-03 13:56:03 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* triggers checks upon configuration updates to keep status controls
|
|
|
|
* up to date
|
|
|
|
*
|
|
|
|
* @param {WizardView} [view]
|
|
|
|
* @param {object} [changeSet]
|
|
|
|
* @listens ConfigModel#configUpdated
|
|
|
|
*/
|
|
|
|
onConfigUpdated: function(view, changeSet) {
|
|
|
|
view.basicStatusCheck(view);
|
|
|
|
view.considerFunctionalityCheck(changeSet);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* requests a configuration test
|
|
|
|
*/
|
|
|
|
onTestButtonClick: function() {
|
|
|
|
this.configModel.requestWizard('ldap_action_test_connection', this.configModel.configuration);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* sets the model instance and registers event listeners
|
|
|
|
*
|
|
|
|
* @param {OCA.LDAP.Wizard.ConfigModel} [configModel]
|
|
|
|
*/
|
|
|
|
setModel: function(configModel) {
|
|
|
|
/** @type {OCA.LDAP.Wizard.ConfigModel} */
|
|
|
|
this.configModel = configModel;
|
|
|
|
for(var i in this.tabs) {
|
|
|
|
this.tabs[i].setModel(configModel);
|
|
|
|
}
|
|
|
|
|
|
|
|
// make sure this is definitely run after tabs did their work, order is important here
|
|
|
|
// for now this works, because tabs are supposed to register their listeners in their
|
|
|
|
// setModel() method.
|
|
|
|
// alternative: make Elementary Tab a Publisher as well.
|
|
|
|
this.configModel.on('configLoaded', this.onConfigLoaded, this);
|
|
|
|
this.configModel.on('configUpdated', this.onConfigUpdated, this);
|
|
|
|
this.configModel.on('setRequested', this.onSetRequested, this);
|
|
|
|
this.configModel.on('setCompleted', this.onSetRequestDone, this);
|
|
|
|
this.configModel.on('configurationTested', this.onTestCompleted, this);
|
2015-05-13 17:21:50 +03:00
|
|
|
this.configModel.on('receivedLdapFeature', this.onDetectionTestCompleted, this);
|
LDAP Wizard Overhaul
wizard refactor
reimplement save spinners and cursor
implement Port detector
introduced detector queue, added base dn detector
disable input fields when detectors are running
introduce spinners for fields that are being updated by detector
cache jq element objects
consolidate processing of detector results in generic / abstract base class
display notification if a detector discovered a problem
don't run base dn detector if a base is configured
reset detector queue on configuration switch
implement functionality check and update of status indicator
document ConfigModel
jsdoc for controller and main view
more documentation
implement the user filter tab view
so far the multiselects get initialized (not filled yet) and the mode can be switched.
mode is also restored.
reintroduce filter switch confirmation in admin XP mode
new detector for user object classes. so we also load user object classes if necessary and are able to save and show the setting.
multiselect trigger save actions now on close only
show spinners automatically, when a detector is running
20k limit for object classes preselection test
adjust wordings, fix grammar
add group (for users tab) detector
also includes wording fixes
error presentation moved from detectors to view, where it belongs
add info label to users page
missing wording changes
show effective LDAP filter in Assisted Mode
add user filter detector
implement count button for users and limit all count actions to 1001 for performance reasons
make port field a bit bigger. not perfect though.
do not detect port automatically
implement login filter tab view
only load features in assisted mode and don't enable assisted fields while in raw mode
add tooltips on login filter checkbox options for better understanding
permanently show filter on login tab
and also compile login filter in assisted mode
test/verify button on login attributes tab, with backend changes.
only run wizard requests if your an active tab. also run compile filter requests when switching to assisted mode
underline toggle filter links to stress that they are clickable
unity user and group tab functionality in common abstract class, add group filter tab view. only detectors and template adjustments left to have group tab implementation complete
add object class and group detector for groups as well as filter composer
show ldap filter permanently on groups tab
introduce input element that can deal better with many groups, will be used with > 40
fix disabling complex group chooser while detection is running
hide complex group chooser on config switch
fix few more issues with complex chooser
make complex group chooser available on Users tab as well
detect base dn improvements/changes:
- do not look for Base DN automatically, offer a button instead
- fix for alternative way to detect a base dn (if agent dn is not given)
- do not trigger filter composers on config switch
Changes with configuration chooser controls
- "New" was removed out of the configuration list
- and split into buttons "add" and "copy"
- delete button is also now an icon
add test button for Base DN
reimplement advanced tab. The save button is gone.
reimplement expert tab
remove unused methods
implement mail attribute detector
implement user display name attribute detection
implement member group association detector
replace text input with textarea for raw filter input
finish functionality check
auto-enable good configurations, as it was before
cleanup
move save confirmation handling to base class, reduces code duplication
enable tabs only if no running save processes are left.
move onConfigLoaded to base class, avoids code duplication
simplify, save LOCs
Test Configuration button to be dealt with in main view as it is a cross-tab element
require detectorQueue in constructor
cleanup
put bootstrap into a function and thus make it testable
get rid of old stuff
2015-03-03 13:56:03 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* enables tab and navigation buttons
|
|
|
|
*/
|
|
|
|
enableTabs: function() {
|
|
|
|
//do not use this function directly, use basicStatusCheck instead.
|
|
|
|
if(this.saveProcesses === 0) {
|
|
|
|
$('.ldap_action_continue').removeAttr('disabled');
|
|
|
|
$('.ldap_action_back').removeAttr('disabled');
|
|
|
|
this.$settings.tabs('option', 'disabled', []);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* disables tab and navigation buttons
|
|
|
|
*/
|
|
|
|
disableTabs: function() {
|
|
|
|
$('.ldap_action_continue').attr('disabled', 'disabled');
|
|
|
|
$('.ldap_action_back').attr('disabled', 'disabled');
|
|
|
|
this.$settings.tabs('option', 'disabled', [1, 2, 3, 4, 5]);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* shows a save spinner
|
|
|
|
*/
|
|
|
|
showSaveSpinner: function() {
|
|
|
|
this.$saveSpinners.removeClass('hidden');
|
|
|
|
$('#ldap *').addClass('save-cursor');
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* hides the save spinner
|
|
|
|
*/
|
|
|
|
hideSaveSpinner: function() {
|
|
|
|
this.$saveSpinners.addClass('hidden');
|
|
|
|
$('#ldap *').removeClass('save-cursor');
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* performs a config load request to the model
|
|
|
|
*
|
|
|
|
* @param {string} [configID]
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_requestConfig: function(configID) {
|
|
|
|
this.configModel.load(configID);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* bootstraps the visual appearance and event listeners, as well as the
|
|
|
|
* first config
|
|
|
|
*/
|
|
|
|
render: function () {
|
|
|
|
$('#ldapAdvancedAccordion').accordion({ heightStyle: 'content', animate: 'easeInOutCirc'});
|
|
|
|
this.$settings.tabs({});
|
2015-11-05 15:43:50 +03:00
|
|
|
$('#ldapSettings button:not(.icon-default-style):not(.ui-multiselect)').button();
|
LDAP Wizard Overhaul
wizard refactor
reimplement save spinners and cursor
implement Port detector
introduced detector queue, added base dn detector
disable input fields when detectors are running
introduce spinners for fields that are being updated by detector
cache jq element objects
consolidate processing of detector results in generic / abstract base class
display notification if a detector discovered a problem
don't run base dn detector if a base is configured
reset detector queue on configuration switch
implement functionality check and update of status indicator
document ConfigModel
jsdoc for controller and main view
more documentation
implement the user filter tab view
so far the multiselects get initialized (not filled yet) and the mode can be switched.
mode is also restored.
reintroduce filter switch confirmation in admin XP mode
new detector for user object classes. so we also load user object classes if necessary and are able to save and show the setting.
multiselect trigger save actions now on close only
show spinners automatically, when a detector is running
20k limit for object classes preselection test
adjust wordings, fix grammar
add group (for users tab) detector
also includes wording fixes
error presentation moved from detectors to view, where it belongs
add info label to users page
missing wording changes
show effective LDAP filter in Assisted Mode
add user filter detector
implement count button for users and limit all count actions to 1001 for performance reasons
make port field a bit bigger. not perfect though.
do not detect port automatically
implement login filter tab view
only load features in assisted mode and don't enable assisted fields while in raw mode
add tooltips on login filter checkbox options for better understanding
permanently show filter on login tab
and also compile login filter in assisted mode
test/verify button on login attributes tab, with backend changes.
only run wizard requests if your an active tab. also run compile filter requests when switching to assisted mode
underline toggle filter links to stress that they are clickable
unity user and group tab functionality in common abstract class, add group filter tab view. only detectors and template adjustments left to have group tab implementation complete
add object class and group detector for groups as well as filter composer
show ldap filter permanently on groups tab
introduce input element that can deal better with many groups, will be used with > 40
fix disabling complex group chooser while detection is running
hide complex group chooser on config switch
fix few more issues with complex chooser
make complex group chooser available on Users tab as well
detect base dn improvements/changes:
- do not look for Base DN automatically, offer a button instead
- fix for alternative way to detect a base dn (if agent dn is not given)
- do not trigger filter composers on config switch
Changes with configuration chooser controls
- "New" was removed out of the configuration list
- and split into buttons "add" and "copy"
- delete button is also now an icon
add test button for Base DN
reimplement advanced tab. The save button is gone.
reimplement expert tab
remove unused methods
implement mail attribute detector
implement user display name attribute detection
implement member group association detector
replace text input with textarea for raw filter input
finish functionality check
auto-enable good configurations, as it was before
cleanup
move save confirmation handling to base class, reduces code duplication
enable tabs only if no running save processes are left.
move onConfigLoaded to base class, avoids code duplication
simplify, save LOCs
Test Configuration button to be dealt with in main view as it is a cross-tab element
require detectorQueue in constructor
cleanup
put bootstrap into a function and thus make it testable
get rid of old stuff
2015-03-03 13:56:03 +03:00
|
|
|
$('#ldapSettings').tabs({ beforeActivate: this.onTabChange });
|
2015-10-21 15:37:42 +03:00
|
|
|
$('#ldapSettings :input').tooltip({placement: "right", container: "body", trigger: "hover"});
|
LDAP Wizard Overhaul
wizard refactor
reimplement save spinners and cursor
implement Port detector
introduced detector queue, added base dn detector
disable input fields when detectors are running
introduce spinners for fields that are being updated by detector
cache jq element objects
consolidate processing of detector results in generic / abstract base class
display notification if a detector discovered a problem
don't run base dn detector if a base is configured
reset detector queue on configuration switch
implement functionality check and update of status indicator
document ConfigModel
jsdoc for controller and main view
more documentation
implement the user filter tab view
so far the multiselects get initialized (not filled yet) and the mode can be switched.
mode is also restored.
reintroduce filter switch confirmation in admin XP mode
new detector for user object classes. so we also load user object classes if necessary and are able to save and show the setting.
multiselect trigger save actions now on close only
show spinners automatically, when a detector is running
20k limit for object classes preselection test
adjust wordings, fix grammar
add group (for users tab) detector
also includes wording fixes
error presentation moved from detectors to view, where it belongs
add info label to users page
missing wording changes
show effective LDAP filter in Assisted Mode
add user filter detector
implement count button for users and limit all count actions to 1001 for performance reasons
make port field a bit bigger. not perfect though.
do not detect port automatically
implement login filter tab view
only load features in assisted mode and don't enable assisted fields while in raw mode
add tooltips on login filter checkbox options for better understanding
permanently show filter on login tab
and also compile login filter in assisted mode
test/verify button on login attributes tab, with backend changes.
only run wizard requests if your an active tab. also run compile filter requests when switching to assisted mode
underline toggle filter links to stress that they are clickable
unity user and group tab functionality in common abstract class, add group filter tab view. only detectors and template adjustments left to have group tab implementation complete
add object class and group detector for groups as well as filter composer
show ldap filter permanently on groups tab
introduce input element that can deal better with many groups, will be used with > 40
fix disabling complex group chooser while detection is running
hide complex group chooser on config switch
fix few more issues with complex chooser
make complex group chooser available on Users tab as well
detect base dn improvements/changes:
- do not look for Base DN automatically, offer a button instead
- fix for alternative way to detect a base dn (if agent dn is not given)
- do not trigger filter composers on config switch
Changes with configuration chooser controls
- "New" was removed out of the configuration list
- and split into buttons "add" and "copy"
- delete button is also now an icon
add test button for Base DN
reimplement advanced tab. The save button is gone.
reimplement expert tab
remove unused methods
implement mail attribute detector
implement user display name attribute detection
implement member group association detector
replace text input with textarea for raw filter input
finish functionality check
auto-enable good configurations, as it was before
cleanup
move save confirmation handling to base class, reduces code duplication
enable tabs only if no running save processes are left.
move onConfigLoaded to base class, avoids code duplication
simplify, save LOCs
Test Configuration button to be dealt with in main view as it is a cross-tab element
require detectorQueue in constructor
cleanup
put bootstrap into a function and thus make it testable
get rid of old stuff
2015-03-03 13:56:03 +03:00
|
|
|
|
|
|
|
this.initControls();
|
|
|
|
this.disableTabs();
|
|
|
|
|
|
|
|
this._requestConfig(this.tabs.server.getConfigID());
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* updates the status indicator / bar
|
|
|
|
*
|
|
|
|
* @param {number} [state]
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_updateStatusIndicator: function(state) {
|
|
|
|
var $indicator = $('.ldap_config_state_indicator');
|
|
|
|
var $indicatorLight = $('.ldap_config_state_indicator_sign');
|
|
|
|
|
|
|
|
switch(state) {
|
|
|
|
case this.STATUS_ERROR:
|
|
|
|
$indicator.text(t('user_ldap',
|
|
|
|
'Configuration incorrect'
|
|
|
|
));
|
|
|
|
$indicator.removeClass('ldap_grey');
|
|
|
|
$indicatorLight.addClass('error');
|
|
|
|
$indicatorLight.removeClass('success');
|
|
|
|
break;
|
|
|
|
case this.STATUS_INCOMPLETE:
|
|
|
|
$indicator.text(t('user_ldap',
|
|
|
|
'Configuration incomplete'
|
|
|
|
));
|
|
|
|
$indicator.removeClass('ldap_grey');
|
|
|
|
$indicatorLight.removeClass('error');
|
|
|
|
$indicatorLight.removeClass('success');
|
|
|
|
break;
|
|
|
|
case this.STATUS_SUCCESS:
|
|
|
|
$indicator.text(t('user_ldap', 'Configuration OK'));
|
|
|
|
$indicator.addClass('ldap_grey');
|
|
|
|
$indicatorLight.removeClass('error');
|
|
|
|
$indicatorLight.addClass('success');
|
|
|
|
if(!this.tabs.server.isActive) {
|
|
|
|
this.configModel.set('ldap_configuration_active', 1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* handles a click on the Back button
|
|
|
|
*
|
|
|
|
* @param {WizardView} [view]
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_controlBack: function(view) {
|
|
|
|
var curTabIndex = view.$settings.tabs('option', 'active');
|
|
|
|
if(curTabIndex == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
view.$settings.tabs('option', 'active', curTabIndex - 1);
|
|
|
|
view._controlUpdate(curTabIndex - 1);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* handles a click on the Continue button
|
|
|
|
*
|
|
|
|
* @param {WizardView} [view]
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_controlContinue: function(view) {
|
|
|
|
var curTabIndex = view.$settings.tabs('option', 'active');
|
|
|
|
if(curTabIndex == 3) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
view.$settings.tabs('option', 'active', 1 + curTabIndex);
|
|
|
|
view._controlUpdate(curTabIndex + 1);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* updates the controls (navigation buttons)
|
|
|
|
*
|
|
|
|
* @param {number} [nextTabIndex] - index of the tab being switched to
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_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) {
|
|
|
|
$('.ldap_action_back').removeClass('invisible');
|
|
|
|
$('.ldap_action_continue').addClass('invisible');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
OCA.LDAP.Wizard.WizardView = WizardView;
|
|
|
|
})();
|