1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-10 09:58:55 +00:00
gns3-server/gns3server/crash_report.py

115 lines
4.1 KiB
Python
Raw Normal View History

2015-02-24 16:40:01 +00:00
# -*- coding: utf-8 -*-
#
# Copyright (C) 2014 GNS3 Technologies Inc.
#
# 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 3 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, see <http://www.gnu.org/licenses/>.
import os
2015-03-05 16:44:01 +00:00
import sys
import struct
import platform
2015-02-24 16:40:01 +00:00
try:
import raven
RAVEN_AVAILABLE = True
except ImportError:
# raven is not installed with deb package in order to simplify packaging
RAVEN_AVAILABLE = False
2015-02-24 16:40:01 +00:00
from .version import __version__
from .config import Config
from .utils.get_resource import get_resource
2015-02-24 16:40:01 +00:00
import logging
log = logging.getLogger(__name__)
2015-05-28 10:17:25 +00:00
# Dev build
if __version__[4] != 0:
import faulthandler
2015-05-28 10:17:25 +00:00
# Display a traceback in case of segfault crash. Usefull when frozen
# Not enabled by default for security reason
log.info("Enable catching segfault")
faulthandler.enable()
2015-02-24 16:40:01 +00:00
class CrashReport:
"""
Report crash to a third party service
"""
2015-07-18 20:17:14 +00:00
DSN = "sync+https://630b20380e1f4b388a95888e18dc5045:e63cf59926ae4596832938614b0f9f02@app.getsentry.com/38482"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):
DSN += "?ca_certs={}".format(cacert)
else:
log.warning("The SSL certificate bundle file '{}' could not be found".format(cacert))
2015-02-24 16:40:01 +00:00
_instance = None
2015-02-24 19:22:10 +00:00
def __init__(self):
self._client = None
# We don't want sentry making noise if an error is catched when you don't have internet
sentry_errors = logging.getLogger('sentry.errors')
sentry_errors.disabled = True
sentry_uncaught = logging.getLogger('sentry.errors.uncaught')
sentry_uncaught.disabled = True
def capture_exception(self, request=None):
if not RAVEN_AVAILABLE:
return
if os.path.exists(".git"):
log.warning("A .git directory exist crash report is turn off for developers")
return
2015-02-24 16:40:01 +00:00
server_config = Config.instance().get_section_config("Server")
if server_config.getboolean("report_errors"):
if self._client is None:
self._client = raven.Client(CrashReport.DSN, release=__version__, raise_send_errors=True)
if request is not None:
self._client.http_context({
"method": request.method,
"url": request.path,
"data": request.json,
})
2015-03-05 16:44:01 +00:00
self._client.tags_context({
"os:name": platform.system(),
"os:release": platform.release(),
2015-03-05 19:12:56 +00:00
"os:win_32": " ".join(platform.win32_ver()),
"os:mac": "{} {}".format(platform.mac_ver()[0], platform.mac_ver()[2]),
"os:linux": " ".join(platform.linux_distribution()),
2015-03-05 16:44:01 +00:00
"python:version": "{}.{}.{}".format(sys.version_info[0],
sys.version_info[1],
sys.version_info[2]),
"python:bit": struct.calcsize("P") * 8,
"python:encoding": sys.getdefaultencoding(),
"python:frozen": "{}".format(hasattr(sys, "frozen"))
2015-03-05 16:44:01 +00:00
})
try:
report = self._client.captureException()
except Exception as e:
log.error("Can't send crash report to Sentry: {}".format(e))
2015-03-14 04:42:25 +00:00
return
log.info("Crash report sent with event ID: {}".format(self._client.get_ident(report)))
2015-02-24 16:40:01 +00:00
@classmethod
def instance(cls):
if cls._instance is None:
cls._instance = CrashReport()
return cls._instance