78 lines
1.7 KiB
PHP
78 lines
1.7 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Icinga\Module\Director\Tables;
|
||
|
|
||
|
use Icinga\Module\Director\Objects\IcingaHost;
|
||
|
use Icinga\Module\Director\Web\Table\QuickTable;
|
||
|
|
||
|
class IcingaHostServiceTable extends QuickTable
|
||
|
{
|
||
|
protected $host;
|
||
|
|
||
|
protected $searchColumns = array(
|
||
|
'service',
|
||
|
);
|
||
|
|
||
|
public function getColumns()
|
||
|
{
|
||
|
return array(
|
||
|
'id' => 's.id',
|
||
|
'host_id' => 's.host_id',
|
||
|
'host' => 'h.object_name',
|
||
|
'service' => 's.object_name',
|
||
|
'object_type' => 's.object_type',
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public function setHost(IcingaHost $host)
|
||
|
{
|
||
|
$this->host = $host;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
protected function getActionUrl($row)
|
||
|
{
|
||
|
if ($row->object_type === 'apply') {
|
||
|
$params['id'] = $row->id;
|
||
|
} else {
|
||
|
$params = array('name' => $row->service);
|
||
|
if ($row->host !== null) {
|
||
|
$params['host'] = $row->host;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return $this->url('director/service', $params);
|
||
|
}
|
||
|
|
||
|
public function getTitles()
|
||
|
{
|
||
|
$view = $this->view();
|
||
|
return array(
|
||
|
'service' => $view->translate('Servicename'),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public function getUnfilteredQuery()
|
||
|
{
|
||
|
$db = $this->connection()->getConnection();
|
||
|
$query = $db->select()->from(
|
||
|
array('s' => 'icinga_service'),
|
||
|
array()
|
||
|
)->joinLeft(
|
||
|
array('h' => 'icinga_host'),
|
||
|
'h.id = s.host_id',
|
||
|
array()
|
||
|
);
|
||
|
|
||
|
return $query;
|
||
|
}
|
||
|
|
||
|
public function getBaseQuery()
|
||
|
{
|
||
|
return $this->getUnfilteredQuery()->where(
|
||
|
's.host_id = ?',
|
||
|
$this->host->id
|
||
|
);
|
||
|
}
|
||
|
}
|