IcingaObject: add helper for booleans

This commit is contained in:
Thomas Gelf 2015-11-13 23:59:26 +01:00
parent 5f9fb8eb83
commit 280cd2b7b3
1 changed files with 30 additions and 1 deletions

View File

@ -30,6 +30,8 @@ abstract class IcingaObject extends DbObject implements IcingaConfigRenderer
protected $type;
protected $booleans = array();
private $vars;
private $groups;
@ -42,6 +44,11 @@ abstract class IcingaObject extends DbObject implements IcingaConfigRenderer
private $arguments;
public function propertyIsBoolean($property)
{
return array_key_exists($property, $this->booleans);
}
public function supportsCustomVars()
{
return $this->supportsCustomVars;
@ -120,6 +127,19 @@ abstract class IcingaObject extends DbObject implements IcingaConfigRenderer
return $this;
}
if ($this->propertyIsBoolean($key) && $value !== null) {
if ($value === 'y' || $value === '1' || $value === true || $value === 1) {
return parent::set($key, 'y');
} elseif ($value === 'n' || $value === '0' || $value === false || $value === 0) {
return parent::set($key, 'n');
} else {
throw new ProgrammingError(
'Got invalid boolean: %s',
var_export($value, 1)
);
}
}
return parent::set($key, $value);
}
@ -576,10 +596,19 @@ abstract class IcingaObject extends DbObject implements IcingaConfigRenderer
$method = 'render' . ucfirst($key);
if (method_exists($this, $method)) {
$out .= $this->$method($value);
} else {
if ($this->propertyIsBoolean($key)) {
if ($value !== $this->defaultProperties[$key]) {
$out .= c::renderKeyValue(
$this->booleans[$key],
c::renderBoolean($value)
);
}
} else {
$out .= c::renderKeyValue($key, c::renderString($value));
}
}
}
return $out;
}