BasketController: show details, content checksum

This commit is contained in:
Thomas Gelf 2018-10-08 06:16:31 +02:00
parent 6e25c05d89
commit 03a8043311
1 changed files with 13 additions and 4 deletions

View File

@ -5,6 +5,7 @@ namespace Icinga\Module\Director\Controllers;
use dipl\Html\Link;
use dipl\Web\Widget\NameValueTable;
use Exception;
use Icinga\Date\DateFormatter;
use Icinga\Module\Director\ConfigDiff;
use Icinga\Module\Director\Core\Json;
use Icinga\Module\Director\Db;
@ -130,11 +131,12 @@ class BasketController extends ActionController
'basket_uuid' => $binUuid,
'ts_create' => $this->params->getRequired('ts'),
], $this->db());
$snapSum = bin2hex($snapshot->get('content_checksum'));
$this->addTitle(
$this->translate('%s: %s (Snapshot)'),
$basket->get('basket_name'),
substr($hexUuid, 0, 7)
substr($snapSum, 0, 7)
);
$this->actions()->add([
@ -152,6 +154,13 @@ class BasketController extends ActionController
)
]);
$properties = new NameValueTable();
$properties->addNameValuePairs([
$this->translate('Created') => DateFormatter::formatDateTime($snapshot->get('ts_create') / 1000),
$this->translate('Content Checksum') => bin2hex($snapshot->get('content_checksum')),
]);
$this->content()->add($properties);
if ($this->params->get('action') === 'restore') {
$form = new RestoreBasketForm();
$form
@ -272,12 +281,12 @@ class BasketController extends ActionController
} else {
$connection = Db::fromResourceName($targetDbName);
}
$object = $objects->$type->$key;
$objectFromBasket = $objects->$type->$key;
$current = BasketSnapshot::instanceByIdentifier($type, $key, $connection);
$this->content()->add(
ConfigDiff::create(
Json::encode($object, JSON_PRETTY_PRINT),
Json::encode($current->export(), JSON_PRETTY_PRINT)
Json::encode($current->export(), JSON_PRETTY_PRINT),
Json::encode($objectFromBasket, JSON_PRETTY_PRINT)
)->setHtmlRenderer('Inline')
);
}