Skip to content
Snippets Groups Projects
Commit 16fe2f98 authored by pbarroca's avatar pbarroca
Browse files

Gestion d'erreur en front si connecté ou hote local

parent d1f4134a
Branches
Tags
No related merge requests found
......@@ -1996,6 +1996,7 @@ library/ZendAfi/View/Helper/CoreFiveFileInput.php -text
library/ZendAfi/View/Helper/DatePicker.php -text
library/ZendAfi/View/Helper/Division.php -text
library/ZendAfi/View/Helper/EnteteAvis.php -text
library/ZendAfi/View/Helper/Error.php -text
library/ZendAfi/View/Helper/Facettes.php -text
library/ZendAfi/View/Helper/FicheAbonneLinks.php -text
library/ZendAfi/View/Helper/FileInfos.php -text
......
<h2>N'hésitez pas à contacter notre support</h2>
<div class="panel">
Par courriel (de préférence) : <a href="mailto:hotline@afi-sa.fr">hotline@afi-sa.fr</a><br>
Par téléphone : 01.60.17.12.34</div>
<a href="javascript:$('#error_tech').toggle();">Voir le détail technique de l'erreur &gt;&gt;</a>
<div class="panel" id="error_tech" style="display:none;overflow:auto;">
<strong>Erreur :</strong> <?php echo $this->escape($this->errors->exception->getMessage()); ?><br>
<strong>Date :</strong> <?php echo date('c');?><br>
<strong>Pile d'appel :</strong> <pre><code><?php echo $this->escape($this->errors->exception->getTraceAsString()); ?></code></pre><br>
<strong>Base de données : </strong> <?php echo $this->escape($this->database);?><br>
<strong>Version : </strong> <?php echo $this->escape(VERSION_PERGAME);?><br>
</div>
\ No newline at end of file
<?php echo $this->error($this->errors); ?>
\ No newline at end of file
......@@ -11,22 +11,26 @@
*
* AFI-OPAC 2.0 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
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
* along with AFI-OPAC 2.0; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
class ErrorController extends Zend_Controller_Action {
public function errorAction() {
$this->_response->setHttpResponseCode(500);
$this->_response->clearBody();
$this->_helper->getHelper('viewRenderer')->setLayoutScript('empty.phtml');
if ($this->_request->getServer('HTTP_HOST') !== 'localhost')
if (($this->_request->getServer('HTTP_HOST') == 'localhost')
|| ((null != ($user = Class_Users::getLoader()->getIdentity()))
&& $user->isAdmin())) {
$this->view->errors = $this->_getParam('error_handler');
return;
echo $this->_response->setBody($this->_getParam('error_handler')->exception->xdebug_message);
}
$this->_helper->getHelper('viewRenderer')->setNoRender(true);
$this->_helper->getHelper('viewRenderer')->setLayoutScript('empty.phtml');
}
}
\ No newline at end of file
<h1>Une erreur est survenue</h1>
<?php echo $this->error($this->errors);?>
\ No newline at end of file
<?php
/**
* Copyright (c) 2012, Agence Française Informatique (AFI). All rights reserved.
*
* AFI-OPAC 2.0 is free software; you can redistribute it and/or modify
* it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
* the Free Software Foundation.
*
* There are special exceptions to the terms and conditions of the AGPL as it
* is applied to this software (see README file).
*
* AFI-OPAC 2.0 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 AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
* along with AFI-OPAC 2.0; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
class ZendAfi_View_Helper_Error extends Zend_View_Helper_Abstract {
/**
* @param $error_handler string
* @return string
*/
public function error($error_handler) {
if (null == $error_handler)
return '';
return '<h2>N\'hésitez pas à contacter notre support</h2>
<div class="panel">
Par courriel (de préférence) : <a href="mailto:hotline@afi-sa.fr">hotline@afi-sa.fr</a><br>
Par téléphone : 01.60.17.12.34</div>
<a href="javascript:$(\'#error_tech\').toggle();">Voir le détail technique de l\'erreur &gt;&gt;</a>
<div class="panel" id="error_tech" style="display:none;overflow:auto;">
<strong>Erreur :</strong> '. $this->view->escape($error_handler->exception->getMessage()) . '<br>
<strong>Date :</strong> '. date('c') .'<br>
<strong>Pile d\'appel :</strong> <pre><code>'
. $this->view->escape($error_handler->exception->getTraceAsString()) . '</code></pre><br>
<strong>Base de données : </strong> '
. $this->view->escape(array_at('dbname',
Zend_Db_Table::getDefaultAdapter()->getConfig())) .'<br>
<strong>Version : </strong> '. $this->view->escape(VERSION_PERGAME) .'<br>
</div>';
}
}
?>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment