Fixed error logging and refactored ErrorController to get invoked
correctly when using API key authentication * Along with the bugfixes, backported improved ErrorController from upstream branch, including style improvements.
This commit is contained in:
parent
ddd75cb8e3
commit
32aa962138
|
@ -52,6 +52,7 @@ Application_Model_Auth::pinSessionToClient(Zend_Auth::getInstance());
|
||||||
|
|
||||||
$front = Zend_Controller_Front::getInstance();
|
$front = Zend_Controller_Front::getInstance();
|
||||||
$front->registerPlugin(new RabbitMqPlugin());
|
$front->registerPlugin(new RabbitMqPlugin());
|
||||||
|
$front->throwExceptions(false);
|
||||||
|
|
||||||
//localization configuration
|
//localization configuration
|
||||||
Application_Model_Locale::configureLocalization();
|
Application_Model_Locale::configureLocalization();
|
||||||
|
|
|
@ -1,26 +1,40 @@
|
||||||
<?php
|
<?php
|
||||||
|
class ErrorController extends Zend_Controller_Action {
|
||||||
|
|
||||||
class ErrorController extends Zend_Controller_Action
|
public function init()
|
||||||
{
|
|
||||||
|
|
||||||
public function errorAction()
|
|
||||||
{
|
{
|
||||||
|
//The default layout includes the Dashboard header, which may contain private information.
|
||||||
|
//We cannot show that.
|
||||||
|
$this->view->layout()->disableLayout();
|
||||||
|
$this->setupCSS();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function errorAction() {
|
||||||
$errors = $this->_getParam('error_handler');
|
$errors = $this->_getParam('error_handler');
|
||||||
|
|
||||||
switch ($errors->type) {
|
if ($errors) {
|
||||||
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ROUTE:
|
// log error message and stack trace
|
||||||
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_CONTROLLER:
|
Logging::error($errors->exception->getMessage());
|
||||||
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ACTION:
|
Logging::error($errors->exception->getTraceAsString());
|
||||||
|
|
||||||
// 404 error -- controller or action not found
|
switch ($errors->type) {
|
||||||
$this->getResponse()->setHttpResponseCode(404);
|
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ROUTE :
|
||||||
$this->view->message = _('Page not found');
|
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_CONTROLLER :
|
||||||
break;
|
$this->error404Action();
|
||||||
default:
|
break;
|
||||||
// application error
|
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ACTION :
|
||||||
$this->getResponse()->setHttpResponseCode(500);
|
$this->error400Action();
|
||||||
$this->view->message = _('Application error');
|
break;
|
||||||
break;
|
default :
|
||||||
|
$this->error500Action();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$exceptions = $this->_getAllParams();
|
||||||
|
Logging::error($exceptions);
|
||||||
|
$this->error500Action();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Log exception, if logger available
|
// Log exception, if logger available
|
||||||
|
@ -33,11 +47,17 @@ class ErrorController extends Zend_Controller_Action
|
||||||
$this->view->exception = $errors->exception;
|
$this->view->exception = $errors->exception;
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->view->request = $errors->request;
|
$this->view->request = $errors->request;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getLog()
|
private function setupCSS()
|
||||||
{
|
{
|
||||||
|
$CC_CONFIG = Config::getConfig();
|
||||||
|
$staticBaseDir = Application_Common_OsPath::formatDirectoryWithDirectorySeparators($CC_CONFIG['staticBaseDir']);
|
||||||
|
$this->view->headLink()->appendStylesheet($staticBaseDir . 'css/styles.css?' . $CC_CONFIG['airtime_version']);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getLog() {
|
||||||
$bootstrap = $this->getInvokeArg('bootstrap');
|
$bootstrap = $this->getInvokeArg('bootstrap');
|
||||||
if (!$bootstrap->hasPluginResource('Log')) {
|
if (!$bootstrap->hasPluginResource('Log')) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -47,9 +67,43 @@ class ErrorController extends Zend_Controller_Action
|
||||||
return $log;
|
return $log;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function deniedAction()
|
/**
|
||||||
{
|
* 404 error - route or controller
|
||||||
// action body
|
*/
|
||||||
|
public function error404Action() {
|
||||||
|
$this->_helper->viewRenderer('error-404');
|
||||||
|
$this->getResponse()->setHttpResponseCode(404);
|
||||||
|
$this->view->message = _('Page not found.');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 400 error - no such action
|
||||||
|
*/
|
||||||
|
public function error400Action() {
|
||||||
|
$this->_helper->viewRenderer('error-400');
|
||||||
|
$this->getResponse()->setHttpResponseCode(400);
|
||||||
|
$this->view->message = _('The requested action is not supported.');
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 403 error - permission denied
|
||||||
|
*/
|
||||||
|
public function error403Action() {
|
||||||
|
|
||||||
|
$this->_helper->viewRenderer('error-403');
|
||||||
|
$this->getResponse()->setHttpResponseCode(403);
|
||||||
|
$this->view->message = _('You do not have permission to access this resource.');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 500 error - internal server error
|
||||||
|
*/
|
||||||
|
public function error500Action() {
|
||||||
|
|
||||||
|
$this->_helper->viewRenderer('error-500');
|
||||||
|
|
||||||
|
$this->getResponse()->setHttpResponseCode(500);
|
||||||
|
$this->view->message = _('An internal application error has occurred.');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@ class ProvisioningController extends Zend_Controller_Action
|
||||||
$this->view->layout()->disableLayout();
|
$this->view->layout()->disableLayout();
|
||||||
$this->_helper->viewRenderer->setNoRender(true);
|
$this->_helper->viewRenderer->setNoRender(true);
|
||||||
|
|
||||||
if (!RestAuth::verifyAuth(true, true, $this)) {
|
if (!RestAuth::verifyAuth(true, false, $this)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -65,12 +65,12 @@ class ProvisioningController extends Zend_Controller_Action
|
||||||
}
|
}
|
||||||
|
|
||||||
$CC_CONFIG = Config::getConfig();
|
$CC_CONFIG = Config::getConfig();
|
||||||
|
|
||||||
foreach ($CC_CONFIG["supportedStorageBackends"] as $storageBackend) {
|
foreach ($CC_CONFIG["supportedStorageBackends"] as $storageBackend) {
|
||||||
$proxyStorageBackend = new ProxyStorageBackend($storageBackend);
|
$proxyStorageBackend = new ProxyStorageBackend($storageBackend);
|
||||||
$proxyStorageBackend->deleteAllCloudFileObjects();
|
$proxyStorageBackend->deleteAllCloudFileObjects();
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->getResponse()
|
$this->getResponse()
|
||||||
->setHttpResponseCode(200)
|
->setHttpResponseCode(200)
|
||||||
->appendBody("OK");
|
->appendBody("OK");
|
||||||
|
|
|
@ -28,7 +28,7 @@ class Zend_Controller_Plugin_Acl extends Zend_Controller_Plugin_Abstract
|
||||||
{
|
{
|
||||||
$this->_errorPage = array('module' => 'default',
|
$this->_errorPage = array('module' => 'default',
|
||||||
'controller' => 'error',
|
'controller' => 'error',
|
||||||
'action' => 'denied');
|
'action' => 'error');
|
||||||
|
|
||||||
$this->_roleName = $roleName;
|
$this->_roleName = $roleName;
|
||||||
|
|
||||||
|
@ -111,7 +111,16 @@ class Zend_Controller_Plugin_Acl extends Zend_Controller_Plugin_Abstract
|
||||||
$controller = strtolower($request->getControllerName());
|
$controller = strtolower($request->getControllerName());
|
||||||
Application_Model_Auth::pinSessionToClient(Zend_Auth::getInstance());
|
Application_Model_Auth::pinSessionToClient(Zend_Auth::getInstance());
|
||||||
|
|
||||||
if (in_array($controller, array("api", "auth", "locale", "upgrade", 'whmcs-login', "provisioning"))) {
|
if (in_array($controller, array(
|
||||||
|
"api",
|
||||||
|
"auth",
|
||||||
|
"error",
|
||||||
|
"locale",
|
||||||
|
"upgrade",
|
||||||
|
'whmcs-login',
|
||||||
|
"provisioning"
|
||||||
|
)))
|
||||||
|
{
|
||||||
$this->setRoleName("G");
|
$this->setRoleName("G");
|
||||||
} elseif (!Zend_Auth::getInstance()->hasIdentity()) {
|
} elseif (!Zend_Auth::getInstance()->hasIdentity()) {
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN";
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<title><?php echo _("An error has occurred.") ?></title>
|
||||||
|
<?php echo $this->headLink(); ?>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="error-content" id="error-400">
|
||||||
|
<h2><?php echo _("Bad Request!")?></h2>
|
||||||
|
<p><?php echo _("The requested action is not supported!")?></p>
|
||||||
|
<div class="button-bar">
|
||||||
|
<a class="toggle-button" href="<?php echo $this->baseUrl('dashboard/help'); ?>"><?php echo _("Help") ?></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,18 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN";
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<title><?php echo _("An error has occurred.") ?></title>
|
||||||
|
<?php echo $this->headLink(); ?>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="error-content" id="error-403">
|
||||||
|
<h2><?php echo _("Access Denied!")?></h2>
|
||||||
|
<p><?php echo _("You do not have permission to access this page!")?></p>
|
||||||
|
<div class="button-bar">
|
||||||
|
<a class="toggle-button" href="<?php echo $this->baseUrl('dashboard/help'); ?>"><?php echo _("Help") ?></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,18 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN";
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<title><?php echo _("An error has occurred.") ?></title>
|
||||||
|
<?php echo $this->headLink(); ?>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="error-content" id="error-500">
|
||||||
|
<h2><?php echo _("Oops!")?></h2>
|
||||||
|
<p><?php echo _("Something went wrong!")?></p>
|
||||||
|
<div class="button-bar">
|
||||||
|
<a class="toggle-button" href="<?php echo $this->baseUrl('dashboard/help'); ?>"><?php echo _("Help") ?></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -3,7 +3,8 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<title><?php echo _("Zend Framework Default Application") ?></title>
|
<title><?php echo _("An error has occurred.") ?></title>
|
||||||
|
<?php echo $this->headLink(); ?>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="error-content">
|
<div class="error-content">
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
|
@ -899,20 +899,19 @@ input[type="checkbox"] {
|
||||||
|
|
||||||
/* Remove any visible csrf form token footprint */
|
/* Remove any visible csrf form token footprint */
|
||||||
#csrf-label {
|
#csrf-label {
|
||||||
height: 0;
|
display: none;
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#csrf-element {
|
#csrf-element {
|
||||||
height: 8px;
|
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
#csrf-label .errors li, #csrf-element .errors li {
|
#csrf-label .errors li, #csrf-element .errors li {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}*/
|
||||||
|
|
||||||
.login_box {
|
.login_box {
|
||||||
margin: 0 auto 0 auto;
|
margin: 0 auto 0 auto;
|
||||||
|
@ -1031,7 +1030,6 @@ input[type="checkbox"] {
|
||||||
#pref_form p.description {
|
#pref_form p.description {
|
||||||
color: #3b3b3b;
|
color: #3b3b3b;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
float: left;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dt.block-display, dd.block-display {
|
dt.block-display, dd.block-display {
|
||||||
|
@ -2193,7 +2191,7 @@ dd.radio-inline-list, .preferences dd.radio-inline-list, .stream-config dd.radio
|
||||||
width: 98.5%;
|
width: 98.5%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.preferences dd#SoundCloudTags-element.block-display .input_text_area {
|
.preferences dd.block-display .input_text_area {
|
||||||
height: 120px;
|
height: 120px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2202,14 +2200,10 @@ dd.radio-inline-list, .preferences dd.radio-inline-list, .stream-config dd.radio
|
||||||
}
|
}
|
||||||
|
|
||||||
.preferences #logo-remove-btn {
|
.preferences #logo-remove-btn {
|
||||||
float: right;
|
/*float: left;*/
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.preferences #Logo-img-container {
|
|
||||||
margin-top: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#show_time_info {
|
#show_time_info {
|
||||||
font-size:12px;
|
font-size:12px;
|
||||||
height:30px;
|
height:30px;
|
||||||
|
@ -2570,19 +2564,21 @@ dt.block-display.info-block {
|
||||||
|
|
||||||
/*---//////////////////// ERROR PAGE ////////////////////---*/
|
/*---//////////////////// ERROR PAGE ////////////////////---*/
|
||||||
|
|
||||||
.error-content {
|
.error-content {
|
||||||
background:url(images/404.png) no-repeat 0 0;
|
background:url(images/maintenance.png) no-repeat 0 0;
|
||||||
width:300px;
|
width:360px;
|
||||||
margin: 24px 15px;
|
height:350px;
|
||||||
padding: 0px 10px 0 420px;
|
margin:auto;
|
||||||
|
margin-top:25px;
|
||||||
|
padding:auto;
|
||||||
}
|
}
|
||||||
.error-content h2 {
|
.error-content h2 {
|
||||||
margin:0;
|
margin:0;
|
||||||
padding:0 0 10px 0;
|
padding:350px 0 10px 0;
|
||||||
font-size:36px;
|
font-size:36px;
|
||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
color:#3e3e3e;
|
color:#3e3e3e;
|
||||||
text-align:left;
|
text-align:center;
|
||||||
letter-spacing:-.3px;
|
letter-spacing:-.3px;
|
||||||
text-shadow: rgba(248,248,248,.3) 0 1px 0, rgba(0,0,0,.8) 0 -1px 0;
|
text-shadow: rgba(248,248,248,.3) 0 1px 0, rgba(0,0,0,.8) 0 -1px 0;
|
||||||
rgba(51,51,51,.9)
|
rgba(51,51,51,.9)
|
||||||
|
@ -2590,12 +2586,14 @@ dt.block-display.info-block {
|
||||||
.error-content p {
|
.error-content p {
|
||||||
color: #272727;
|
color: #272727;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
text-align:center;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding:8px 2px;
|
padding:8px 2px;
|
||||||
}
|
}
|
||||||
.error-content .button-bar {
|
.error-content .button-bar {
|
||||||
margin-top:47px;
|
margin-top:47px;
|
||||||
padding-left:2px;
|
padding-left:2px;
|
||||||
|
text-align:center;
|
||||||
}
|
}
|
||||||
.error-content .toggle-button {
|
.error-content .toggle-button {
|
||||||
border: 1px solid #434343;
|
border: 1px solid #434343;
|
||||||
|
@ -3142,3 +3140,4 @@ dd .stream-status {
|
||||||
}
|
}
|
||||||
.quota-reached {
|
.quota-reached {
|
||||||
font-size: 14px !important;
|
font-size: 14px !important;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue