lemonldap-ng/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/_Struct.pm

455 lines
16 KiB
Perl
Raw Normal View History

2009-12-17 20:20:17 +01:00
## @file
# Manager tree structure and tests
## @class
# Manager tree structure and tests
2009-12-11 19:17:00 +01:00
package Lemonldap::NG::Manager::_Struct;
use strict;
our $VERSION = '0.1';
2009-12-17 20:20:17 +01:00
## @method protected hashref cstruct(hashref h,string k)
# Merge $h with the structure produced with $k and return it.
# Used to manage virtual hosts.
#@param $h Result of struct()
#@param $k Name of the virtual host
#@return Tree structure
2009-12-11 19:17:00 +01:00
sub cstruct {
shift;
my ( $h, $k ) = @_;
%$h = (
%$h,
virtualHosts => {
$k => {
_nodes => [qw(rules:rules:rules headers)],
rules => {
_nodes => ["hash:/locationRules/$k:rules:rules"],
_js => 'rulesRoot'
},
headers =>
{ _nodes => ["hash:/exportedHeaders/$k"], _js => 'hashRoot' },
}
}
);
return $h;
}
2009-12-17 20:20:17 +01:00
## @method protected hashref struct(hashref h,string k)
# Returns the tree structure
#@param $h Result of struct()
#@param $k Name of the virtual host
#@return Tree structure
2009-12-11 19:17:00 +01:00
sub struct {
my $self = shift;
2009-12-11 19:17:00 +01:00
return {
_nodes => [qw(n:generalParameters n:groups n:virtualHosts)],
_help => 'default',
######################
# GENERAL PARAMETERS #
######################
2009-12-11 19:17:00 +01:00
generalParameters => {
_nodes => [
qw(portal n:authParams logParams cookieParams cn:exportedVars cn:macros sessionParams n:advancedParams)
2009-12-11 19:17:00 +01:00
],
_help => 'default',
portal => 'text:/portal',
# AUTHENTICATION AND USERDB PARAMETERS
2009-12-11 19:17:00 +01:00
authParams => {
# Displayed nodes depend on authentication/userDB modules choosed
_nodes => sub {
my $self = shift;
my $auth =
$self->param('authentication')
|| $self->conf->{authentication}
|| $self->defaultConf()->{authentication};
my $udb =
$self->param('userDB')
|| $self->conf->{userDB}
|| $self->defaultConf()->{userDB};
$auth = lc($auth);
$udb = lc($udb);
my %res = qw(authentication 1 userDB 1 syslog 1);
foreach my $mod ( ( $auth, ( $auth ne $udb ? $udb : () ) ) )
{
my $tmp = {
ldap => ['ldapParams'],
ssl => [qw(ldapParams SSLRequired)],
}->{$mod};
if ($tmp) {
$res{$_}++ foreach (@$tmp);
}
}
my @u = keys %res;
return \@u;
},
_help => 'authParams',
authentication => 'text:/authentication:authParams:authParams',
userDB => 'text:/userDB:authParams:authParams',
syslog => 'text:/syslog',
ldapParams => {
_nodes => [
qw(ldapServer ldapPort ldapBase managerDn managerPassword)
],
_help => 'ldap',
ldapServer => 'text:/ldapServer',
ldapPort => 'int:/ldapPort',
ldapBase => 'text:/ldapBase',
managerDn => 'text:/managerDn',
managerPassword => 'text:/managerPassword',
},
SSLRequired => 'int:/SSLRequired',
},
# LOGS PARAMETERS
logParams => {
_nodes => [qw(useXForwardedForIP whatToTrace)],
2009-12-14 15:01:46 +01:00
useXForwardedForIP => 'int:/useXForwardedForIP',
whatToTrace => 'text:/whatToTrace:whatToTrace:text',
2009-12-11 19:17:00 +01:00
},
# COOKIE PARAMETERS
2009-12-11 19:17:00 +01:00
cookieParams => {
2009-12-14 15:01:46 +01:00
_nodes =>
[qw(cookieName domain securedCookie cookieExpiration)],
_help => 'cookies',
2009-12-11 19:17:00 +01:00
cookieName => 'text:/cookieName:cookieName:text',
domain => 'text:/domain:domain:text',
securedCookie =>
'int:/securedCookie:securedCookie:securedCookieValues',
2009-12-14 15:01:46 +01:00
cookieExpiration => 'text:/cookieExpiration',
2009-12-11 19:17:00 +01:00
},
# EXPORTED ATTRIBUTES
2009-12-11 19:17:00 +01:00
exportedVars => {
_nodes => ['hash:/exportedVars:vars:btext'],
_js => 'hashRoot'
},
# MACROS
2009-12-11 19:17:00 +01:00
macros =>
{ _nodes => ['hash:/macros:macros:btext'], _js => 'hashRoot' },
# SESSIONS PARAMETERS
2009-12-11 19:17:00 +01:00
sessionParams => {
_nodes => [
qw(sessionStorage singleSession singleIP singleUserByIP timeout storePassword)
],
2009-12-11 19:17:00 +01:00
_help => 'storage',
sessionStorage => {
_nodes => [qw(globalStorage globalStorageOptions)],
globalStorage => 'text:/globalStorage',
globalStorageOptions => {
_nodes => ['hash:/globalStorageOptions'],
_js => 'hashRoot'
},
},
singleSession => 'int:/singleSession',
singleIP => 'int:/singleIP',
singleUserByIP => 'int:/singleUserByIP',
storePassword => 'int:/storePassword',
timeout => 'text:/timeout:timeout:text',
2009-12-11 19:17:00 +01:00
},
# OTHER PARAMETERS
2009-12-14 15:01:46 +01:00
advancedParams => {
_nodes => [
qw(Soap exportedAttr trustedDomains https notifications passwordManagement userControl)
2009-12-14 15:01:46 +01:00
],
Soap => 'int:/Soap',
2009-12-14 15:01:46 +01:00
https => 'int:/https',
exportedAttr => 'text:/exportedAttr',
2009-12-14 15:01:46 +01:00
notifications => {
_nodes => [
qw(notification notificationStorage notificationStorageOptions)
],
_help => 'notifications',
2009-12-14 15:01:46 +01:00
notification => 'int:/notification',
notificationStorage => 'text:/notificationStorage',
2009-12-14 15:01:46 +01:00
notificationStorageOptions => {
_nodes => ['hash:/notificationStorageOptions'],
_js => 'hashRoot'
},
},
passwordManagement => {
_nodes => [
qw(passwordDB SMTPServer mailFrom mailSubject randomPasswordRegexp mailBody)
],
passwordDB => 'text:/passwordDB',
SMTPServer => 'text:/SMTPServer',
mailFrom => 'text:/mailFrom',
mailSubject => 'text:/mailSubject',
randomPasswordRegexp => 'text:/randomPasswordRegexp',
mailBody => 'text:/mailBody',
},
trustedDomains => 'text:/trustedDomains',
userControl => 'text:/userControl:userControl:text',
2009-12-14 15:01:46 +01:00
}
2009-12-11 19:17:00 +01:00
},
##########
# GROUPS #
##########
groups => {
_nodes => ['hash:/groups:groups:btext'],
_js => 'hashRoot',
_help => 'default',
},
#################
# VIRTUAL HOSTS #
#################
virtualHosts => {
_nodes => ['nhash:/locationRules:virtualHosts:none'],
_upload => ['/exportedHeaders'],
_help => 'default',
},
2009-12-11 19:17:00 +01:00
};
}
2009-12-17 20:20:17 +01:00
## @method protected hashref testStruct()
# Returns the tests to do with the datas uploaded.
# @return hashref
2009-12-11 19:17:00 +01:00
sub testStruct {
my $assignTest = qr/(?<=[^=<!>\?])=(?![=~])/;
my $assignMsg = 'containsAnAssignment';
my $perlExpr = sub {
my $e = shift;
eval "use strict;$e";
return 1 if ( $@ =~ /Global symbol "\$.*requires explicit package/ );
return ( $@ ? ( 0, $@ ) : 1 );
};
2009-12-14 15:01:46 +01:00
my $boolean = { test => qr/^(?:0|1)?$/, msgFail => 'Value must be 0 or 1' };
my $pcre = sub {
my $r = shift;
my $q;
eval { $q = qr/$r/ };
return ( $@ ? ( 0, $@ ) : 1 );
};
my $testNotDefined = { test => sub { 1 }, msgFail => 'Ok' };
2009-12-11 19:17:00 +01:00
return {
mailFrom => $testNotDefined,
trustedDomains => $testNotDefined,
exportedAttr => $testNotDefined,
mailSubject => $testNotDefined,
randomPasswordRegexp => $testNotDefined,
passwordDB => $testNotDefined,
mailBody => $testNotDefined,
SMTPServer => $testNotDefined,
cookieExpiration => $testNotDefined,
notificationStorage => $testNotDefined,
authentication => {
2009-12-11 19:17:00 +01:00
test => qr/^[a-zA-Z][\w\:]*$/,
msgFail => 'Bad module name',
},
cda => $boolean,
2009-12-11 19:17:00 +01:00
cookieName => {
test => qr/^[a-zA-Z]\w*$/,
msgFail => 'Bad cookie name',
},
domain => {
test => qr/^\.?\w+(?:\.[a-zA-Z]\w*)*(?:\.[a-zA-Z]+)$/,
msgFail => 'Bad domain',
},
exportedHeaders => {
keyTest => qr/^[a-zA-Z](?:[\w\-\.]*\w)?$/,
keyMsgFail => 'Bad virtual host name',
'*' => {
keyTest => qr/^\w([\w\-]*\w)?$/,
keyMsgFail => 'Bad header name',
test => $perlExpr,
warnTest => sub {
my $e = shift;
return ( 0, $assignMsg ) if ( $e =~ $assignTest );
1;
},
},
},
exportedVars => {
keyTest => qr/^[a-zA-Z]\w*$/,
keyMsgFail => 'Bad variable name',
test => qr/^[a-zA-Z]\w*$/,
msgFail => 'Bad attribute name',
2009-12-11 19:17:00 +01:00
},
globalStorage => {
test => qr/^[\w:]+$/,
msgFail => 'Bad module name',
},
globalStorageOptions => {
keyTest => qr/^\w+$/,
keyMsgFail => 'Bad parameter',
},
groups => {
keyTest => qr/^\w[\w-]*$/,
keyMsgFail => 'Bad group name',
test => $perlExpr,
warnTest => sub {
my $e = shift;
return ( 0, $assignMsg ) if ( $e =~ $assignTest );
1;
},
},
https => $boolean,
2009-12-11 19:17:00 +01:00
ldapBase => {
test => qr/^(?:\w+=.*|)$/,
msgFail => 'Bad LDAP base',
},
ldapPort => {
test => qr/^\d*$/,
msgFail => 'Bad port number'
},
ldapServer => {
test => sub {
my $l = shift;
my @s = split( /[\s,]+/, $l );
foreach my $s (@s) {
$s =~
/^(?:ldap(?:s|\+tls|i):\/\/)?\w[\w\-\.]+\w(?::\d{0,5})?\/?$/
or return ( 0, "Bad ldap uri \"$s\"" );
}
return 1;
},
},
locationRules => {
keyTest => qr/^[a-zA-Z](?:[\w\-\.]*\w)?$/,
msgFail => 'Bad virtual host name',
'*' => {
keyTest => $pcre,
test => sub {
2009-12-11 19:17:00 +01:00
my $e = shift;
return 1 if ( $e eq 'accept' or $e eq 'deny' );
if ( $e =~ s/^logout(?:_(?:app|sso|app_sso))?\s*// ) {
return (
$e =~ /^(?:https?:\/\/\S+)?$/
? 1
: ( 0, "bad url \"$e\"" )
);
}
return &$perlExpr($e);
},
warnTest => sub {
my $e = shift;
return ( 0, $assignMsg )
if ( $e =~ $assignTest
and $e !~ /^(?:accept|deny|logout)/ );
1;
},
},
},
macros => {
keyTest => qr/^[a-zA-Z]\w*$/,
keyMsgFail => 'Bad macro name',
2009-12-11 19:17:00 +01:00
test => $perlExpr,
warnTest => sub {
my $e = shift;
return ( 0, $assignMsg ) if ( $e =~ $assignTest );
1;
},
},
managerDn => {
test => qr/^(?:\w+=.*,\w+=.*)?$/,
msgFail => 'Bad LDAP dn',
},
managerPassword => {
test => qr/^\S+$/,
msgFail => 'Bad LDAP password',
2009-12-11 19:17:00 +01:00
},
notification => $boolean,
notificationStorage => {
test => qr/^[\w:]+$/,
msgFail => 'Bad module name',
},
notificationStorageOptions => {
keyTest => qr/^\w+$/,
keyMsgFail => 'Bad parameter',
},
portal => {
test => qr/^https?:\/\/\S+$/,
msgFail => 'Bad portal value',
},
2009-12-14 15:01:46 +01:00
protection => {
keyTest => qr/^(?:none|authentificate|manager|)$/,
msgFail => 'must be one of none authentificate manager',
},
securedCookie => {
test => qr/^(?:0|1|2)$/,
msgFail => 'securedCookie must be 0, 1 or 2',
},
2009-12-14 15:01:46 +01:00
singleSession => $boolean,
singleIP => $boolean,
singleUserByIP => $boolean,
Soap => $boolean,
SSLRequired => $boolean,
storePassword => $boolean,
syslog => {
test => qw/^(?:auth|authpriv|daemon|local\d|user)?$/,
msgFail =>
'Only auth|authpriv|daemon|local0-7|user is allowed here',
},
timeout => {
test => qr/^\d*$/,
msgFail => 'Bad number'
},
userControl => {
test => $pcre,
msgFail => 'Bad regular expression',
},
userDB => {
test => qr/^[a-zA-Z][\w\:]*$/,
msgFail => 'Bad module name',
},
useXForwardedForIP => $boolean,
whatToTrace => {
test => qr/^\$?[a-zA-Z]\w*$/,
msgFail => 'Bad value',
},
2009-12-11 19:17:00 +01:00
};
}
2009-12-17 20:20:17 +01:00
## @method protected hashref defaultConf()
#@return Hashref of default values
2009-12-11 19:17:00 +01:00
sub defaultConf {
return {
authentication => 'LDAP',
cda => '0',
cookieName => 'lemonldap',
domain => 'example.com',
exportedVars => { cn => 'cn', mail => 'mail', uid => 'uid', },
globalStorage => 'Apache::Session::File',
2009-12-14 15:01:46 +01:00
globalStorageOptions => {
'Directory' => '/var/lib/lemonldap-ng/sessions/',
2009-12-14 15:01:46 +01:00
'LockDirectory' => '/var/lib/lemonldap-ng/sessions/lock/'
},
https => '0',
ldapBase => 'dc=example,dc=com',
ldapPort => '389',
ldapServer => 'localhost',
managerDn => '',
managerPassword => '',
notification => '0',
notificationStorage => 'File',
notificationStorageOptions =>
{ dirName => '/var/lib/lemonldap-ng/notifications', },
portal => 'http://auth.example.com/',
protection => 'none',
securedCookie => '0',
singleSession => '0',
singleIP => '0',
singleUserByIP => '0',
Soap => '1',
SSLRequired => '0',
storePassword => '0',
syslog => '',
timeout => '7200',
userControl => '^[\w\.\-@]+$',
userDB => 'LDAP',
useXForwardedForIP => '0',
whatToTrace => '$uid',
2009-12-11 19:17:00 +01:00
};
}
1;