From e42b6614b2e616924d05e7b10834c0856b8fb5d6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Barrois?= Date: Fri, 5 Apr 2013 23:43:49 +0200 Subject: [PATCH] Add support for JS error reporting to Sentry. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Raphaël Barrois --- configs/platal.ini | 4 ++++ modules/platal.php | 8 ++++++-- templates/platal/error.tpl | 31 +++++++++++++++++++++++++++++++ templates/platal/raven.tpl | 32 ++++++++++++++++++++++++++++++++ templates/skin/common.header.tpl | 1 + 5 files changed, 74 insertions(+), 2 deletions(-) create mode 100644 templates/platal/error.tpl create mode 100644 templates/platal/raven.tpl diff --git a/configs/platal.ini b/configs/platal.ini index cfc3820..532f221 100644 --- a/configs/platal.ini +++ b/configs/platal.ini @@ -159,6 +159,10 @@ econfiance = "" ; Key used to log errors to Sentry sentry_dsn = "" +; $globals->core->sentry_js_dsn +; Key used to log JS errors to Sentry +sentry_js_dsn = "" + ; The API section contains the configuration for the web services. [Api] diff --git a/modules/platal.php b/modules/platal.php index 481b4c4..f4b0443 100644 --- a/modules/platal.php +++ b/modules/platal.php @@ -613,9 +613,13 @@ Adresse de secours : ' . $to)); $wiz->apply($page, 'review', $action, $mode); } - function handler_test_error($page) + function handler_test_error($page, $mode = null) { - throw new Exception("Blih"); + if ($mode == 'js') { + $page->changeTpl('platal/error.tpl'); + } else { + throw new Exception("Blih"); + } } } diff --git a/templates/platal/error.tpl b/templates/platal/error.tpl new file mode 100644 index 0000000..3dcceff --- /dev/null +++ b/templates/platal/error.tpl @@ -0,0 +1,31 @@ +{**************************************************************************} +{* *} +{* Copyright (C) 2003-2013 Polytechnique.org *} +{* http://opensource.polytechnique.org/ *} +{* *} +{* This program 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 2 of the License, or *} +{* (at your option) any later version. *} +{* *} +{* This program 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 this program; if not, write to the Free Software *} +{* Foundation, Inc., *} +{* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *} +{* *} +{**************************************************************************} + +{literal} + +{/literal} diff --git a/templates/platal/raven.tpl b/templates/platal/raven.tpl new file mode 100644 index 0000000..e33bc08 --- /dev/null +++ b/templates/platal/raven.tpl @@ -0,0 +1,32 @@ +{**************************************************************************} +{* *} +{* Copyright (C) 2003-2013 Polytechnique.org *} +{* http://opensource.polytechnique.org/ *} +{* *} +{* This program 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 2 of the License, or *} +{* (at your option) any later version. *} +{* *} +{* This program 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 this program; if not, write to the Free Software *} +{* Foundation, Inc., *} +{* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *} +{* *} +{**************************************************************************} + +{if $globals->core->sentry_js_dsn} + {* Minified raven *} + + +{/if} diff --git a/templates/skin/common.header.tpl b/templates/skin/common.header.tpl index d91ddc1..f27554a 100644 --- a/templates/skin/common.header.tpl +++ b/templates/skin/common.header.tpl @@ -46,5 +46,6 @@ {include core=plpage.header.tpl} + {include file=platal/raven.tpl} {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *} -- 2.1.4