1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
<?php
namespace Icinga\Module\Director\Forms;
use gipfl\Web\Widget\Hint;
use Icinga\Exception\IcingaException;
use Icinga\Module\Director\Acl;
use Icinga\Module\Director\Auth\Permission;
use Icinga\Module\Director\Data\Db\DbObjectStore;
use Icinga\Module\Director\Db\Branch\Branch;
use Icinga\Module\Director\Objects\IcingaCommand;
use Icinga\Module\Director\Objects\IcingaHost;
use Icinga\Module\Director\Objects\IcingaObject;
use Icinga\Module\Director\Objects\IcingaService;
use Icinga\Module\Director\Objects\IcingaServiceSet;
use Icinga\Module\Director\Web\Form\DirectorForm;
class IcingaCloneObjectForm extends DirectorForm
{
/** @var IcingaObject */
protected $object;
protected $baseObjectUrl;
/** @var Branch */
protected $branch;
public function setup()
{
$isBranch = $this->branch && $this->branch->isBranch();
$branchOnly = $this->object->get('id') === null;
if (
$isBranch
&& $this->object->isTemplate()
&& ! $this->object instanceof IcingaServiceSet
) {
$this->addHtml(Hint::error($this->translate(
'Templates cannot be cloned in Configuration Branches'
)));
$this->submitLabel = false;
return;
}
$name = $this->object->getObjectName();
$this->addElement('text', 'new_object_name', array(
'label' => $this->translate('New name'),
'required' => true,
'value' => $name,
));
if (!$branchOnly && Acl::instance()->hasPermission(Permission::ADMIN)) {
$this->addElement('select', 'clone_type', array(
'label' => 'Clone type',
'required' => true,
'multiOptions' => array(
'equal' => $this->translate('Clone the object as is, preserving imports'),
'flat' => $this->translate('Flatten all inherited properties, strip imports'),
)
));
}
if (
!$branchOnly && ($this->object instanceof IcingaHost
|| $this->object instanceof IcingaServiceSet)
) {
$this->addBoolean('clone_services', [
'label' => $this->translate('Clone Services'),
'description' => $this->translate(
'Also clone single Services defined for this Host'
)
], 'y');
}
if (!$branchOnly && $this->object instanceof IcingaHost) {
$this->addBoolean('clone_service_sets', [
'label' => $this->translate('Clone Service Sets'),
'description' => $this->translate(
'Also clone single Service Sets defined for this Host'
)
], 'y');
}
if ($this->object instanceof IcingaService) {
if ($this->object->get('service_set_id') !== null) {
$this->addElement('select', 'target_service_set', [
'label' => $this->translate('Target Service Set'),
'description' => $this->translate(
'Clone this service to the very same or to another Service Set'
),
'multiOptions' => $this->enumServiceSets(),
'value' => $this->object->get('service_set_id')
]);
} elseif ($this->object->get('host_id') !== null) {
$this->addElement('text', 'target_host', [
'label' => $this->translate('Target Host'),
'description' => $this->translate(
'Clone this service to the very same or to another Host'
),
'value' => $this->object->get('host'),
'class' => "autosubmit director-suggest",
'data-suggestion-context' => 'HostsAndTemplates',
]);
}
}
if (
($this->object->isTemplate() || $this->object instanceof IcingaCommand)
&& $this->object->supportsFields()
) {
$this->addBoolean('clone_fields', [
'label' => $this->translate('Clone Template Fields'),
'description' => $this->translate(
'Also clone fields provided by this Template'
)
], 'y');
}
$this->submitLabel = sprintf(
$this->translate('Clone "%s"'),
$name
);
}
public function setBranch(Branch $branch)
{
$this->branch = $branch;
return $this;
}
public function setObjectBaseUrl($url)
{
$this->baseObjectUrl = $url;
return $this;
}
public function onSuccess()
{
$object = $this->object;
$table = $object->getTableName();
$type = $object->getShortTableName();
$connection = $object->getConnection();
$db = $connection->getDbAdapter();
$newName = $this->getValue('new_object_name');
$resolve = Acl::instance()->hasPermission(Permission::ADMIN)
&& $this->getValue('clone_type') === 'flat';
$msg = sprintf(
'The %s "%s" has been cloned from "%s"',
$type,
$newName,
$object->getObjectName()
);
$isBranch = $this->branch && $this->branch->isBranch();
if (
$isBranch
&& $this->object->isTemplate()
&& ! $this->object instanceof IcingaServiceSet
) {
throw new IcingaException('Cloning templates is not available for Branches');
}
if ($object->isTemplate() && $object->getObjectName() === $newName) {
throw new IcingaException(
$this->translate('Name needs to be changed when cloning a Template')
);
}
$new = $object::fromPlainObject(
$object->toPlainObject($resolve),
$connection
)->set('object_name', $newName);
if ($new->isExternal()) {
$new->set('object_type', 'object');
}
if ($set = $this->getValue('target_service_set')) {
$new->set(
'service_set_id',
IcingaServiceSet::loadWithAutoIncId((int) $set, $connection)->get('id')
);
} elseif ($host = $this->getValue('target_host')) {
$new->set('host', $host);
}
$services = [];
$sets = [];
if ($object instanceof IcingaHost) {
$new->set('api_key', null);
if ($this->getValue('clone_services') === 'y') {
$services = $object->fetchServices();
}
if ($this->getValue('clone_service_sets') === 'y') {
$sets = $object->fetchServiceSets();
}
} elseif ($object instanceof IcingaServiceSet) {
if ($this->getValue('clone_services') === 'y') {
$services = $object->fetchServices();
}
}
if ($this->getValue('clone_fields') === 'y') {
$fields = $db->fetchAll(
$db->select()
->from($table . '_field')
->where("{$type}_id = ?", $object->get('id'))
);
} else {
$fields = [];
}
$store = new DbObjectStore($connection, $this->branch);
if ($store->store($new)) {
$newId = $new->get('id');
foreach ($services as $service) {
$clone = IcingaService::fromPlainObject(
$service->toPlainObject(),
$connection
);
if ($new instanceof IcingaHost) {
if ($isBranch) {
$clone->set('host', $newName);
} else {
$clone->set('host_id', $newId);
}
} elseif ($new instanceof IcingaServiceSet) {
if ($isBranch) {
$clone->set('service_set', $newName);
} else {
$clone->set('service_set_id', $newId);
}
}
$store->store($clone);
}
foreach ($sets as $set) {
$newSet = IcingaServiceSet::fromPlainObject(
$set->toPlainObject(),
$connection
);
if ($isBranch) {
$newSet->set('host', $newName);
} else {
$newSet->set('host_id', $newId);
}
$store->store($newSet);
}
foreach ($fields as $row) {
$row->{"{$type}_id"} = $newId;
$db->insert($table . '_field', (array) $row);
}
if ($new instanceof IcingaServiceSet) {
$this->setSuccessUrl(
'director/serviceset',
$new->getUrlParams()
);
} else {
$this->setSuccessUrl(
$this->baseObjectUrl ?: 'director/' . strtolower($type),
$new->getUrlParams()
);
}
$this->redirectOnSuccess($msg);
}
}
protected function enumServiceSets()
{
$db = $this->object->getConnection()->getDbAdapter();
return $db->fetchPairs(
$db->select()
->from('icinga_service_set', ['id', 'object_name'])
->where('object_type = ?', 'template')
->order('object_name')
);
}
public function setObject(IcingaObject $object)
{
$this->object = $object;
return $this;
}
}
|