lemonldap-ng/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Tree.pm

1324 lines
61 KiB
Perl
Raw Normal View History

# This file describes the manager tree.
# You can only use the following keys:
# * title: the name of the node
# * nodes: the subnodes of the node
# * group: grouped subnodes (see RSAKey form for example)
# * form: only for nodes, the form to display when selected
#
# Conf parameters are just strings in the `nodes` array
#
2017-11-05 19:57:56 +01:00
# Important point: fields preceded by '*' are downloaded during manager
# initialization and available directly in $scope array. Example: '*portal'
# implies that portal value is available in $scope.portal
#
# All other ideas have to be set in Manager/Build/Attributes.pm !
2017-11-05 19:57:54 +01:00
# DON'T FORGET TO RUN "make json" AFTER EACH CHANGE
package Lemonldap::NG::Manager::Build::Tree;
our $VERSION = '2.0.10';
2015-12-28 23:09:22 +01:00
# TODO: Missing:
# * activeTimer
# * confirmFormMethod
# * redirectFormMethod
sub tree {
2019-02-07 09:27:56 +01:00
return [ {
2019-02-05 11:51:39 +01:00
title => 'generalParameters',
2019-02-07 09:27:56 +01:00
nodes => [ {
2019-02-05 11:51:39 +01:00
title => 'portalParams',
help => 'portal.html',
nodes => [
2016-03-03 21:59:22 +01:00
'*portal',
2019-02-05 11:51:39 +01:00
{
title => 'portalMenu',
help => 'portalmenu.html',
2019-02-07 09:27:56 +01:00
nodes => [ {
2019-02-05 11:51:39 +01:00
title => 'portalModules',
form => 'simpleInputContainer',
nodes => [
'portalDisplayLogout',
'portalDisplayChangePassword',
'portalDisplayAppslist',
2017-09-15 12:32:15 +02:00
'portalDisplayLoginHistory',
'portalDisplayOidcConsents',
]
},
'applicationList'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'portalCustomization',
help => 'portalcustom.html',
nodes => [
2018-10-11 22:06:35 +02:00
'portalMainLogo',
'showLanguages',
'portalCustomCss',
'portalSkin',
'portalSkinBackground',
'portalSkinRules',
2019-02-05 11:51:39 +01:00
{
title => 'portalButtons',
2018-10-12 22:31:12 +02:00
help => 'portalcustom.html#buttons',
form => 'simpleInputContainer',
nodes => [
'portalCheckLogins',
'portalDisplayResetPassword',
'passwordResetAllowedRetries',
'portalDisplayRegister',
'portalDisplayCertificateResetByMail'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'passwordManagement',
help =>
2020-05-21 15:13:24 +02:00
'portalcustom.html#password-management',
form => 'simpleInputContainer',
nodes => [
'portalRequireOldPassword',
'hideOldPassword',
'mailOnPasswordChange',
2020-08-29 22:50:29 +02:00
]
},
{
title => 'passwordPolicy',
help => 'portalcustom.html#password-policy',
form => 'simpleInputContainer',
2020-08-29 22:50:29 +02:00
nodes => [
'passwordPolicyActivation',
'portalDisplayPasswordPolicy',
'passwordPolicyMinSize',
'passwordPolicyMinLower',
'passwordPolicyMinUpper',
'passwordPolicyMinDigit',
'passwordPolicyMinSpeChar',
'passwordPolicySpecialChar',
]
},
2019-02-05 11:51:39 +01:00
{
title => 'portalOther',
help =>
2020-05-21 15:13:24 +02:00
'portalcustom.html#other-parameters',
form => 'simpleInputContainer',
nodes => [
'portalUserAttr',
'portalOpenLinkInNewWindow',
'portalAntiFrame',
2017-04-27 12:21:46 +02:00
'portalPingInterval',
'portalErrorOnExpiredSession',
'portalErrorOnMailNotFound',
'portalDisplayRefreshMyRights',
]
}
]
},
2019-02-05 11:51:39 +01:00
{
title => 'portalCaptcha',
help => 'captcha.html',
2018-07-22 23:43:06 +02:00
form => 'simpleInputContainer',
nodes => [
'captcha_login_enabled',
'captcha_mail_enabled',
'captcha_register_enabled',
'captcha_size',
]
}
]
},
2019-02-05 11:51:39 +01:00
{
title => 'authParams',
help =>
2020-05-21 15:13:24 +02:00
'start.html#authentication-users-and-password-databases',
form => 'authParams',
nodes => [
'authentication', 'userDB', 'passwordDB', 'registerDB'
],
2019-02-07 09:27:56 +01:00
nodes_cond => [ {
2019-02-05 11:51:39 +01:00
title => 'adParams',
help => 'authad.html',
2019-01-22 22:35:57 +01:00
form => 'simpleInputContainer',
nodes => [ 'ADPwdMaxAge', 'ADPwdExpireWarning' ]
},
2019-02-05 11:51:39 +01:00
{
title => 'choiceParams',
help => 'authchoice.html',
2019-09-12 18:42:53 +02:00
nodes => [
2020-12-27 00:45:06 +01:00
'authChoiceParam', 'authChoiceModules',
'authChoiceAuthBasic', 'authChoiceFindUser'
2019-09-12 18:42:53 +02:00
]
},
2019-02-05 11:51:39 +01:00
{
title => 'apacheParams',
help => 'authapache.html',
form => 'simpleInputContainer',
nodes => ['apacheAuthnLevel']
},
2019-02-05 11:51:39 +01:00
{
title => 'casParams',
help => 'authcas.html',
2018-11-07 21:58:21 +01:00
form => 'simpleInputContainer',
2017-04-15 15:21:33 +02:00
nodes => ['casAuthnLevel']
},
2019-02-05 11:51:39 +01:00
{
title => 'dbiParams',
help => 'authdbi.html',
nodes => [
'dbiAuthnLevel',
'dbiExportedVars',
2019-02-05 11:51:39 +01:00
{
title => 'dbiConnection',
help => 'authdbi.html#connection',
2019-02-07 09:27:56 +01:00
nodes => [ {
2019-02-05 11:51:39 +01:00
title => 'dbiConnectionAuth',
2016-12-29 07:25:07 +01:00
form => 'simpleInputContainer',
nodes => [
'dbiAuthChain',
'dbiAuthUser',
'dbiAuthPassword'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'dbiConnectionUser',
2016-12-29 07:25:07 +01:00
form => 'simpleInputContainer',
nodes => [
'dbiUserChain',
'dbiUserUser',
'dbiUserPassword'
]
}
]
},
2019-02-05 11:51:39 +01:00
{
title => 'dbiSchema',
help => 'authdbi.html#schema',
form => 'simpleInputContainer',
nodes => [
'dbiAuthTable',
'dbiUserTable',
'dbiAuthLoginCol',
'dbiAuthPasswordCol',
'dbiPasswordMailCol',
'userPivot'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'dbiPassword',
help => 'authdbi.html#password',
2017-06-23 11:57:07 +02:00
nodes => [
'dbiAuthPasswordHash',
2019-02-05 11:51:39 +01:00
{
title => 'dbiDynamicHash',
2017-06-23 11:57:07 +02:00
help => 'authdbi.html#password',
form => 'simpleInputContainer',
nodes => [
'dbiDynamicHashEnabled',
'dbiDynamicHashValidSchemes',
2019-02-05 11:51:39 +01:00
'dbiDynamicHashValidSaltedSchemes',
'dbiDynamicHashNewPasswordScheme'
2017-06-23 11:57:07 +02:00
]
}
]
}
]
},
2019-02-05 11:51:39 +01:00
{
title => 'demoParams',
help => 'authdemo.html',
nodes => ['demoExportedVars']
},
2019-02-05 11:51:39 +01:00
{
title => 'facebookParams',
help => 'authfacebook.html',
nodes => [
'facebookAuthnLevel', 'facebookExportedVars',
'facebookAppId', 'facebookAppSecret',
2018-06-22 18:16:24 +02:00
'facebookUserField'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'kerberosParams',
2019-01-22 22:35:57 +01:00
form => 'simpleInputContainer',
2017-04-19 12:52:18 +02:00
help => 'authkerberos.html',
2018-02-21 06:48:06 +01:00
nodes => [
'krbAuthnLevel', 'krbKeytab',
'krbByJs', 'krbRemoveDomain',
'krbAllowedDomains',
2018-02-21 06:48:06 +01:00
]
},
2019-02-05 11:51:39 +01:00
{
title => 'ldapParams',
help => 'authldap.html',
nodes => [
'ldapAuthnLevel',
'ldapExportedVars',
2019-02-05 11:51:39 +01:00
{
title => 'ldapConnection',
help => 'authldap.html#connection',
form => 'simpleInputContainer',
nodes => [
'ldapServer', 'ldapPort',
'ldapVerify', 'ldapBase',
'managerDn', 'managerPassword',
'ldapTimeout', 'ldapIOTimeout',
'ldapVersion', 'ldapRaw',
2020-12-03 20:53:57 +01:00
'ldapCAFile', 'ldapCAPath',
]
},
2019-02-05 11:51:39 +01:00
{
title => 'ldapFilters',
help => 'authldap.html#filters',
form => 'simpleInputContainer',
nodes => [
'LDAPFilter', 'AuthLDAPFilter',
'mailLDAPFilter', 'ldapSearchDeref',
]
},
2019-02-05 11:51:39 +01:00
{
title => 'ldapGroups',
help => 'authldap.html#groups',
form => 'simpleInputContainer',
nodes => [
'ldapGroupBase',
'ldapGroupObjectClass',
'ldapGroupAttributeName',
'ldapGroupAttributeNameUser',
'ldapGroupAttributeNameSearch',
'ldapGroupDecodeSearchedValue',
'ldapGroupRecursive',
'ldapGroupAttributeNameGroup'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'ldapPassword',
help => 'authldap.html#password',
form => 'simpleInputContainer',
nodes => [
'ldapPpolicyControl',
'ldapSetPassword',
'ldapChangePasswordAsUser',
'ldapPwdEnc',
'ldapUsePasswordResetAttribute',
'ldapPasswordResetAttribute',
'ldapPasswordResetAttributeValue',
'ldapAllowResetExpiredPassword',
'ldapITDS'
]
},
]
},
2019-02-05 11:51:39 +01:00
{
title => 'linkedinParams',
help => 'authlinkedin.html',
2018-11-07 21:58:21 +01:00
form => 'simpleInputContainer',
nodes => [
'linkedInAuthnLevel', 'linkedInClientID',
'linkedInClientSecret', 'linkedInFields',
'linkedInUserField', 'linkedInScope'
]
},
{
title => 'githubParams',
help => 'authgithub.html',
form => 'simpleInputContainer',
nodes => [
'githubAuthnLevel', 'githubClientID',
'githubClientSecret', 'githubUserField',
'githubScope'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'combinationParams',
help => 'authcombination.html',
2017-02-15 07:41:50 +01:00
nodes => [ 'combination', 'combModules' ]
},
2019-02-05 11:51:39 +01:00
{
title => 'nullParams',
help => 'authnull.html',
form => 'simpleInputContainer',
nodes => ['nullAuthnLevel']
},
2019-02-05 11:51:39 +01:00
{
title => 'openidParams',
help => 'authopenid.html',
nodes => [
'openIdAuthnLevel', 'openIdExportedVars',
'openIdSecret', 'openIdIDPList'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'oidcParams',
help => 'authopenidconnect.html',
2018-11-07 21:58:21 +01:00
form => 'simpleInputContainer',
nodes => [
'oidcAuthnLevel',
'oidcRPCallbackGetParam',
'oidcRPStateTimeout'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'gpgParams',
help => 'authgpg.html',
form => 'simpleInputContainer',
2019-04-05 22:39:58 +02:00
nodes => [ 'gpgAuthnLevel', 'gpgDb' ],
2019-02-05 11:51:39 +01:00
},
{
title => 'proxyParams',
help => 'authproxy.html',
form => 'simpleInputContainer',
nodes => [
'proxyAuthnLevel', 'proxyAuthService',
'proxySessionService', 'remoteCookieName',
2017-01-10 13:36:11 +01:00
'proxyUseSoap'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'pamParams',
2017-03-14 16:34:10 +01:00
help => 'authpam.html',
form => 'simpleInputContainer',
2019-04-05 22:39:58 +02:00
nodes => [ 'pamAuthnLevel', 'pamService' ]
2017-03-14 16:34:10 +01:00
},
2019-02-05 11:51:39 +01:00
{
title => 'radiusParams',
help => 'authradius.html',
form => 'simpleInputContainer',
nodes => [
'radiusAuthnLevel', 'radiusSecret',
'radiusServer'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'restParams',
help => 'authrest.html',
form => 'simpleInputContainer',
nodes => [
'restAuthnLevel', 'restAuthUrl',
'restUserDBUrl', 'restPwdConfirmUrl',
'restPwdModifyUrl', 'restFindUserDBUrl'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'remoteParams',
help => 'authremote.html',
nodes => [
'remotePortal',
'remoteCookieName',
'remoteGlobalStorage',
'remoteGlobalStorageOptions'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'slaveParams',
help => 'authslave.html',
nodes => [
'slaveAuthnLevel', 'slaveUserHeader',
'slaveMasterIP', 'slaveHeaderName',
'slaveHeaderContent', 'slaveDisplayLogo',
'slaveExportedVars',
]
},
2019-02-05 11:51:39 +01:00
{
title => 'sslParams',
help => 'authssl.html',
2017-04-11 21:19:59 +02:00
nodes => [
'SSLAuthnLevel', 'SSLVar',
'SSLVarIf', 'sslByAjax',
2017-04-11 21:19:59 +02:00
'sslHost',
]
},
2019-02-05 11:51:39 +01:00
{
title => 'twitterParams',
help => 'authtwitter.html',
form => 'simpleInputContainer',
nodes => [
'twitterAuthnLevel', 'twitterKey',
'twitterSecret', 'twitterAppName',
2018-06-22 18:16:24 +02:00
'twitterUserField'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'webidParams',
help => 'authwebid.html',
nodes => [
'webIDAuthnLevel', 'webIDExportedVars',
'webIDWhitelist'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'customParams',
help => 'authcustom.html',
nodes => [
'customAuth', 'customUserDB',
'customPassword', 'customRegister',
'customResetCertByMail', 'customAddParams',
]
},
],
'nodes_filter' => 'authParams'
},
2019-02-05 11:51:39 +01:00
{
title => 'issuerParams',
2020-05-21 15:13:24 +02:00
help => 'start.html#identity-provider',
2019-02-07 09:27:56 +01:00
nodes => [ {
2019-02-05 11:51:39 +01:00
title => 'issuerDBSAML',
help => 'idpsaml.html',
form => 'simpleInputContainer',
nodes => [
'issuerDBSAMLActivation', 'issuerDBSAMLPath',
'issuerDBSAMLRule'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'issuerDBCAS',
2020-05-21 15:13:24 +02:00
help => 'idpcas.html#enabling-cas',
2018-07-22 23:43:06 +02:00
form => 'simpleInputContainer',
nodes => [
'issuerDBCASActivation', 'issuerDBCASPath',
'issuerDBCASRule',
]
},
2019-02-05 11:51:39 +01:00
{
title => 'issuerDBOpenID',
help => 'idpopenid.html',
nodes => [
'issuerDBOpenIDActivation',
'issuerDBOpenIDPath',
'issuerDBOpenIDRule',
2019-02-05 11:51:39 +01:00
{
title => 'issuerDBOpenIDOptions',
nodes => [
'openIdIssuerSecret',
'openIdAttr',
'openIdSPList',
2019-02-05 11:51:39 +01:00
{
title => 'openIdSreg',
form => 'simpleInputContainer',
nodes => [
'openIdSreg_fullname',
'openIdSreg_nickname',
'openIdSreg_language',
'openIdSreg_postcode',
'openIdSreg_timezone',
'openIdSreg_country',
'openIdSreg_gender',
'openIdSreg_email',
'openIdSreg_dob'
]
}
]
}
]
},
2019-02-05 11:51:39 +01:00
{
title => 'issuerDBOpenIDConnect',
help => 'idpopenidconnect.html',
2018-07-22 23:43:06 +02:00
form => 'simpleInputContainer',
nodes => [
'issuerDBOpenIDConnectActivation',
'issuerDBOpenIDConnectPath',
'issuerDBOpenIDConnectRule',
]
2016-06-03 13:34:14 +02:00
},
2019-02-05 11:51:39 +01:00
{
title => 'issuerDBGet',
2017-03-04 16:03:53 +01:00
help => 'issuerdbget.html',
2016-06-03 13:34:14 +02:00
nodes => [
'issuerDBGetActivation',
'issuerDBGetPath',
'issuerDBGetRule',
'issuerDBGetParameters'
]
},
2019-09-03 22:51:43 +02:00
{
title => 'issuerOptions',
help => 'start.html#options',
form => 'simpleInputContainer',
nodes => ['issuersTimeout']
},
]
},
2019-02-05 11:51:39 +01:00
{
title => 'logParams',
help => 'logs.html',
form => 'simpleInputContainer',
2020-12-03 20:53:57 +01:00
nodes =>
[ 'whatToTrace', 'customToTrace', 'hiddenAttributes' ]
},
2019-02-05 11:51:39 +01:00
{
title => 'cookieParams',
help => 'ssocookie.html',
form => 'simpleInputContainer',
nodes => [
'cookieName', '*domain',
'cda', 'securedCookie',
'httpOnly', 'cookieExpiration',
2020-01-20 06:21:09 +01:00
'sameSite',
]
},
2019-02-05 11:51:39 +01:00
{
title => 'sessionParams',
help => 'sessions.html',
nodes => [
'storePassword',
'displaySessionId',
'timeout',
'timeoutActivity',
'timeoutActivityInterval',
'grantSessionRules',
2019-02-05 11:51:39 +01:00
{
title => 'sessionStorage',
2020-05-21 15:13:24 +02:00
help => 'start.html#sessions-database',
nodes => [
'globalStorage',
'globalStorageOptions',
'localSessionStorage',
'localSessionStorageOptions'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'multipleSessions',
form => 'simpleInputContainer',
nodes => [
'singleSession', 'singleIP',
'singleUserByIP', 'notifyDeleted',
2020-05-24 00:04:33 +02:00
'notifyOther'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'persistentSessions',
nodes => [
2019-07-01 13:28:01 +02:00
'disablePersistentStorage',
'persistentStorage',
'persistentStorageOptions'
]
},
]
},
2019-02-05 11:51:39 +01:00
{
title => 'reloadParams',
2020-05-21 15:13:24 +02:00
help => 'configlocation.html#configuration-reload',
nodes => [ 'reloadTimeout', 'compactConf', 'reloadUrls' ]
},
2019-02-05 11:51:39 +01:00
{
title => 'plugins',
2018-10-12 22:31:12 +02:00
help => 'start.html#plugins',
nodes => [
2017-01-16 22:00:50 +01:00
'portalStatus',
2018-11-29 23:06:10 +01:00
'upgradeSession',
2019-12-23 16:54:59 +01:00
'refreshSessions',
'adaptativeAuthenticationLevelRules',
2020-11-04 11:49:30 +01:00
{
title => 'stayConnect',
help => 'stayconnected.html',
form => 'simpleInputContainer',
nodes => [
'stayConnected',
'stayConnectedTimeout',
'stayConnectedCookieName'
],
},
2019-02-05 11:51:39 +01:00
{
title => 'portalServers',
2017-08-30 18:47:28 +02:00
help => 'portalservers.html',
2019-02-01 19:55:10 +01:00
form => 'simpleInputContainer',
nodes => [
'wsdlServer', 'restExportSecretKeys',
'restClockTolerance', 'restSessionServer',
'restConfigServer', 'restAuthServer',
'restPasswordServer', 'soapSessionServer',
'soapConfigServer', 'exportedAttr',
]
},
2019-02-05 11:51:39 +01:00
{
title => 'loginHistory',
help => 'loginhistory.html',
nodes => [
'loginHistoryEnabled',
'successLoginNumber',
'failedLoginNumber',
'sessionDataToRemember'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'notifications',
help => 'notifications.html',
nodes => [
'notification',
2020-02-09 17:47:25 +01:00
'notificationsExplorer',
2020-02-13 20:10:27 +01:00
'notificationWildcard',
'oldNotifFormat',
2020-02-13 20:10:27 +01:00
'notificationXSLTfile',
'notificationStorage',
'notificationStorageOptions',
2019-07-25 11:59:00 +02:00
{
title => 'serverNotification',
2020-08-25 22:58:47 +02:00
help =>
'notifications.html#notification-server',
2019-07-25 11:59:00 +02:00
nodes => [
'notificationServer',
2019-11-18 17:34:56 +01:00
'notificationDefaultCond',
2019-07-25 11:59:00 +02:00
'notificationServerSentAttributes',
{
title =>
'notificationServerMethods',
form => 'simpleInputContainer',
nodes => [
'notificationServerPOST',
'notificationServerGET',
'notificationServerDELETE',
]
},
]
},
]
},
2019-02-05 11:51:39 +01:00
{
title => 'passwordManagement',
help => 'resetpassword.html',
2019-02-07 09:27:56 +01:00
nodes => [ {
2019-02-05 11:51:39 +01:00
title => 'mailContent',
form => 'simpleInputContainer',
nodes => [
'mailSubject',
'mailBody',
'mailConfirmSubject',
'mailConfirmBody'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'mailOther',
form => 'simpleInputContainer',
nodes => [
'mailUrl',
'mailTimeout',
'portalDisplayGeneratePassword',
2019-01-18 23:33:34 +01:00
'randomPasswordRegexp',
]
}
]
},
{
title => 'certificateResetByMailManagement',
help => 'resetcertificate.html',
nodes => [ {
title => 'certificateMailContent',
form => 'simpleInputContainer',
nodes => [
'certificateResetByMailStep1Subject',
'certificateResetByMailStep1Body',
'certificateResetByMailStep2Subject',
'certificateResetByMailStep2Body'
]
},
{
title => 'mailOther',
form => 'simpleInputContainer',
nodes => [
'certificateResetByMailURL',
'certificateResetByMailCeaAttribute',
'certificateResetByMailCertificateAttribute',
'certificateResetByMailValidityDelay'
]
}
]
},
2019-02-05 11:51:39 +01:00
{
title => 'register',
help => 'register.html',
form => 'simpleInputContainer',
nodes => [
2017-11-02 17:16:21 +01:00
'registerUrl',
'registerTimeout',
'registerConfirmSubject',
'registerDoneSubject'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'autoSignin',
2018-07-20 23:09:07 +02:00
help => 'autosignin.html',
2018-07-22 22:35:30 +02:00
nodes => ['autoSigninRules'],
2017-10-27 15:11:30 +02:00
},
{
title => 'globalLogout',
help => 'globallogout.html',
form => 'simpleInputContainer',
nodes => [
'globalLogoutRule',
'globalLogoutTimer',
'globalLogoutCustomParam'
],
},
2019-02-05 11:51:39 +01:00
{
title => 'stateCheck',
2018-05-15 21:20:31 +02:00
help => 'checkstate.html',
2018-08-09 08:21:09 +02:00
form => 'simpleInputContainer',
2018-07-22 22:35:30 +02:00
nodes => [ 'checkState', 'checkStateSecret', ],
2018-05-15 21:20:31 +02:00
},
{
title => 'checkUsers',
help => 'checkuser.html',
nodes => [
'checkUser',
2019-03-09 23:29:10 +01:00
'checkUserIdRule',
'checkUserUnrestrictedUsersRule',
'checkUserHiddenAttributes',
'checkUserSearchAttributes',
'checkUserDisplayComputedSession',
'checkUserDisplayEmptyHeaders',
'checkUserDisplayEmptyValues',
2020-02-28 23:21:24 +01:00
'checkUserDisplayPersistentInfo',
'checkUserHiddenHeaders'
]
},
2019-03-03 20:50:21 +01:00
{
title => 'impersonation',
help => 'impersonation.html',
2020-12-21 21:55:51 +01:00
form => 'simpleInputContainer',
2019-03-07 18:22:16 +01:00
nodes => [
'impersonationRule',
'impersonationIdRule',
'impersonationUnrestrictedUsersRule',
'impersonationHiddenAttributes',
'impersonationSkipEmptyValues',
2020-12-21 21:55:51 +01:00
'impersonationMergeSSOgroups'
]
},
{
2020-12-27 00:45:06 +01:00
title => 'findUsers',
2020-12-21 21:55:51 +01:00
help => 'finduser.html',
nodes => [
2020-12-20 17:31:50 +01:00
'findUser',
'findUserWildcard',
'findUserControl',
2020-12-20 17:31:50 +01:00
'findUserSearchingAttributes',
'findUserExcludingAttributes'
2019-03-03 20:50:21 +01:00
]
},
2019-06-21 14:49:38 +02:00
{
title => 'contextSwitching',
help => 'contextswitching.html',
form => 'simpleInputContainer',
nodes => [
'contextSwitchingRule',
'contextSwitchingIdRule',
'contextSwitchingUnrestrictedUsersRule',
'contextSwitchingAllowed2fModifications',
2019-06-21 14:49:38 +02:00
'contextSwitchingStopWithLogout',
]
},
2019-09-30 21:50:32 +02:00
{
title => 'decryptValue',
2019-10-13 15:40:49 +02:00
help => 'decryptvalue.html',
2019-09-30 21:50:32 +02:00
form => 'simpleInputContainer',
nodes =>
[ 'decryptValueRule', 'decryptValueFunctions', ]
2019-09-30 21:50:32 +02:00
},
2019-12-07 21:30:56 +01:00
{
title => 'customPluginsNode',
help => 'plugincustom.html',
nodes => [ 'customPlugins', 'customPluginsParams' ]
},
2018-02-21 06:48:06 +01:00
]
},
2019-02-05 11:51:39 +01:00
{
title => 'secondFactors',
2018-10-12 22:31:12 +02:00
help => 'secondfactor.html',
nodes => [
'sfManagerRule',
'sfRequired',
'sfOnlyUpgrade',
{
2019-02-05 11:51:39 +01:00
title => 'utotp2f',
help => 'utotp2f.html',
form => 'simpleInputContainer',
nodes => [
'utotp2fActivation', 'utotp2fAuthnLevel',
'utotp2fLabel', 'utotp2fLogo'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'totp2f',
2018-02-21 06:57:51 +01:00
help => 'totp2f.html',
2018-02-21 06:48:06 +01:00
form => 'simpleInputContainer',
nodes => [
2018-03-18 14:26:45 +01:00
'totp2fActivation',
'totp2fSelfRegistration',
'totp2fIssuer',
'totp2fInterval',
'totp2fRange',
2018-02-21 22:07:12 +01:00
'totp2fDigits',
2018-03-18 14:26:45 +01:00
'totp2fDisplayExistingSecret',
'totp2fUserCanChangeKey',
'totp2fUserCanRemoveKey',
2019-06-07 19:25:40 +02:00
'totp2fTTL',
'totp2fAuthnLevel',
'totp2fLabel',
'totp2fLogo',
2018-02-21 06:48:06 +01:00
]
},
2019-02-05 11:51:39 +01:00
{
title => 'u2f',
2018-07-10 23:02:47 +02:00
help => 'u2f.html',
form => 'simpleInputContainer',
nodes => [
'u2fActivation', 'u2fSelfRegistration',
'u2fUserCanRemoveKey', 'u2fTTL',
'u2fAuthnLevel', 'u2fLabel',
'u2fLogo',
2018-07-10 23:02:47 +02:00
]
},
2020-02-16 22:42:10 +01:00
{
title => 'yubikey2f',
help => 'yubikey2f.html',
form => 'simpleInputContainer',
nodes => [
'yubikey2fActivation',
'yubikey2fSelfRegistration',
'yubikey2fClientID',
'yubikey2fSecretKey',
'yubikey2fNonce',
'yubikey2fUrl',
'yubikey2fPublicIDSize',
'yubikey2fUserCanRemoveKey',
'yubikey2fFromSessionAttribute',
2020-02-16 22:42:10 +01:00
'yubikey2fTTL',
'yubikey2fAuthnLevel',
'yubikey2fLabel',
'yubikey2fLogo',
],
},
2019-02-05 11:51:39 +01:00
{
title => 'mail2f',
2019-02-03 14:43:44 +01:00
help => 'mail2f.html',
form => 'simpleInputContainer',
nodes => [
2019-02-05 11:51:39 +01:00
'mail2fActivation', 'mail2fCodeRegex',
'mail2fTimeout', 'mail2fSubject',
'mail2fBody', 'mail2fAuthnLevel',
'mail2fLabel', 'mail2fLogo',
2020-12-03 20:53:57 +01:00
'mail2fSessionKey',
2019-02-03 14:43:44 +01:00
]
},
2019-02-05 11:51:39 +01:00
{
title => 'ext2f',
2017-03-22 23:18:28 +01:00
help => 'external2f.html',
form => 'simpleInputContainer',
nodes => [
2019-02-14 22:10:48 +01:00
'ext2fActivation', 'ext2fCodeActivation',
'ext2FSendCommand', 'ext2FValidateCommand',
'ext2fAuthnLevel', 'ext2fLabel',
'ext2fLogo',
2017-03-22 23:18:28 +01:00
]
2018-02-23 09:38:33 +01:00
},
2019-07-12 11:53:22 +02:00
{
title => 'radius2f',
help => 'radius2f.html',
form => 'simpleInputContainer',
nodes => [
'radius2fActivation',
'radius2fServer',
'radius2fSecret',
'radius2fUsernameSessionKey',
'radius2fTimeout',
'radius2fAuthnLevel',
'radius2fLogo',
'radius2fLabel',
]
},
2019-02-05 11:51:39 +01:00
{
title => 'rest2f',
2018-02-23 09:38:33 +01:00
help => 'rest2f.html',
nodes => [
2019-02-05 11:51:39 +01:00
'rest2fActivation', 'rest2fInitUrl',
'rest2fInitArgs', 'rest2fVerifyUrl',
'rest2fVerifyArgs', 'rest2fAuthnLevel',
'rest2fLabel', 'rest2fLogo',
2018-02-23 09:38:33 +01:00
]
2017-03-22 23:18:28 +01:00
},
2019-07-31 16:31:04 +02:00
'sfExtra',
2019-06-16 15:57:31 +02:00
{
title => 'sfRemovedNotification',
help => 'secondfactor.html',
form => 'simpleInputContainer',
nodes => [
'sfRemovedMsgRule', 'sfRemovedUseNotif',
'sfRemovedNotifRef', 'sfRemovedNotifTitle',
2019-06-16 15:57:31 +02:00
'sfRemovedNotifMsg',
],
},
2017-03-01 07:41:42 +01:00
]
},
2019-02-05 11:51:39 +01:00
{
title => 'advancedParams',
2020-05-21 15:13:24 +02:00
help => 'start.html#advanced-features',
2017-03-01 07:41:42 +01:00
nodes => [
'customFunctions',
2018-11-28 22:24:10 +01:00
'multiValuesSeparator',
'groupsBeforeMacros',
2019-02-05 11:51:39 +01:00
{
title => 'SMTP',
help => 'smtp.html',
form => 'SMTP',
2019-02-05 11:51:39 +01:00
nodes => [
'mailSessionKey',
'SMTPServer',
'SMTPPort',
'SMTPAuthUser',
'SMTPAuthPass',
'SMTPTLS',
'SMTPTLSOpts',
{
title => 'mailHeaders',
form => 'simpleInputContainer',
2019-01-19 16:04:03 +01:00
nodes => [
2019-02-05 11:51:39 +01:00
'mailFrom', 'mailReplyTo',
'mailCharset'
2019-01-19 16:04:03 +01:00
]
2019-02-05 11:51:39 +01:00
},
]
2019-01-19 16:04:03 +01:00
},
2019-02-05 11:51:39 +01:00
{
title => 'security',
2020-05-21 15:13:24 +02:00
help => 'security.html#configure-security-settings',
nodes => [
'userControl',
'browsersDontStorePassword',
'portalForceAuthn',
'portalForceAuthnInterval',
'key',
'trustedDomains',
'useSafeJail',
'avoidAssignment',
2016-12-29 07:25:07 +01:00
'checkXSS',
2018-11-29 23:06:10 +01:00
'requireToken',
'formTimeout',
'tokenUseGlobalStorage',
{
title => 'bruteForceAttackProtection',
help => 'bruteforceprotection.html',
form => 'simpleInputContainer',
nodes => [
'bruteForceProtection',
2020-08-25 22:58:47 +02:00
'bruteForceProtectionTempo',
'bruteForceProtectionMaxFailed',
'bruteForceProtectionIncrementalTempo',
2020-08-25 22:58:47 +02:00
'bruteForceProtectionLockTimes',
]
},
2017-02-15 16:08:23 +01:00
'lwpOpts',
'lwpSslOpts',
2019-02-05 11:51:39 +01:00
{
title => 'contentSecurityPolicy',
help => 'security.html#portal',
form => 'simpleInputContainer',
nodes => [
'cspDefault', 'cspImg',
'cspScript', 'cspStyle',
'cspFont', 'cspFormAction',
'cspConnect', 'cspFrameAncestors'
]
2017-01-24 23:05:07 +01:00
},
2019-05-31 17:00:39 +02:00
{
title => 'crossOrigineResourceSharing',
help => 'security.html#portal',
form => 'simpleInputContainer',
nodes => [
'corsEnabled',
'corsAllow_Credentials',
'corsAllow_Headers',
'corsAllow_Methods',
'corsAllow_Origin',
'corsExpose_Headers',
2019-05-31 17:00:39 +02:00
'corsMax_Age',
]
},
]
},
2019-02-05 11:51:39 +01:00
{
title => 'redirection',
help => 'redirections.html',
form => 'simpleInputContainer',
nodes => [
'https',
'port',
'useRedirectOnForbidden',
'useRedirectOnError',
2016-02-01 11:18:37 +01:00
'maintenance'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'portalRedirection',
2020-05-21 15:13:24 +02:00
help => 'redirections.html#portal-redirections',
form => 'simpleInputContainer',
nodes => [
'jsRedirect',
'noAjaxHook',
'skipRenewConfirmation',
'skipUpgradeConfirmation',
]
},
2016-12-29 07:25:07 +01:00
'nginxCustomHandlers',
'logoutServices',
2019-02-05 11:51:39 +01:00
{
title => 'forms',
2018-10-17 23:06:50 +02:00
form => 'simpleInputContainer',
nodes => [
2019-02-05 11:51:39 +01:00
'infoFormMethod', 'confirmFormMethod',
'redirectFormMethod', 'activeTimer',
]
},
]
}
]
},
2019-02-05 11:51:39 +01:00
{
title => 'variables',
2017-03-04 16:03:53 +01:00
help => 'variables.html',
nodes => [ 'exportedVars', 'macros', 'groups' ]
},
'virtualHosts',
2019-02-05 11:51:39 +01:00
{
title => 'samlServiceMetaData',
help => 'samlservice.html',
nodes => [
'samlEntityID',
2019-02-05 11:51:39 +01:00
{
title => 'samlServiceSecurity',
2020-05-21 15:13:24 +02:00
help => 'samlservice.html#security-parameters',
2019-02-07 09:27:56 +01:00
nodes => [ {
2019-02-05 11:51:39 +01:00
title => 'samlServiceSecuritySig',
form => 'RSACertKey',
group => [
'samlServicePrivateKeySig',
'samlServicePrivateKeySigPwd',
'samlServicePublicKeySig'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'samlServiceSecurityEnc',
form => 'RSACertKey',
group => [
'samlServicePrivateKeyEnc',
'samlServicePrivateKeyEncPwd',
'samlServicePublicKeyEnc'
]
},
'samlServiceUseCertificateInResponse',
'samlServiceSignatureMethod'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'samlNameIDFormatMap',
2020-05-21 15:13:24 +02:00
help => 'samlservice.html#nameid-formats',
form => 'simpleInputContainer',
nodes => [
'samlNameIDFormatMapEmail',
'samlNameIDFormatMapX509',
'samlNameIDFormatMapWindows',
'samlNameIDFormatMapKerberos'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'samlAuthnContextMap',
2020-05-21 15:13:24 +02:00
help => 'samlservice.html#authentication-contexts',
form => 'simpleInputContainer',
nodes => [
'samlAuthnContextMapPassword',
'samlAuthnContextMapPasswordProtectedTransport',
'samlAuthnContextMapTLSClient',
'samlAuthnContextMapKerberos'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'samlOrganization',
help => 'samlservice.html#organization',
form => 'simpleInputContainer',
nodes => [
'samlOrganizationDisplayName',
'samlOrganizationName',
'samlOrganizationURL'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'samlSPSSODescriptor',
2020-05-21 15:13:24 +02:00
help => 'samlservice.html#service-provider',
nodes => [
'samlSPSSODescriptorAuthnRequestsSigned',
'samlSPSSODescriptorWantAssertionsSigned',
2019-02-05 11:51:39 +01:00
{
title => 'samlSPSSODescriptorSingleLogoutService',
nodes => [
2019-02-05 11:51:39 +01:00
'samlSPSSODescriptorSingleLogoutServiceHTTPRedirect',
'samlSPSSODescriptorSingleLogoutServiceHTTPPost',
'samlSPSSODescriptorSingleLogoutServiceSOAP'
]
},
2019-02-05 11:51:39 +01:00
{
title =>
'samlSPSSODescriptorAssertionConsumerService',
nodes => [
2019-02-05 11:51:39 +01:00
'samlSPSSODescriptorAssertionConsumerServiceHTTPArtifact',
'samlSPSSODescriptorAssertionConsumerServiceHTTPPost'
]
},
2019-02-05 11:51:39 +01:00
{
title =>
'samlSPSSODescriptorArtifactResolutionService',
nodes => [
2019-02-05 11:51:39 +01:00
'samlSPSSODescriptorArtifactResolutionServiceArtifact'
]
}
]
},
2019-02-05 11:51:39 +01:00
{
title => 'samlIDPSSODescriptor',
2020-05-21 15:13:24 +02:00
help => 'samlservice.html#identity-provider',
nodes => [
'samlIDPSSODescriptorWantAuthnRequestsSigned',
2019-02-05 11:51:39 +01:00
{
title => 'samlIDPSSODescriptorSingleSignOnService',
nodes => [
2019-02-05 11:51:39 +01:00
'samlIDPSSODescriptorSingleSignOnServiceHTTPRedirect',
'samlIDPSSODescriptorSingleSignOnServiceHTTPPost',
'samlIDPSSODescriptorSingleSignOnServiceHTTPArtifact',
]
},
2019-02-05 11:51:39 +01:00
{
title => 'samlIDPSSODescriptorSingleLogoutService',
nodes => [
2019-02-05 11:51:39 +01:00
'samlIDPSSODescriptorSingleLogoutServiceHTTPRedirect',
'samlIDPSSODescriptorSingleLogoutServiceHTTPPost',
'samlIDPSSODescriptorSingleLogoutServiceSOAP'
]
},
2019-02-05 11:51:39 +01:00
{
title =>
'samlIDPSSODescriptorArtifactResolutionService',
nodes => [
2019-02-05 11:51:39 +01:00
'samlIDPSSODescriptorArtifactResolutionServiceArtifact'
]
}
]
},
2019-02-05 11:51:39 +01:00
{
title => 'samlAttributeAuthorityDescriptor',
2020-05-21 15:13:24 +02:00
help => 'samlservice.html#attribute-authority',
2019-02-07 09:27:56 +01:00
nodes => [ {
2019-02-05 11:51:39 +01:00
title =>
'samlAttributeAuthorityDescriptorAttributeService',
nodes => [
2019-02-05 11:51:39 +01:00
'samlAttributeAuthorityDescriptorAttributeServiceSOAP'
]
}
]
},
2019-02-05 11:51:39 +01:00
{
title => 'samlAdvanced',
help => 'samlservice.html#advanced',
nodes => [
'samlMetadataForceUTF8',
'samlRelayStateTimeout',
'samlUseQueryStringSpecific',
2020-03-02 23:06:38 +01:00
'samlOverrideIDPEntityID',
'samlStorage',
'samlStorageOptions',
2019-02-05 11:51:39 +01:00
{
title => 'samlCommonDomainCookie',
form => 'simpleInputContainer',
nodes => [
'samlCommonDomainCookieActivation',
'samlCommonDomainCookieDomain',
'samlCommonDomainCookieReader',
'samlCommonDomainCookieWriter'
]
},
2019-02-05 11:51:39 +01:00
{
title => 'samlDiscoveryProtocol',
form => 'simpleInputContainer',
nodes => [
'samlDiscoveryProtocolActivation',
'samlDiscoveryProtocolURL',
'samlDiscoveryProtocolPolicy',
'samlDiscoveryProtocolIsPassive'
]
},
]
}
]
},
'samlIDPMetaDataNodes',
'samlSPMetaDataNodes',
2019-02-05 11:51:39 +01:00
{
title => 'oidcServiceMetaData',
2020-05-21 15:13:24 +02:00
help => 'openidconnectservice.html#service-configuration',
nodes => [
'oidcServiceMetaDataIssuer',
2019-02-05 11:51:39 +01:00
{
title => 'oidcServiceMetaDataEndPoints',
form => 'simpleInputContainer',
nodes => [
'oidcServiceMetaDataAuthorizeURI',
'oidcServiceMetaDataTokenURI',
'oidcServiceMetaDataUserInfoURI',
'oidcServiceMetaDataJWKSURI',
'oidcServiceMetaDataRegistrationURI',
'oidcServiceMetaDataIntrospectionURI',
'oidcServiceMetaDataEndSessionURI',
'oidcServiceMetaDataCheckSessionURI',
2017-03-10 12:39:19 +01:00
'oidcServiceMetaDataFrontChannelURI',
'oidcServiceMetaDataBackChannelURI',
]
},
'oidcServiceMetaDataAuthnContext',
2019-02-05 11:51:39 +01:00
{
title => 'oidcServiceMetaDataSecurity',
2019-02-07 09:27:56 +01:00
nodes => [ {
2019-02-05 11:51:39 +01:00
title => 'oidcServiceMetaDataKeys',
form => 'RSAKeyNoPassword',
group => [
'oidcServicePrivateKeySig',
'oidcServicePublicKeySig',
],
},
2015-06-05 14:55:06 +02:00
'oidcServiceKeyIdSig',
'oidcServiceAllowDynamicRegistration',
'oidcServiceAllowAuthorizationCodeFlow',
'oidcServiceAllowImplicitFlow',
'oidcServiceAllowHybridFlow',
'oidcServiceAuthorizationCodeExpiration',
'oidcServiceAccessTokenExpiration',
'oidcServiceIDTokenExpiration',
'oidcServiceOfflineSessionExpiration',
],
},
2019-02-05 11:51:39 +01:00
{
title => "oidcServiceMetaDataSessions",
nodes => [ 'oidcStorage', 'oidcStorageOptions', ],
},
'oidcServiceDynamicRegistrationExportedVars',
'oidcServiceDynamicRegistrationExtraClaims',
]
},
'oidcOPMetaDataNodes',
'oidcRPMetaDataNodes',
2019-02-05 11:51:39 +01:00
{
title => 'casServiceMetadata',
2020-05-21 15:13:24 +02:00
help => 'idpcas.html#configuring-the-cas-service',
nodes => [
'casAttr',
'casAccessControlPolicy',
'casStorage',
'casStorageOptions',
'casAttributes',
]
2017-04-15 15:21:33 +02:00
},
2017-04-12 18:45:49 +02:00
'casSrvMetaDataNodes',
'casAppMetaDataNodes',
];
}
1;