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
|
<?php
namespace Icinga\Module\Businessprocess\Modification;
use Icinga\Module\Businessprocess\BpConfig;
use Icinga\Module\Businessprocess\BpNode;
use Icinga\Module\Businessprocess\Common\Sort;
class NodeMoveAction extends NodeAction
{
use Sort;
/**
* @var string
*/
protected $parent;
/**
* @var string
*/
protected $newParent;
/**
* @var int
*/
protected $from;
/**
* @var int
*/
protected $to;
protected $preserveProperties = ['parent', 'newParent', 'from', 'to'];
public function setParent($name)
{
$this->parent = $name;
}
public function getParent()
{
return $this->parent;
}
public function setNewParent($name)
{
$this->newParent = $name;
}
public function getNewParent()
{
return $this->newParent;
}
public function setFrom($from)
{
$this->from = (int) $from;
}
public function getFrom()
{
return $this->from;
}
public function setTo($to)
{
$this->to = (int) $to;
}
public function getTo()
{
return $this->to;
}
public function appliesTo(BpConfig $config)
{
if (! $config->getMetadata()->isManuallyOrdered()) {
$this->error('Process configuration is not manually ordered yet');
}
$name = $this->getNodeName();
if ($this->parent !== null) {
if (! $config->hasBpNode($this->parent)) {
$this->error('Parent process "%s" missing', $this->parent);
}
$parent = $config->getBpNode($this->parent);
if (! $parent->hasChild($name)) {
$this->error('Node "%s" not found in process "%s"', $name, $this->parent);
}
$nodes = $parent->getChildNames();
if (! isset($nodes[$this->from]) || $nodes[$this->from] !== $name) {
$reversedNodes = array_reverse($nodes); // The user may have reversed the sort direction
if (! isset($reversedNodes[$this->from]) || $reversedNodes[$this->from] !== $name) {
$this->error('Node "%s" not found at position %d', $name, $this->from);
} else {
$this->from = array_search($reversedNodes[$this->from], $nodes, true);
$this->to = array_search($reversedNodes[$this->to], $nodes, true);
}
}
} else {
if (! $config->hasRootNode($name)) {
$this->error('Toplevel process "%s" not found', $name);
}
$nodes = array_keys(self::applyManualSorting($config->getRootNodes()));
if (! isset($nodes[$this->from]) || $nodes[$this->from] !== $name) {
$reversedNodes = array_reverse($nodes); // The user may have reversed the sort direction
if (! isset($reversedNodes[$this->from]) || $reversedNodes[$this->from] !== $name) {
$this->error('Toplevel process "%s" not found at position %d', $name, $this->from);
} else {
$this->from = array_search($reversedNodes[$this->from], $nodes, true);
$this->to = array_search($reversedNodes[$this->to], $nodes, true);
}
}
}
if ($this->parent !== $this->newParent) {
if ($this->newParent !== null) {
if (! $config->hasBpNode($this->newParent)) {
$this->error('New parent process "%s" missing', $this->newParent);
} elseif ($config->getBpNode($this->newParent)->hasChild($name)) {
$this->error(
'New parent process "%s" already has a node with the name "%s"',
$this->newParent,
$name
);
}
$childrenCount = $config->getBpNode($this->newParent)->countChildren();
if ($this->to > 0 && $childrenCount < $this->to) {
$this->error(
'New parent process "%s" has not enough children. Target position %d out of range',
$this->newParent,
$this->to
);
}
} else {
if ($config->hasRootNode($name)) {
$this->error('Process "%s" is already a toplevel process', $name);
}
$childrenCount = $config->countChildren();
if ($this->to > 0 && $childrenCount < $this->to) {
$this->error(
'Process configuration has not enough toplevel processes. Target position %d out of range',
$this->to
);
}
}
}
return true;
}
public function applyTo(BpConfig $config)
{
$name = $this->getNodeName();
if ($this->parent !== null) {
$nodes = $config->getBpNode($this->parent)->getChildren();
} else {
$nodes = self::applyManualSorting($config->getRootNodes());
}
$node = $nodes[$name];
$nodes = array_merge(
array_slice($nodes, 0, $this->from, true),
array_slice($nodes, $this->from + 1, null, true)
);
if ($this->parent === $this->newParent) {
$nodes = array_merge(
array_slice($nodes, 0, $this->to, true),
[$name => $node],
array_slice($nodes, $this->to, null, true)
);
} else {
if ($this->newParent !== null) {
$newNodes = $config->getBpNode($this->newParent)->getChildren();
} else {
$newNodes = self::applyManualSorting($config->getRootNodes());
}
$newNodes = array_merge(
array_slice($newNodes, 0, $this->to, true),
[$name => $node],
array_slice($newNodes, $this->to, null, true)
);
if ($this->newParent !== null) {
$config->getBpNode($this->newParent)->setChildNames(array_keys($newNodes));
} else {
$config->addRootNode($name);
$i = 0;
foreach ($newNodes as $newName => $newNode) {
/** @var BpNode $newNode */
if ($newNode->getDisplay() > 0 || $newName === $name) {
$i += 1;
if ($newNode->getDisplay() !== $i) {
$newNode->setDisplay($i);
}
}
}
}
}
if ($this->parent !== null) {
$config->getBpNode($this->parent)->setChildNames(array_keys($nodes));
} else {
if ($this->newParent !== null) {
$config->removeRootNode($name);
$node->setDisplay(0);
}
$i = 0;
foreach ($nodes as $_ => $oldNode) {
/** @var BpNode $oldNode */
if ($oldNode->getDisplay() > 0) {
$i += 1;
if ($oldNode->getDisplay() !== $i) {
$oldNode->setDisplay($i);
}
}
}
}
}
}
|