Files
sysPass/lib/SP/Util/ErrorUtil.php
Rubén D 41703b50f9 * [MOD] Strict type checking (WIP)
Signed-off-by: Rubén D <nuxsmin@syspass.org>
2020-12-20 14:24:42 +01:00

188 lines
5.9 KiB
PHP

<?php
/*
* sysPass
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2020, 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\Util;
use Exception;
use SP\Core\Acl\AccountPermissionException;
use SP\Core\Acl\UnauthorizedPageException;
use SP\Core\Exceptions\FileNotFoundException;
use SP\Core\Exceptions\SPException;
use SP\Mvc\View\Template;
use SP\Services\User\UpdatedMasterPassException;
/**
* Class ErrorUtil
*
* @package SP\Util
*/
final class ErrorUtil
{
/**
* Constantes de errores
*/
const ERR_UNAVAILABLE = 0;
const ERR_ACCOUNT_NO_PERMISSION = 1;
const ERR_PAGE_NO_PERMISSION = 2;
const ERR_UPDATE_MPASS = 3;
const ERR_OPERATION_NO_PERMISSION = 4;
const ERR_EXCEPTION = 5;
/**
* Establecer la plantilla de error con el código indicado.
*
* @param Template $view
* @param Exception $e
* @param string $replace Template replacement
* @param bool $render
*/
public static function showExceptionInView(Template $view,
Exception $e,
$replace = null,
$render = true)
{
switch (get_class($e)) {
case UpdatedMasterPassException::class:
self::showErrorInView($view, self::ERR_UPDATE_MPASS, $render, $replace);
break;
case UnauthorizedPageException::class:
self::showErrorInView($view, self::ERR_PAGE_NO_PERMISSION, $render, $replace);
break;
case AccountPermissionException::class:
self::showErrorInView($view, self::ERR_ACCOUNT_NO_PERMISSION, $render, $replace);
break;
default;
self::showErrorInView($view, self::ERR_EXCEPTION, $render, $replace);
}
}
/**
* Establecer la plantilla de error con el código indicado.
*
* @param Template $view
* @param int $type int con el tipo de error
* @param bool $render
* @param string|null $replace
*/
public static function showErrorInView(
Template $view,
int $type,
bool $render = true,
?string $replace = null
)
{
self::addErrorTemplate($view, $replace);
$error = self::getErrorTypes($type);
$view->append('errors',
[
'type' => SPException::WARNING,
'description' => $error['txt'],
'hint' => $error['hint']
]);
if ($render) {
try {
echo $view->render();
} catch (FileNotFoundException $e) {
processException($e);
echo $e->getMessage();
}
}
}
/**
* @param Template $view
* @param string|null $replace
*/
private static function addErrorTemplate(Template $view, string $replace = null)
{
if ($replace === null) {
$view->resetTemplates();
if ($view->hasContentTemplates()) {
$view->resetContentTemplates();
$view->addContentTemplate('error', Template::PARTIALS_DIR);
} else {
$view->addTemplate('error', Template::PARTIALS_DIR);
}
} else {
if ($view->hasContentTemplates()) {
$view->removeContentTemplate($replace);
$view->addContentTemplate('error', Template::PARTIALS_DIR);
} else {
$view->removeTemplate($replace);
$view->addTemplate('error', Template::PARTIALS_DIR);
}
}
}
/**
* Return error message by type
*
* @param $type
*
* @return mixed
*/
protected static function getErrorTypes($type): array
{
$errorTypes = [
self::ERR_UNAVAILABLE => [
'txt' => __('Option unavailable'),
'hint' => __('Please contact to the administrator')
],
self::ERR_ACCOUNT_NO_PERMISSION => [
'txt' => __('You don\'t have permission to access this account'),
'hint' => __('Please contact to the administrator')
],
self::ERR_PAGE_NO_PERMISSION => [
'txt' => __('You don\'t have permission to access this page'),
'hint' => __('Please contact to the administrator')
],
self::ERR_OPERATION_NO_PERMISSION => [
'txt' => __('You don\'t have permission to do this operation'),
'hint' => __('Please contact to the administrator')
],
self::ERR_UPDATE_MPASS => [
'txt' => __('Master password updated'),
'hint' => __('Please, restart the session for update it')
],
self::ERR_EXCEPTION => [
'txt' => __('An exception occured'),
'hint' => __('Please contact to the administrator')
]
];
if (!isset($errorTypes[$type])) {
return [
'txt' => __('An exception occured'),
'hint' => __('Please contact to the administrator')
];
}
return $errorTypes[$type];
}
}