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 294
|
<?php
namespace Icinga\Module\Businessprocess\Modification;
use Icinga\Module\Businessprocess\BpConfig;
use Icinga\Module\Businessprocess\Node;
use Icinga\Web\Session\SessionNamespace as Session;
class ProcessChanges
{
/** @var NodeAction[] */
protected $changes = array();
/** @var Session */
protected $session;
/** @var BpConfig */
protected $config;
/** @var bool */
protected $hasBeenModified = false;
/** @var string Session storage key for this processes changes */
protected $sessionKey;
/**
* ProcessChanges constructor.
*
* Direct access is not allowed
*/
private function __construct()
{
}
/**
* @param BpConfig $bp
* @param Session $session
*
* @return ProcessChanges
*/
public static function construct(BpConfig $bp, Session $session)
{
$key = 'changes.' . $bp->getName();
$changes = new ProcessChanges();
$changes->sessionKey = $key;
if ($actions = $session->get($key)) {
foreach ($actions as $string) {
$changes->push(NodeAction::unSerialize($string));
}
}
$changes->session = $session;
$changes->config = $bp;
return $changes;
}
/**
* @param Node $node
* @param $properties
*
* @return $this
*/
public function modifyNode(Node $node, $properties)
{
$action = new NodeModifyAction($node);
$action->setNodeProperties($node, $properties);
return $this->push($action, true);
}
/**
* @param Node $node
* @param $properties
*
* @return $this
*/
public function addChildrenToNode($children, Node $node = null)
{
$action = new NodeAddChildrenAction($node);
$action->setChildren($children);
return $this->push($action, true);
}
/**
* @param Node|string $nodeName
* @param array $properties
* @param Node $parent
*
* @return $this
*/
public function createNode($nodeName, $properties, Node $parent = null)
{
$action = new NodeCreateAction($nodeName);
$action->setProperties($properties);
if ($parent !== null) {
$action->setParent($parent);
}
return $this->push($action, true);
}
/**
* @param $nodeName
* @return $this
*/
public function copyNode($nodeName)
{
$action = new NodeCopyAction($nodeName);
return $this->push($action, true);
}
/**
* @param Node $node
* @param string $parentName
* @return $this
*/
public function deleteNode(Node $node, $parentName = null)
{
$action = new NodeRemoveAction($node);
if ($parentName !== null) {
$action->setParentName($parentName);
}
return $this->push($action, true);
}
/**
* Move the given node
*
* @param Node $node
* @param int $from
* @param int $to
* @param string $newParent
* @param string $parent
*
* @return $this
*/
public function moveNode(Node $node, $from, $to, $newParent, $parent = null)
{
$action = new NodeMoveAction($node);
$action->setParent($parent);
$action->setNewParent($newParent);
$action->setFrom($from);
$action->setTo($to);
return $this->push($action, true);
}
/**
* Apply manual order on the entire bp configuration file
*
* @return $this
*/
public function applyManualOrder()
{
return $this->push(new NodeApplyManualOrderAction(), true);
}
/**
* Add a new action to the stack
*
* @param NodeAction $change
* @param bool $apply
*
* @return $this
*/
public function push(NodeAction $change, $apply = false)
{
if ($apply && $change->appliesTo($this->config)) {
$change->applyTo($this->config);
}
$this->changes[] = $change;
$this->hasBeenModified = true;
return $this;
}
/**
* Get all stacked actions
*
* @return NodeAction[]
*/
public function getChanges()
{
return $this->changes;
}
/**
* Forget all changes and remove them from the Session
*
* @return $this
*/
public function clear()
{
$this->hasBeenModified = true;
$this->changes = array();
$this->session->set($this->getSessionKey(), null);
return $this;
}
/**
* Whether there are no stacked changes
*
* @return bool
*/
public function isEmpty()
{
return $this->count() === 0;
}
/**
* Number of stacked changes
*
* @return int
*/
public function count()
{
return count($this->changes);
}
/**
* Get the first change on the stack, false if empty
*
* @return NodeAction|boolean
*/
public function shift()
{
if ($this->isEmpty()) {
return false;
}
$this->hasBeenModified = true;
return array_shift($this->changes);
}
/**
* Get the last change on the stack, false if empty
*
* @return NodeAction|boolean
*/
public function pop()
{
if ($this->isEmpty()) {
return false;
}
$this->hasBeenModified = true;
return array_pop($this->changes);
}
/**
* The identifier used for this processes changes in our Session storage
*
* @return string
*/
protected function getSessionKey()
{
return $this->sessionKey;
}
protected function hasBeenModified()
{
return $this->hasBeenModified;
}
/**
* @return array
*/
public function serialize()
{
$serialized = array();
foreach ($this->getChanges() as $change) {
$serialized[] = $change->serialize();
}
return $serialized;
}
/**
* Persist to session on destruction
*/
public function __destruct()
{
if (! $this->hasBeenModified()) {
unset($this->session);
return;
}
$session = $this->session;
$key = $this->getSessionKey();
if (! $this->isEmpty()) {
$session->set($key, $this->serialize());
}
unset($this->session);
}
}
|