Files
sysPass/app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php
nuxsmin 33ae422b2f * [FIX] Pager was not displayed on auth tokens list
* [ADD] Added special filters for account searching on management tab
* [MOD] Code refactoring

Signed-off-by: nuxsmin <nuxsmin@syspass.org>
2018-10-11 01:04:35 +02:00

208 lines
6.7 KiB
PHP

<?php
/**
* sysPass
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2018, Rubén Domínguez nuxsmin@$syspass.org
*
* This file is part of sysPass.
*
* sysPass is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* sysPass is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
*/
namespace SP\Modules\Web\Controllers\Helpers\Grid;
use SP\Core\Acl\Acl;
use SP\Core\Acl\ActionsInterface;
use SP\Html\DataGrid\Action\DataGridAction;
use SP\Html\DataGrid\Action\DataGridActionSearch;
use SP\Html\DataGrid\Action\DataGridActionType;
use SP\Html\DataGrid\DataGridData;
use SP\Html\DataGrid\DataGridInterface;
use SP\Html\DataGrid\DataGridTab;
use SP\Html\DataGrid\Layout\DataGridHeader;
use SP\Storage\Database\QueryResult;
/**
* Class EventlogGrid
*
* @package SP\Modules\Web\Controllers\Helpers\Grid
*/
final class EventlogGrid extends GridBase
{
/**
* @var QueryResult
*/
private $queryResult;
/**
* @param QueryResult $queryResult
*
* @return DataGridInterface
*/
public function getGrid(QueryResult $queryResult): DataGridInterface
{
$this->queryResult = $queryResult;
$grid = $this->getGridLayout();
$searchAction = $this->getSearchAction();
$grid->addDataAction($searchAction);
$grid->setPager($this->getPager($searchAction));
$grid->addDataAction($this->getRefrestAction());
$grid->addDataAction($this->getClearAction());
$grid->setTime(round(getElapsedTime($this->queryTimeStart), 5));
return $grid;
}
/**
* @return DataGridInterface
*/
protected function getGridLayout(): DataGridInterface
{
// Grid
$gridTab = new DataGridTab($this->view->getTheme());
$gridTab->setId('tblEventLog');
$gridTab->setDataRowTemplate('datagrid-rows', 'grid');
$gridTab->setDataPagerTemplate('datagrid-nav-full', 'grid');
$gridTab->setHeader($this->getHeader());
$gridTab->setData($this->getData());
$gridTab->setTitle(__('Registro de Eventos'));
return $gridTab;
}
/**
* @return DataGridHeader
*/
protected function getHeader(): DataGridHeader
{
// Grid Header
$gridHeader = new DataGridHeader();
$gridHeader->addHeader(__('ID'));
$gridHeader->addHeader(__('Fecha / Hora'));
$gridHeader->addHeader(__('Nivel'));
$gridHeader->addHeader(__('Evento'));
$gridHeader->addHeader(__('Login'));
$gridHeader->addHeader(__('IP'));
$gridHeader->addHeader(__('Descripción'));
return $gridHeader;
}
/**
* @return DataGridData
*/
protected function getData(): DataGridData
{
// Grid Data
$isDemoMode = $this->configData->isDemoEnabled();
$gridData = new DataGridData();
$gridData->setDataRowSourceId('id');
$gridData->addDataRowSource('id');
$gridData->addDataRowSource('date');
$gridData->addDataRowSource('level');
$gridData->addDataRowSource('action', null, null, false);
$gridData->addDataRowSource('login');
$gridData->addDataRowSource('ipAddress', false,
function ($value) use ($isDemoMode) {
return $isDemoMode ? preg_replace('#\d+#', '*', $value) : $value;
});
$gridData->addDataRowSource('description', false,
function ($value) use ($isDemoMode) {
if ($isDemoMode) {
$value = preg_replace('/\\d+\\.\\d+\\.\\d+\\.\\d+/', "*.*.*.*", $value);
}
$text = str_replace(';;', PHP_EOL, $value);
if (preg_match('/^SQL.*/m', $text)) {
$text = preg_replace([
'/([a-zA-Z_]+),/m',
'/(UPDATE|DELETE|TRUNCATE|INSERT|SELECT|WHERE|LEFT|ORDER|LIMIT|FROM)/m'],
['\\1,<br>', '<br>\\1'],
$text);
}
// if (strlen($text) >= 100) {
// $text = wordwrap($text, 100, PHP_EOL, true);
// }
return str_replace(PHP_EOL, '<br>', $text);
}, false);
$gridData->setData($this->queryResult);
return $gridData;
}
/**
* @return \SP\Html\DataGrid\Action\DataGridActionSearch
*/
private function getSearchAction()
{
// Grid Actions
$gridActionSearch = new DataGridActionSearch();
$gridActionSearch->setId(ActionsInterface::EVENTLOG_SEARCH);
$gridActionSearch->setType(DataGridActionType::SEARCH_ITEM);
$gridActionSearch->setName('frmSearchEvent');
$gridActionSearch->setTitle(__('Buscar Evento'));
$gridActionSearch->setOnSubmitFunction('appMgmt/search');
$gridActionSearch->addData('action-route', Acl::getActionRoute(ActionsInterface::EVENTLOG_SEARCH));
return $gridActionSearch;
}
/**
* @return \SP\Html\DataGrid\Action\DataGridAction
*/
private function getRefrestAction()
{
$gridAction = new DataGridAction();
$gridAction->setId(ActionsInterface::EVENTLOG_SEARCH);
$gridAction->setType(DataGridActionType::MENUBAR_ITEM);
$gridAction->setSkip(true);
$gridAction->setName(__('Refrescar'));
$gridAction->setTitle(__('Refrescar'));
$gridAction->setIcon($this->icons->getIconRefresh());
$gridAction->setOnClickFunction('appMgmt/search');
$gridAction->addData('action-route', Acl::getActionRoute(ActionsInterface::EVENTLOG_SEARCH));
return $gridAction;
}
/**
* @return \SP\Html\DataGrid\Action\DataGridAction
*/
private function getClearAction()
{
$gridAction = new DataGridAction();
$gridAction->setId(ActionsInterface::EVENTLOG_CLEAR);
$gridAction->setType(DataGridActionType::MENUBAR_ITEM);
$gridAction->setSkip(true);
$gridAction->setName(__('Vaciar registro de eventos'));
$gridAction->setTitle(__('Vaciar registro de eventos'));
$gridAction->setIcon($this->icons->getIconClear());
$gridAction->setOnClickFunction('eventlog/clear');
$gridAction->addData('action-route', Acl::getActionRoute(ActionsInterface::EVENTLOG_CLEAR));
return $gridAction;
}
}