fixed host restrictions
This commit is contained in:
parent
70010665ed
commit
2a6767a59b
|
@ -502,7 +502,7 @@ function get_preg($argument, $regexp) {
|
||||||
$pregexpr = '/^([A-Za-z0-9\\.\\_-])+$/';
|
$pregexpr = '/^([A-Za-z0-9\\.\\_-])+$/';
|
||||||
break;
|
break;
|
||||||
case "unixhost": // Unix hosts
|
case "unixhost": // Unix hosts
|
||||||
$pregexpr = '/^([a-z0-9,\\.\\_-])*$/';
|
$pregexpr = '/^([a-z0-9,\\.\\*_-])*$/';
|
||||||
break;
|
break;
|
||||||
case 'digit2': // Same as digit but also -1
|
case 'digit2': // Same as digit but also -1
|
||||||
$pregexpr = '/^(([-][1])|([[:digit:]]*))$/';
|
$pregexpr = '/^(([-][1])|([[:digit:]]*))$/';
|
||||||
|
|
|
@ -339,7 +339,7 @@ class inetOrgPerson extends baseModule {
|
||||||
),
|
),
|
||||||
'workstations' => array (
|
'workstations' => array (
|
||||||
"Headline" => _("Unix workstations"),
|
"Headline" => _("Unix workstations"),
|
||||||
"Text" => _("Please enter a comma separated list of host names where this user is allowed to log in. Can be left empty.")
|
"Text" => _("Please enter a comma separated list of host names where this user is allowed to log in. If you enable host restrictions for your servers then \"*\" means every host and an empty field means no host.")
|
||||||
),
|
),
|
||||||
'userPassword' => array(
|
'userPassword' => array(
|
||||||
"Headline" => _("Password"),
|
"Headline" => _("Password"),
|
||||||
|
@ -487,12 +487,15 @@ class inetOrgPerson extends baseModule {
|
||||||
// handle host-attribute in on epice because it's not set by default
|
// handle host-attribute in on epice because it's not set by default
|
||||||
if (isset($this->attributes['host'])) {
|
if (isset($this->attributes['host'])) {
|
||||||
$host = $post['host'];
|
$host = $post['host'];
|
||||||
if (!get_preg($host,'unixhost'))
|
if (!get_preg($host,'unixhost')) {
|
||||||
$triggered_messages['host'][] = $this->messages['host'][0];
|
$triggered_messages['host'][] = $this->messages['host'][0];
|
||||||
|
}
|
||||||
$hosts = explode(",", $host);
|
$hosts = explode(",", $host);
|
||||||
$this->attributes['host'] = array();
|
$this->attributes['host'] = array();
|
||||||
foreach ($hosts as $host)
|
for ($i = 0; $i < sizeof($hosts); $i++)
|
||||||
if ($host!="") $this->attributes['host'][] = $host;
|
if ($hosts[$i] != "") {
|
||||||
|
$this->attributes['host'][] = $hosts[$i];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// Do some regex-checks and return error if attributes are set to wrong values
|
// Do some regex-checks and return error if attributes are set to wrong values
|
||||||
if (($this->attributes['givenName'][0] != '') && !get_preg($this->attributes['givenName'][0], 'realname')) $triggered_messages['givenName'][] = $this->messages['givenName'][0];
|
if (($this->attributes['givenName'][0] != '') && !get_preg($this->attributes['givenName'][0], 'realname')) $triggered_messages['givenName'][] = $this->messages['givenName'][0];
|
||||||
|
|
Loading…
Reference in New Issue