config/files: new controller action and table

This commit is contained in:
Thomas Gelf 2015-12-15 19:02:58 +01:00
parent f6490f8926
commit 738a690c43
2 changed files with 95 additions and 0 deletions

View File

@ -29,6 +29,36 @@ class ConfigController extends ActionController
}
}
// Show all files for a given config
public function filesAction()
{
$tabs = $this->getTabs();
if ($deploymentId = $this->params->get('deployment_id')) {
$tabs->add('deployment', array(
'label' => $this->translate('Deployment'),
'url' => 'director/deployment/show',
'urlParams' => array(
'id' => $deploymentId
)
));
}
$tabs->add('config', array(
'label' => $this->translate('Config'),
'url' => $this->getRequest()->getUrl(),
))->activate('config');
$checksum = $this->params->get('checksum');
$this->view->table = $this
->loadTable('GeneratedConfigFile')
->setConnection($this->db())
->setConfigChecksum($checksum);
$this->render('objects/table', null, true);
}
public function showAction()
{
$tabs = $this->getTabs();

View File

@ -0,0 +1,65 @@
<?php
namespace Icinga\Module\Director\Tables;
use Icinga\Module\Director\Web\Table\QuickTable;
class GeneratedConfigFileTable extends QuickTable
{
public function getColumns()
{
$columns = array(
'file_path' => 'cf.file_path',
'size' => 'LENGTH(f.content)',
'cnt_object' => 'f.cnt_object',
'cnt_template' => 'f.cnt_template',
'checksum' => 'LOWER(HEX(f.checksum))',
'config_checksum' => 'LOWER(HEX(cf.config_checksum))',
);
if ($this->connection->getDbType() === 'pgsql') {
$columns['checksum'] = "LOWER(ENCODE(f.checksum, 'hex'))";
$columns['config_checksum'] = "LOWER(ENCODE(cf.config_checksum, 'hex'))";
}
return $columns;
}
protected function getActionUrl($row)
{
return $this->url('director/config/file', array('checksum' => $row->checksum));
}
public function getTitles()
{
$view = $this->view();
return array(
'file_path' => $view->translate('File'),
'cnt_object' => $view->translate('Objects'),
'cnt_template' => $view->translate('Templates'),
'size' => $view->translate('Size'),
);
}
public function setConfigChecksum($checksum)
{
$this->enforceFilter('config_checksum', $checksum);
return $this;
}
public function getBaseQuery()
{
$db = $this->connection()->getConnection();
$query = $db->select()->from(
array('cf' => 'director_generated_config_file'),
array()
)->join(
array('f' => 'director_generated_file'),
'cf.file_checksum = f.checksum',
array()
)->order('cf.file_path ASC');
return $query;
}
}