icingadb-web/library/Icingadb/Model/State.php
2023-09-05 14:26:43 +02:00

144 lines
3.7 KiB
PHP

<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Model;
use Icinga\Module\Icingadb\Common\Icons;
use Icinga\Module\Icingadb\Model\Behavior\BoolCast;
use ipl\Orm\Behavior\Binary;
use ipl\Orm\Behavior\MillisecondTimestamp;
use ipl\Orm\Behaviors;
use ipl\Orm\Model;
use ipl\Web\Widget\Icon;
/**
* Base class for the {@link HostState} and {@link ServiceState} models providing common columns.
*/
abstract class State extends Model
{
/**
* Get the state as the textual representation
*
* @return string
*/
abstract public function getStateText(): string;
/**
* Get the state as the translated textual representation
*
* @return string
*/
abstract public function getStateTextTranslated(): string;
public function getColumns()
{
return [
'environment_id',
'state_type',
'soft_state',
'hard_state',
'previous_soft_state',
'previous_hard_state',
'check_attempt',
'severity',
'output',
'long_output',
'performance_data',
'normalized_performance_data',
'check_commandline',
'is_problem',
'is_handled',
'is_reachable',
'is_flapping',
'is_overdue',
'is_acknowledged',
'acknowledgement_comment_id',
'last_comment_id',
'in_downtime',
'execution_time',
'latency',
'check_timeout',
'check_source',
'scheduling_source',
'last_update',
'last_state_change',
'next_check',
'next_update'
];
}
public function createBehaviors(Behaviors $behaviors)
{
$behaviors->add(new BoolCast([
'is_problem',
'is_handled',
'is_reachable',
'is_flapping',
'is_overdue',
'is_acknowledged',
'in_downtime'
]));
$behaviors->add(new MillisecondTimestamp([
'last_update',
'last_state_change',
'next_check',
'next_update'
]));
$behaviors->add(new Binary([
$this->getKeyName(),
'environment_id',
'acknowledgement_comment_id',
'last_comment_id'
]));
}
/**
* Get the state icon
*
* @return Icon|null
*/
public function getIcon(): ?Icon
{
$icon = null;
switch (true) {
case $this->is_acknowledged:
$icon = new Icon(Icons::IS_ACKNOWLEDGED);
break;
case $this->in_downtime:
$icon = new Icon(
Icons::IN_DOWNTIME,
['title' => sprintf(
'%s (%s)',
strtoupper($this->getStateTextTranslated()),
$this->is_handled ? t('handled by Downtime') : t('in Downtime')
)]
);
break;
case $this->is_flapping:
$icon = new Icon(Icons::IS_FLAPPING);
break;
case ! $this->is_reachable:
$icon = new Icon(Icons::HOST_DOWN, [
'title' => sprintf(
'%s (%s)',
strtoupper($this->getStateTextTranslated()),
t('is unreachable')
)
]);
break;
case $this->is_handled:
$icon = new Icon(Icons::HOST_DOWN);
break;
}
return $icon;
}
}