appenlight.py
91 lines
| 3.1 KiB
| text/x-python
|
PythonLexer
r1 | # -*- coding: utf-8 -*- | |||
r2487 | # Copyright (C) 2010-2018 RhodeCode GmbH | |||
r1 | # | |||
# This program is free software: you can redistribute it and/or modify | ||||
# it under the terms of the GNU Affero General Public License, version 3 | ||||
# (only), as published by the Free Software Foundation. | ||||
# | ||||
# 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 Affero General Public License | ||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||||
# | ||||
# This program is dual-licensed. If you wish to learn more about the | ||||
# RhodeCode Enterprise Edition, including its added features, Support services, | ||||
# and proprietary license terms, please see https://rhodecode.com/licenses/ | ||||
""" | ||||
middleware to handle appenlight publishing of errors | ||||
""" | ||||
from appenlight_client import make_appenlight_middleware | ||||
from appenlight_client.exceptions import get_current_traceback | ||||
from appenlight_client.wsgi import AppenlightWSGIWrapper | ||||
def track_exception(environ): | ||||
if 'appenlight.client' not in environ: | ||||
return | ||||
# pass the traceback object to middleware | ||||
environ['appenlight.__traceback'] = get_current_traceback( | ||||
skip=1, | ||||
show_hidden_frames=True, | ||||
ignore_system_exceptions=True) | ||||
def track_extra_information(environ, section, value): | ||||
""" | ||||
Utility function to attach extra information in case of an error condition. | ||||
It will take care of attaching this information to the right place inside | ||||
of `environ`, so that the appenight client can pick it up. | ||||
""" | ||||
environ.setdefault('appenlight.extra', {}) | ||||
environ['appenlight.extra'][section] = value | ||||
Martin Bornhold
|
r594 | def wrap_in_appenlight_if_enabled(app, settings, appenlight_client=None): | ||
r1 | """ | |||
Wraps the given `app` for appenlight support. | ||||
.. important:: | ||||
Appenlight expects that the wrapper is executed only once, that's why | ||||
the parameter `appenlight_client` can be used to pass in an already | ||||
existing client instance to avoid that decorators are applied more than | ||||
once. | ||||
This is in use to support our setup of the vcs related middlewares. | ||||
""" | ||||
Martin Bornhold
|
r594 | if settings['appenlight']: | ||
r1 | app = RemoteTracebackTracker(app) | |||
if not appenlight_client: | ||||
Martin Bornhold
|
r594 | app = make_appenlight_middleware(app, settings) | ||
r1 | appenlight_client = app.appenlight_client | |||
else: | ||||
app = AppenlightWSGIWrapper(app, appenlight_client) | ||||
return app, appenlight_client | ||||
class RemoteTracebackTracker(object): | ||||
""" | ||||
r1257 | Utility middleware which forwards VCSServer remote traceback information. | |||
r1 | """ | |||
def __init__(self, app): | ||||
self.application = app | ||||
def __call__(self, environ, start_response): | ||||
try: | ||||
return self.application(environ, start_response) | ||||
except Exception as e: | ||||
r1257 | if hasattr(e, '_vcs_server_traceback'): | |||
r1 | track_extra_information( | |||
r1257 | environ, 'remote_traceback', e._vcs_server_traceback) | |||
r1 | raise | |||