153 lines
4.5 KiB
PHP
153 lines
4.5 KiB
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
use Icinga\Data\Filter\Filter;
|
|
use Icinga\Exception\ProgrammingError;
|
|
use Icinga\Module\Director\IcingaConfig\IcingaConfig;
|
|
use Icinga\Module\Director\IcingaConfig\IcingaLegacyConfigHelper as c1;
|
|
|
|
class IcingaHostGroup extends IcingaObjectGroup
|
|
{
|
|
protected $table = 'icinga_hostgroup';
|
|
|
|
/** @var HostGroupMembershipResolver */
|
|
protected $hostgroupMembershipResolver;
|
|
|
|
public function supportsAssignments()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function renderToLegacyConfig(IcingaConfig $config)
|
|
{
|
|
if ($this->get('assign_filter') !== null) {
|
|
$this->renderLegacyApplyToConfig($config);
|
|
} else {
|
|
parent::renderToLegacyConfig($config);
|
|
}
|
|
}
|
|
|
|
protected function getHostGroupMembershipResolver()
|
|
{
|
|
if ($this->hostgroupMembershipResolver === null) {
|
|
$this->hostgroupMembershipResolver = new HostGroupMembershipResolver(
|
|
$this->getConnection()
|
|
);
|
|
}
|
|
|
|
return $this->hostgroupMembershipResolver;
|
|
}
|
|
|
|
public function setHostGroupMembershipResolver(HostGroupMembershipResolver $resolver)
|
|
{
|
|
$this->hostgroupMembershipResolver = $resolver;
|
|
return $this;
|
|
}
|
|
|
|
protected function notifyResolvers()
|
|
{
|
|
$resolver = $this->getHostGroupMembershipResolver();
|
|
$resolver->addGroup($this);
|
|
$resolver->refreshDb();
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param IcingaConfig $config
|
|
*
|
|
* @throws ProgrammingError When IcingaConfig deployment mode is not supported
|
|
*/
|
|
protected function renderLegacyApplyToConfig(IcingaConfig $config)
|
|
{
|
|
$conn = $this->getConnection();
|
|
|
|
$filter = Filter::fromQueryString($this->get('assign_filter'));
|
|
$hosts = HostApplyMatches::forFilter($filter, $conn);
|
|
$this->set('object_type', 'object');
|
|
|
|
$zoneMap = array();
|
|
|
|
foreach ($hosts as $hostname) {
|
|
$host = IcingaHost::load($hostname, $this->connection);
|
|
|
|
if (($zoneId = $host->getResolvedProperty('zone_id')) !== null) {
|
|
$zoneMap[$zoneId][] = $hostname;
|
|
} else {
|
|
$zoneMap[0][] = $hostname;
|
|
}
|
|
}
|
|
|
|
if (empty($zoneMap)) {
|
|
// no hosts matched
|
|
$file = $this->legacyZoneHostgroupFile($config);
|
|
$this->properties['members'] = array();
|
|
$file->addLegacyObject($this);
|
|
} else {
|
|
$allMembers = array();
|
|
|
|
// make sure we write to all zones
|
|
// so host -> group relations are still possible
|
|
foreach (IcingaObject::loadAllByType('zone', $conn) as $zone) {
|
|
if (! array_key_exists($zone->id, $zoneMap)) {
|
|
$zoneMap[$zone->id] = array();
|
|
}
|
|
}
|
|
|
|
foreach ($zoneMap as $zoneId => $members) {
|
|
$file = $this->legacyZoneHostgroupFile($config, $zoneId);
|
|
$this->properties['members'] = $members;
|
|
$file->addLegacyObject($this);
|
|
|
|
$allMembers = array_merge($allMembers, $members);
|
|
}
|
|
|
|
$deploymentMode = $config->getDeploymentMode();
|
|
if ($deploymentMode === 'active-passive') {
|
|
$this->properties['members'] = $allMembers;
|
|
$this->legacyZoneHostgroupFile($config, 0)
|
|
->addLegacyObject($this);
|
|
} elseif ($deploymentMode == 'masterless') {
|
|
// nothing to add
|
|
} else {
|
|
throw new ProgrammingError('Unsupported deployment mode: %s' . $deploymentMode);
|
|
}
|
|
}
|
|
}
|
|
|
|
protected function legacyZoneHostgroupFile(IcingaConfig $config, $zoneId = null)
|
|
{
|
|
if ($zoneId !== null) {
|
|
$zone = IcingaZone::load($zoneId, $this->getConnection())->getObjectName();
|
|
} else {
|
|
$zone = $this->connection->getDefaultGlobalZoneName();
|
|
}
|
|
return $config->configFile(
|
|
'director/' . $zone . '/hostgroups',
|
|
'.cfg'
|
|
);
|
|
}
|
|
|
|
protected function renderLegacyMembers()
|
|
{
|
|
if (empty($this->properties['members'])) {
|
|
return '';
|
|
}
|
|
return c1::renderKeyValue('members', join(',', $this->properties['members']));
|
|
}
|
|
|
|
/**
|
|
* Note: rendered with renderLegacyMembers()
|
|
*
|
|
* @return string
|
|
*
|
|
* @codingStandardsIgnoreStart
|
|
*/
|
|
protected function renderLegacyAssign_filter()
|
|
{
|
|
// @codingStandardsIgnoreEnd
|
|
return '';
|
|
}
|
|
}
|