config/files: new controller action and table
This commit is contained in:
parent
f6490f8926
commit
738a690c43
|
@ -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();
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue