Files
sysPass/app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php
Rubén D 6197c52af1 * [MOD] Update copyright date
* [MOD] Code cleanup

Signed-off-by: Rubén D <nuxsmin@syspass.org>
2019-04-27 02:48:18 +02:00

208 lines
6.6 KiB
PHP

<?php
/**
* sysPass
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2019, 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(__('Event Log'));
return $gridTab;
}
/**
* @return DataGridHeader
*/
protected function getHeader(): DataGridHeader
{
// Grid Header
$gridHeader = new DataGridHeader();
$gridHeader->addHeader(__('ID'));
$gridHeader->addHeader(__('Date / Time'));
$gridHeader->addHeader(__('Level'));
$gridHeader->addHeader(__('Event'));
$gridHeader->addHeader(__('Login'));
$gridHeader->addHeader(__('IP'));
$gridHeader->addHeader(__('Description'));
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 ? '*.*.*.*' : $value;
});
$gridData->addDataRowSource('description', false,
function ($value) use ($isDemoMode) {
if ($isDemoMode) {
$value = preg_replace('/\d+\.\d+\.\d+\.\d+/', '*.*.*.*', $value);
}
if (preg_match('/^SQL.*/m', $value)) {
$value = preg_replace([
'/([a-zA-Z_]+),/m',
'/(UPDATE|DELETE|TRUNCATE|INSERT|SELECT|WHERE|LEFT|ORDER|LIMIT|FROM)/m'],
['\\1,<br>', '<br>\\1'],
$value);
}
return wordwrap(
str_replace([';;', PHP_EOL], '<br>', $value),
100,
'<br>',
true
);
}, false);
$gridData->setData($this->queryResult);
return $gridData;
}
/**
* @return DataGridActionSearch
*/
private function getSearchAction()
{
// Grid Actions
$gridActionSearch = new DataGridActionSearch();
$gridActionSearch->setId(ActionsInterface::EVENTLOG_SEARCH);
$gridActionSearch->setType(DataGridActionType::SEARCH_ITEM);
$gridActionSearch->setName('frmSearchEvent');
$gridActionSearch->setTitle(__('Search for Events'));
$gridActionSearch->setOnSubmitFunction('appMgmt/search');
$gridActionSearch->addData('action-route', Acl::getActionRoute(ActionsInterface::EVENTLOG_SEARCH));
return $gridActionSearch;
}
/**
* @return DataGridAction
*/
private function getRefrestAction()
{
$gridAction = new DataGridAction();
$gridAction->setId(ActionsInterface::EVENTLOG_SEARCH);
$gridAction->setType(DataGridActionType::MENUBAR_ITEM);
$gridAction->setSkip(true);
$gridAction->setName(__('Refresh'));
$gridAction->setTitle(__('Refresh'));
$gridAction->setIcon($this->icons->getIconRefresh());
$gridAction->setOnClickFunction('eventlog/refresh');
$gridAction->addData('action-route', Acl::getActionRoute(ActionsInterface::EVENTLOG_SEARCH));
$gridAction->addData('action-form', 'frmSearchEvent');
return $gridAction;
}
/**
* @return DataGridAction
*/
private function getClearAction()
{
$gridAction = new DataGridAction();
$gridAction->setId(ActionsInterface::EVENTLOG_CLEAR);
$gridAction->setType(DataGridActionType::MENUBAR_ITEM);
$gridAction->setSkip(true);
$gridAction->setName(__('Clear the event log out'));
$gridAction->setTitle(__('Clear the event log out'));
$gridAction->setIcon($this->icons->getIconClear());
$gridAction->setOnClickFunction('eventlog/clear');
$gridAction->addData('action-route', Acl::getActionRoute(ActionsInterface::EVENTLOG_CLEAR));
return $gridAction;
}
}