422 lines
13 KiB
PHP
422 lines
13 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Icinga\Module\Director\Objects;
|
||
|
|
||
|
use Icinga\Exception\ConfigurationError;
|
||
|
use Icinga\Module\Director\IcingaConfig\IcingaConfigHelper as c;
|
||
|
use Icinga\Exception\NotFoundError;
|
||
|
use Icinga\Data\Filter\Filter;
|
||
|
use Icinga\Module\Director\Objects\HostApplyMatches;
|
||
|
|
||
|
|
||
|
class IcingaDependency extends IcingaObject
|
||
|
{
|
||
|
protected $table = 'icinga_dependency';
|
||
|
|
||
|
protected $defaultProperties = array(
|
||
|
'id' => null,
|
||
|
'object_name' => null,
|
||
|
'object_type' => null,
|
||
|
'disabled' => 'n',
|
||
|
'apply_to' => null,
|
||
|
'parent_host_id' => null,
|
||
|
'parent_service_id' => null,
|
||
|
'child_host_id' => null,
|
||
|
'child_service_id' => null,
|
||
|
'disable_checks' => null,
|
||
|
'disable_notifications' => null,
|
||
|
'ignore_soft_states' => null,
|
||
|
'period_id' => null,
|
||
|
'zone_id' => null,
|
||
|
'assign_filter' => null,
|
||
|
'parent_service_s' => null,
|
||
|
);
|
||
|
|
||
|
protected $supportsCustomVars = false;
|
||
|
|
||
|
protected $supportsImports = true;
|
||
|
|
||
|
protected $supportsApplyRules = true;
|
||
|
|
||
|
protected $relatedSets = array(
|
||
|
'states' => 'StateFilterSet',
|
||
|
);
|
||
|
|
||
|
protected $relations = array(
|
||
|
'zone' => 'IcingaZone',
|
||
|
'parent_host' => 'IcingaHost',
|
||
|
'parent_service' => 'IcingaService',
|
||
|
'child_host' => 'IcingaHost',
|
||
|
'child_service' => 'IcingaService',
|
||
|
'period' => 'IcingaTimePeriod',
|
||
|
);
|
||
|
|
||
|
protected $booleans = array(
|
||
|
'disable_checks' => 'disable_checks',
|
||
|
'disable_notifications' => 'disable_notifications',
|
||
|
'ignore_soft_states' => 'ignore_soft_states'
|
||
|
);
|
||
|
|
||
|
/**
|
||
|
* Do not render internal property apply_to
|
||
|
*
|
||
|
* Avoid complaints for method names with underscore:
|
||
|
* @codingStandardsIgnoreStart
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function renderApply_to()
|
||
|
{
|
||
|
// @codingStandardsIgnoreEnd
|
||
|
return '';
|
||
|
}
|
||
|
|
||
|
protected function renderObjectHeader()
|
||
|
{
|
||
|
if ($this->isApplyRule()) {
|
||
|
if (($to = $this->get('apply_to')) === null) {
|
||
|
throw new ConfigurationError(
|
||
|
'Applied dependency "%s" has no valid object type',
|
||
|
$this->getObjectName()
|
||
|
);
|
||
|
}
|
||
|
|
||
|
return sprintf(
|
||
|
"%s %s %s to %s {\n",
|
||
|
$this->getObjectTypeName(),
|
||
|
$this->getType(),
|
||
|
c::renderString($this->getObjectName()),
|
||
|
ucfirst($to)
|
||
|
);
|
||
|
|
||
|
} else {
|
||
|
return parent::renderObjectHeader();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
protected function setKey($key)
|
||
|
{
|
||
|
if (is_int($key)) {
|
||
|
$this->id = $key;
|
||
|
} elseif (is_array($key)) {
|
||
|
foreach (array('id', 'parent_host_id', 'parent_service_id', 'child_host_id', 'child_service_id', 'object_name') as $k) {
|
||
|
if (array_key_exists($k, $key)) {
|
||
|
$this->set($k, $key[$k]);
|
||
|
}
|
||
|
}
|
||
|
} else {
|
||
|
return parent::setKey($key);
|
||
|
}
|
||
|
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
protected function renderAssignments()
|
||
|
{
|
||
|
if ($this->hasBeenAssignedToServiceApply()) {
|
||
|
|
||
|
$tmpService= $this->getRelatedObject('child_service', $this->child_service_id);
|
||
|
$assigns = $tmpService->assignments()->toConfigString();
|
||
|
|
||
|
$filter = sprintf(
|
||
|
'%s && service.name == "%s"',
|
||
|
trim($assigns), $this->child_service
|
||
|
);
|
||
|
return "\n " . $filter . "\n";
|
||
|
}
|
||
|
|
||
|
if ($this->hasBeenAssignedToHostTemplateService()) {
|
||
|
$filter = sprintf(
|
||
|
'assign where "%s" in host.templates && service.name == "%s"',
|
||
|
$this->child_host, $this->child_service
|
||
|
);
|
||
|
return "\n " . $filter . "\n";
|
||
|
}
|
||
|
if ($this->hasBeenAssignedToHostTemplate()) {
|
||
|
$filter = sprintf(
|
||
|
'assign where "%s" in host.templates',
|
||
|
$this->child_host
|
||
|
);
|
||
|
return "\n " . $filter . "\n";
|
||
|
}
|
||
|
|
||
|
if ($this->hasBeenAssignedToServiceTemplate()) {
|
||
|
$filter = sprintf(
|
||
|
'assign where "%s" in service.templates',
|
||
|
$this->child_service
|
||
|
);
|
||
|
return "\n " . $filter . "\n";
|
||
|
}
|
||
|
|
||
|
return parent::renderAssignments();
|
||
|
}
|
||
|
|
||
|
protected function hasBeenAssignedToHostTemplate()
|
||
|
{
|
||
|
try {
|
||
|
return $this->child_host_id && $this->getRelatedObject(
|
||
|
'child_host',
|
||
|
$this->child_host_id
|
||
|
)->object_type === 'template';
|
||
|
} catch (NotFoundError $e) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
protected function hasBeenAssignedToServiceTemplate()
|
||
|
{
|
||
|
try {
|
||
|
return $this->child_service_id && $this->getRelatedObject(
|
||
|
'child_service',
|
||
|
$this->child_service_id
|
||
|
)->object_type === 'template';
|
||
|
} catch (NotFoundError $e) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
protected function hasBeenAssignedToHostTemplateService()
|
||
|
{
|
||
|
if (!$this->hasBeenAssignedToHostTemplate()) return false;
|
||
|
try {
|
||
|
return $this->child_service_id && $this->getRelatedObject(
|
||
|
'child_service',
|
||
|
$this->child_service_id
|
||
|
)->object_type === 'object';
|
||
|
} catch (NotFoundError $e) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
protected function hasBeenAssignedToServiceApply()
|
||
|
{
|
||
|
try {
|
||
|
return $this->child_service_id && $this->getRelatedObject(
|
||
|
'child_service',
|
||
|
$this->child_service_id
|
||
|
)->object_type === 'apply';
|
||
|
} catch (NotFoundError $e) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Render child_host_id as host_name
|
||
|
*
|
||
|
* Avoid complaints for method names with underscore:
|
||
|
* @codingStandardsIgnoreStart
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function renderChild_host_id()
|
||
|
{
|
||
|
// @codingStandardsIgnoreEnd
|
||
|
|
||
|
if ($this->hasBeenAssignedToHostTemplate()) {
|
||
|
return '';
|
||
|
}
|
||
|
|
||
|
return $this->renderRelationProperty('child_host', $this->child_host_id, 'child_host_name');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Render parent_host_id as parent_host_name
|
||
|
*
|
||
|
* Avoid complaints for method names with underscore:
|
||
|
* @codingStandardsIgnoreStart
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function renderParent_host_id()
|
||
|
{
|
||
|
// @codingStandardsIgnoreEnd
|
||
|
|
||
|
return $this->renderRelationProperty('parent_host', $this->parent_host_id, 'parent_host_name');
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Render child_service_id as host_name
|
||
|
*
|
||
|
* Avoid complaints for method names with underscore:
|
||
|
* @codingStandardsIgnoreStart
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function renderChild_service_id()
|
||
|
{
|
||
|
// @codingStandardsIgnoreEnd
|
||
|
if ($this->hasBeenAssignedToServiceTemplate()) {
|
||
|
return '';
|
||
|
}
|
||
|
|
||
|
if ($this->hasBeenAssignedToHostTemplateService()) {
|
||
|
return '';
|
||
|
}
|
||
|
|
||
|
if ($this->hasBeenAssignedToServiceApply()) {
|
||
|
return '';
|
||
|
}
|
||
|
|
||
|
return $this->renderRelationProperty('child_service', $this->child_service_id, 'child_service_name');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Render parent_service_id as parent_service_name
|
||
|
*
|
||
|
* Avoid complaints for method names with underscore:
|
||
|
* @codingStandardsIgnoreStart
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function renderParent_service_id()
|
||
|
{
|
||
|
return $this->renderRelationProperty('parent_service', $this->parent_service_id, 'parent_service_name');
|
||
|
}
|
||
|
|
||
|
//special case for parent service set as plain string for Apply rules
|
||
|
public function renderParent_service_s()
|
||
|
{
|
||
|
return "\n parent_service_name = \"" . $this->parent_service_s ."\"\n";
|
||
|
}
|
||
|
|
||
|
public function isApplyRule()
|
||
|
{
|
||
|
if ($this->hasBeenAssignedToHostTemplate()) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
if ($this->hasBeenAssignedToServiceTemplate()) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
if ($this->hasBeenAssignedToServiceApply()) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
return $this->hasProperty('object_type')
|
||
|
&& $this->object_type === 'apply';
|
||
|
}
|
||
|
|
||
|
protected function resolveUnresolvedRelatedProperty($name)
|
||
|
{
|
||
|
|
||
|
$short = substr($name, 0, -3);
|
||
|
/** @var IcingaObject $class */
|
||
|
$class = $this->getRelationClass($short);
|
||
|
$obj_key = $this->unresolvedRelatedProperties[$name];
|
||
|
|
||
|
# related services need array key
|
||
|
if ($class == "Icinga\Module\Director\Objects\IcingaService" ) {
|
||
|
if ($name == "parent_service_id" && $this->object_type == 'apply' ) { //special case , parent service can be set as simple string for Apply
|
||
|
if ($this->properties['parent_host_id']==null) {
|
||
|
$this->reallySet('parent_service_s', $this->unresolvedRelatedProperties[$name]);
|
||
|
$this->reallySet('parent_service_id',null);
|
||
|
unset($this->unresolvedRelatedProperties[$name]);
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$this->reallySet('parent_service_s',null);
|
||
|
$host_id_prop=str_replace("service","host",$name);
|
||
|
if (isset($this->properties[$host_id_prop])) {
|
||
|
$obj_key=array("host_id" => $this->properties[$host_id_prop], "object_name" => $this->unresolvedRelatedProperties[$name]);
|
||
|
} else {
|
||
|
$obj_key=array("host_id" => null, "object_name" => $this->unresolvedRelatedProperties[$name]);
|
||
|
}
|
||
|
|
||
|
try {
|
||
|
$object = $class::load( $obj_key, $this->connection);
|
||
|
} catch (NotFoundError $e) {
|
||
|
// Not a simple service on host
|
||
|
// Hunt through inherited services, use service assigned to template if found
|
||
|
$tmp_host=IcingaHost::loadWithAutoIncId($this->properties[$host_id_prop], $this->connection);
|
||
|
|
||
|
//services for applicable templates
|
||
|
$resolver = $tmp_host->templateResolver();
|
||
|
foreach ($resolver->fetchResolvedParents() as $template_obj) {
|
||
|
$obj_key=array("host_id" => $template_obj->id, "object_name" => $this->unresolvedRelatedProperties[$name]);
|
||
|
try {
|
||
|
$object = $class::load( $obj_key, $this->connection);
|
||
|
} catch (NotFoundError $e) {
|
||
|
continue;
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
if (!isset($object)) { //Not an inherited service, now try apply rules
|
||
|
$matcher = HostApplyMatches::prepare($tmp_host);
|
||
|
foreach ($this->getAllApplyRules() as $rule) {
|
||
|
if ($matcher->matchesFilter($rule->filter)) {
|
||
|
if ($rule->name == $this->unresolvedRelatedProperties[$name]) {
|
||
|
$object=IcingaService::loadWithAutoIncId($rule->id, $this->connection);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
} else {
|
||
|
$object = $class::load(
|
||
|
$obj_key,
|
||
|
$this->connection
|
||
|
);
|
||
|
}
|
||
|
|
||
|
if (isset($object)) {
|
||
|
$this->reallySet($name, $object->get('id'));
|
||
|
unset($this->unresolvedRelatedProperties[$name]);
|
||
|
} else {
|
||
|
throw new NotFoundError('Unable to resolve related property: "%s"', $name);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
protected function getAllApplyRules()
|
||
|
{
|
||
|
$allApplyRules=$this->fetchAllApplyRules();
|
||
|
foreach ($allApplyRules as $rule) {
|
||
|
$rule->filter = Filter::fromQueryString($rule->assign_filter);
|
||
|
}
|
||
|
|
||
|
return $allApplyRules;
|
||
|
}
|
||
|
|
||
|
protected function fetchAllApplyRules()
|
||
|
{
|
||
|
$db = $this->connection->getDbAdapter();
|
||
|
$query = $db->select()->from(
|
||
|
array('s' => 'icinga_service'),
|
||
|
array(
|
||
|
'id' => 's.id',
|
||
|
'name' => 's.object_name',
|
||
|
'assign_filter' => 's.assign_filter',
|
||
|
)
|
||
|
)->where('object_type = ? AND assign_filter IS NOT NULL', 'apply');
|
||
|
|
||
|
return $db->fetchAll($query);
|
||
|
}
|
||
|
|
||
|
protected function getRelatedProperty($key)
|
||
|
{
|
||
|
$idKey = $key . '_id';
|
||
|
if ($this->hasUnresolvedRelatedProperty($idKey)) {
|
||
|
return $this->unresolvedRelatedProperties[$idKey];
|
||
|
}
|
||
|
|
||
|
if ($id = $this->get($idKey)) {
|
||
|
/** @var IcingaObject $class */
|
||
|
$class = $this->getRelationClass($key);
|
||
|
$object = $class::loadWithAutoIncId($id, $this->connection);
|
||
|
return $object->get('object_name');
|
||
|
} else {
|
||
|
// handle special case for plain string parent service on Dependency Apply rules
|
||
|
if ($key == 'parent_service' && $this->get('parent_service_s') != null) {
|
||
|
return $this->get('parent_service_s');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
}
|