blob: b184d6b9d8271b9c49bdc01b9a4e5726fd4083aa (
plain)
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
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Controllers;
use Icinga\Exception\NotFoundError;
use Icinga\Module\Icingadb\Common\CommandActions;
use Icinga\Module\Icingadb\Common\Links;
use Icinga\Module\Icingadb\Model\Comment;
use Icinga\Module\Icingadb\Web\Controller;
use Icinga\Module\Icingadb\Widget\Detail\CommentDetail;
use Icinga\Module\Icingadb\Widget\ItemList\CommentList;
use ipl\Stdlib\Filter;
use ipl\Web\Url;
class CommentController extends Controller
{
use CommandActions;
/** @var Comment The comment object */
protected $comment;
public function init()
{
$this->addTitleTab(t('Comment'));
$name = $this->params->getRequired('name');
$query = Comment::on($this->getDb())->with([
'host',
'host.state',
'service',
'service.state',
'service.host',
'service.host.state'
]);
$query->filter(Filter::equal('comment.name', $name));
$this->applyRestrictions($query);
$comment = $query->first();
if ($comment === null) {
throw new NotFoundError(t('Comment not found'));
}
$this->comment = $comment;
}
public function indexAction()
{
$this->addControl((new CommentList([$this->comment]))
->setViewMode('minimal')
->setDetailActionsDisabled()
->setCaptionDisabled()
->setNoSubjectLink());
$this->addContent((new CommentDetail($this->comment))->setTicketLinkEnabled());
$this->setAutorefreshInterval(10);
}
protected function fetchCommandTargets(): array
{
return [$this->comment];
}
protected function getCommandTargetsUrl(): Url
{
return Links::comment($this->comment);
}
}
|