mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-18 23:16:16 -05:00
358 lines
11 KiB
PHP
358 lines
11 KiB
PHP
<?php
|
|
|
|
namespace Icinga\Module\Businessprocess\Renderer\TileRenderer;
|
|
|
|
use Icinga\Date\DateFormatter;
|
|
use Icinga\Module\Businessprocess\BpNode;
|
|
use Icinga\Module\Businessprocess\ImportedNode;
|
|
use Icinga\Module\Businessprocess\MonitoredNode;
|
|
use Icinga\Module\Businessprocess\Node;
|
|
use Icinga\Module\Businessprocess\Renderer\Renderer;
|
|
use Icinga\Web\Url;
|
|
use ipl\Html\BaseHtmlElement;
|
|
use ipl\Html\Html;
|
|
use ipl\Web\Widget\Icon;
|
|
use ipl\Web\Widget\Link;
|
|
use ipl\Web\Widget\StateBall;
|
|
|
|
class NodeTile extends BaseHtmlElement
|
|
{
|
|
protected $tag = 'div';
|
|
|
|
protected $renderer;
|
|
|
|
protected $name;
|
|
|
|
protected $node;
|
|
|
|
protected $path;
|
|
|
|
/**
|
|
* @var BaseHtmlElement
|
|
*/
|
|
private $actions;
|
|
|
|
/**
|
|
* NodeTile constructor.
|
|
* @param Renderer $renderer
|
|
* @param Node $node
|
|
* @param ?array $path
|
|
*/
|
|
public function __construct(Renderer $renderer, Node $node, $path = null)
|
|
{
|
|
$this->renderer = $renderer;
|
|
$this->node = $node;
|
|
$this->path = $path;
|
|
}
|
|
|
|
protected function actions()
|
|
{
|
|
if ($this->actions === null) {
|
|
$this->addActions();
|
|
}
|
|
return $this->actions;
|
|
}
|
|
|
|
protected function addActions()
|
|
{
|
|
$this->actions = Html::tag(
|
|
'div',
|
|
[
|
|
'class' => 'actions'
|
|
]
|
|
);
|
|
|
|
return $this->add($this->actions);
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
$renderer = $this->renderer;
|
|
$node = $this->node;
|
|
|
|
$attributes = $this->getAttributes();
|
|
$attributes->add('class', $renderer->getNodeClasses($node));
|
|
$attributes->add('id', $renderer->getId($node, $this->path));
|
|
if (! $renderer->isLocked()) {
|
|
$attributes->add('data-node-name', $node->getName());
|
|
}
|
|
|
|
if (! $renderer->isBreadcrumb()) {
|
|
$this->addDetailsActions();
|
|
|
|
if (! $renderer->isLocked()) {
|
|
$this->addActionLinks();
|
|
}
|
|
}
|
|
if (! $node instanceof ImportedNode || $node->getBpConfig()->hasNode($node->getName())) {
|
|
$link = $this->getMainNodeLink();
|
|
if ($renderer->isBreadcrumb()) {
|
|
$state = strtolower($node->getStateName());
|
|
$link->prependHtml(
|
|
(new StateBall($state, StateBall::SIZE_MEDIUM))
|
|
->setHandled($node->isHandled())
|
|
->addAttributes([
|
|
'title' => sprintf(
|
|
'%s%s %s',
|
|
$state,
|
|
$node->isHandled() ? ' (handled)' : '',
|
|
DateFormatter::timeSince($node->getLastStateChange())
|
|
)
|
|
])
|
|
);
|
|
}
|
|
|
|
$this->add($link);
|
|
} else {
|
|
$this->add(new Link($node->getAlias(), $this->getMainNodeUrl($node)->getAbsoluteUrl()));
|
|
}
|
|
|
|
if (
|
|
$this->renderer->rendersSubNode()
|
|
&& $this->renderer->getParentNode()->getChildState($node) !== $node->getState()
|
|
) {
|
|
$this->add(
|
|
(new StateBall(strtolower($node->getStateName()), StateBall::SIZE_MEDIUM))
|
|
->addAttributes([
|
|
'class' => 'overridden-state',
|
|
'title' => sprintf(
|
|
'%s',
|
|
$node->getStateName()
|
|
)
|
|
])
|
|
);
|
|
}
|
|
|
|
if ($node instanceof BpNode && ! $renderer->isBreadcrumb()) {
|
|
$this->add($renderer->renderStateBadges($node->getStateSummary(), $node->countChildren()));
|
|
}
|
|
|
|
return parent::render();
|
|
}
|
|
|
|
protected function getMainNodeUrl(Node $node)
|
|
{
|
|
if ($node instanceof BpNode) {
|
|
return $this->makeBpUrl($node);
|
|
} else {
|
|
/** @var MonitoredNode $node */
|
|
return $node->getUrl();
|
|
}
|
|
}
|
|
|
|
protected function buildBaseNodeUrl(Node $node)
|
|
{
|
|
$url = $this->renderer->getBaseUrl();
|
|
|
|
$p = $url->getParams();
|
|
if (
|
|
$node instanceof ImportedNode
|
|
&& $this->renderer->getBusinessProcess()->getName() === $node->getBpConfig()->getName()
|
|
) {
|
|
$p->set('node', $node->getNodeName());
|
|
} elseif ($this->renderer->rendersImportedNode()) {
|
|
$p->set('node', $node->getIdentifier());
|
|
} else {
|
|
$p->set('node', $node->getName());
|
|
}
|
|
|
|
if (! empty($this->path)) {
|
|
$p->addValues('path', $this->path);
|
|
}
|
|
|
|
return $url;
|
|
}
|
|
|
|
protected function makeBpUrl(BpNode $node)
|
|
{
|
|
return $this->buildBaseNodeUrl($node);
|
|
}
|
|
|
|
/**
|
|
* @return BaseHtmlElement
|
|
*/
|
|
protected function getMainNodeLink()
|
|
{
|
|
$node = $this->node;
|
|
$url = $this->getMainNodeUrl($node);
|
|
if ($node instanceof MonitoredNode) {
|
|
$link = Html::tag(
|
|
'a',
|
|
['href' => $url, 'data-base-target' => '_next'],
|
|
$node->getAlias() ?? $node->getName()
|
|
);
|
|
} else {
|
|
$link = Html::tag('a', ['href' => $url], $node->getAlias());
|
|
}
|
|
|
|
return $link;
|
|
}
|
|
|
|
protected function addDetailsActions()
|
|
{
|
|
$node = $this->node;
|
|
$url = $this->getMainNodeUrl($node);
|
|
|
|
if ($node instanceof BpNode) {
|
|
$this->actions()->add(Html::tag(
|
|
'a',
|
|
[
|
|
'href' => $url->with('mode', 'tile'),
|
|
'title' => mt('businessprocess', 'Show tiles for this subtree')
|
|
],
|
|
new Icon('grip')
|
|
))->add(Html::tag(
|
|
'a',
|
|
[
|
|
'href' => $url->with('mode', 'tree'),
|
|
'title' => mt('businessprocess', 'Show this subtree as a tree')
|
|
],
|
|
new Icon('sitemap')
|
|
));
|
|
if ($node instanceof ImportedNode) {
|
|
$bpConfig = $node->getBpConfig();
|
|
if ($bpConfig->isFaulty() || $bpConfig->hasNode($node->getName())) {
|
|
$this->actions()->add(Html::tag(
|
|
'a',
|
|
[
|
|
'data-base-target' => '_next',
|
|
'href' => $bpConfig->isFaulty()
|
|
? $this->renderer->getBaseUrl()->setParam('config', $bpConfig->getName())
|
|
: $this->renderer->getSourceUrl($node)->getAbsoluteUrl(),
|
|
'title' => mt(
|
|
'businessprocess',
|
|
'Show this process as part of its original configuration'
|
|
)
|
|
],
|
|
new Icon('share')
|
|
));
|
|
}
|
|
}
|
|
|
|
$url = $node->getInfoUrl();
|
|
|
|
if ($url !== null) {
|
|
$link = Html::tag(
|
|
'a',
|
|
[
|
|
'href' => $url,
|
|
'class' => 'node-info',
|
|
'title' => sprintf('%s: %s', mt('businessprocess', 'More information'), $url)
|
|
],
|
|
new Icon('info')
|
|
);
|
|
if (preg_match('#^http(?:s)?://#', $url)) {
|
|
$link->addAttributes(['target' => '_blank']);
|
|
}
|
|
$this->actions()->add($link);
|
|
}
|
|
} else {
|
|
$this->actions()->add(Html::tag(
|
|
'a',
|
|
['href' => $node->getUrl(), 'data-base-target' => '_next'],
|
|
$node->getIcon()
|
|
));
|
|
}
|
|
|
|
if ($node->isAcknowledged()) {
|
|
$this->actions()->add(new Icon('check', ['class' => 'handled-icon']));
|
|
} elseif ($node->isInDowntime()) {
|
|
$this->actions()->add(new Icon('plug', ['class' => 'handled-icon']));
|
|
}
|
|
}
|
|
|
|
protected function addActionLinks()
|
|
{
|
|
$parent = $this->renderer->getParentNode();
|
|
if ($parent !== null) {
|
|
$baseUrl = Url::fromPath('businessprocess/process/show', [
|
|
'config' => $parent->getBpConfig()->getName(),
|
|
'node' => $parent instanceof ImportedNode
|
|
? $parent->getNodeName()
|
|
: $parent->getName(),
|
|
'unlocked' => true
|
|
]);
|
|
} else {
|
|
$baseUrl = Url::fromPath('businessprocess/process/show', [
|
|
'config' => $this->node->getBpConfig()->getName(),
|
|
'unlocked' => true
|
|
]);
|
|
}
|
|
|
|
if ($this->node instanceof MonitoredNode) {
|
|
$this->actions()->add(Html::tag(
|
|
'a',
|
|
[
|
|
'href' => $baseUrl
|
|
->with('action', 'simulation')
|
|
->with('simulationnode', $this->node->getName()),
|
|
'title' => mt(
|
|
'businessprocess',
|
|
'Show the business impact of this node by simulating a specific state'
|
|
)
|
|
],
|
|
new Icon('wand-magic-sparkles')
|
|
));
|
|
|
|
$this->actions()->add(Html::tag(
|
|
'a',
|
|
[
|
|
'href' => $baseUrl
|
|
->with('action', 'editmonitored')
|
|
->with('editmonitorednode', $this->node->getName()),
|
|
'title' => mt('businessprocess', 'Modify this monitored node')
|
|
],
|
|
new Icon('edit')
|
|
));
|
|
}
|
|
|
|
if (
|
|
$this->renderer->getBusinessProcess()->getMetadata()->canModify()
|
|
&& $this->node->getBpConfig()->getName() === $this->renderer->getBusinessProcess()->getName()
|
|
&& $this->node->getName() !== '__unbound__'
|
|
) {
|
|
if ($this->node instanceof BpNode) {
|
|
$this->actions()->add(Html::tag(
|
|
'a',
|
|
[
|
|
'href' => $baseUrl
|
|
->with('action', 'edit')
|
|
->with('editnode', $this->node->getName()),
|
|
'title' => mt('businessprocess', 'Modify this business process node')
|
|
],
|
|
new Icon('edit')
|
|
));
|
|
|
|
$addUrl = $baseUrl->with([
|
|
'node' => $this->node->getName(),
|
|
'action' => 'add'
|
|
]);
|
|
$addUrl->getParams()->addValues('path', $this->path);
|
|
$this->actions()->add(Html::tag(
|
|
'a',
|
|
[
|
|
'href' => $addUrl,
|
|
'title' => mt('businessprocess', 'Add a new sub-node to this business process')
|
|
],
|
|
new Icon('plus')
|
|
));
|
|
}
|
|
}
|
|
|
|
if ($this->renderer->getBusinessProcess()->getMetadata()->canModify()) {
|
|
$params = array(
|
|
'action' => 'delete',
|
|
'deletenode' => $this->node->getName(),
|
|
);
|
|
|
|
$this->actions()->add(Html::tag(
|
|
'a',
|
|
[
|
|
'href' => $baseUrl->with($params),
|
|
'title' => mt('businessprocess', 'Delete this node')
|
|
],
|
|
new Icon('xmark')
|
|
));
|
|
}
|
|
}
|
|
}
|