icingaweb2-module-director/application/tables/IcingaHostTable.php

90 lines
2.3 KiB
PHP

<?php
namespace Icinga\Module\Director\Tables;
use Icinga\Data\Limitable;
use Icinga\Module\Director\Web\Table\IcingaObjectTable;
class IcingaHostTable extends IcingaObjectTable
{
protected $searchColumns = array(
'host',
);
public function getColumns()
{
if ($this->connection()->isPgsql()) {
$parents = "ARRAY_TO_STRING(ARRAY_AGG(ih.object_name ORDER BY hi.weight), ', ')";
} else {
$parents = "GROUP_CONCAT(ih.object_name ORDER BY hi.weight SEPARATOR ', ')";
}
return array(
'id' => 'h.id',
'host' => 'h.object_name',
'object_type' => 'h.object_type',
'address' => 'h.address',
'zone' => 'z.object_name',
'parents' => $parents,
);
}
protected function getActionUrl($row)
{
return $this->url('director/host', array('name' => $row->host));
}
public function getTitles()
{
$view = $this->view();
return array(
'host' => $view->translate('Hostname'),
'parents' => $view->translate('Imports'),
);
}
protected function getUnfilteredQuery()
{
$db = $this->connection()->getConnection();
$query = $db->select()->from(
array('h' => 'icinga_host'),
array()
)->joinLeft(
array('z' => 'icinga_zone'),
'h.zone_id = z.id',
array()
)->joinLeft(
array('hi' => 'icinga_host_inheritance'),
'hi.host_id = h.id',
array()
)->joinLeft(
array('ih' => 'icinga_host'),
'hi.parent_host_id = ih.id',
array()
)->group('h.id')
->group('z.id')
->order('h.object_name');
return $query;
}
public function count()
{
$db = $this->connection()->getConnection();
$sub = clone($this->getBaseQuery());
$sub->columns($this->getColumns());
$this->applyFiltersToQuery($sub);
$query = $db->select()->from(
array('sub' => $sub),
'COUNT(*)'
);
return $db->fetchOne($query);
}
public function getBaseQuery()
{
return $this->getUnfilteredQuery();
}
}