##// END OF EJS Templates
vcs: handle excessive slashes in from of the repo name path, fixes #5522
vcs: handle excessive slashes in from of the repo name path, fixes #5522

File last commit:

r2487:fcee5614 default
r3329:e2c979bc stable
Show More
appenlight.py
91 lines | 3.1 KiB | text/x-python | PythonLexer
project: added all source files and assets
r1 # -*- coding: utf-8 -*-
release: update copyright year to 2018
r2487 # Copyright (C) 2010-2018 RhodeCode GmbH
project: added all source files and assets
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
ae: Rely on fully prepared settings in appenlight wrapping function.
r594 def wrap_in_appenlight_if_enabled(app, settings, appenlight_client=None):
project: added all source files and assets
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
ae: Rely on fully prepared settings in appenlight wrapping function.
r594 if settings['appenlight']:
project: added all source files and assets
r1 app = RemoteTracebackTracker(app)
if not appenlight_client:
Martin Bornhold
ae: Rely on fully prepared settings in appenlight wrapping function.
r594 app = make_appenlight_middleware(app, settings)
project: added all source files and assets
r1 appenlight_client = app.appenlight_client
else:
app = AppenlightWSGIWrapper(app, appenlight_client)
return app, appenlight_client
class RemoteTracebackTracker(object):
"""
vcs-server: expose remote tracebacks from http backend using the Pyro4AwareFormatter.
r1257 Utility middleware which forwards VCSServer remote traceback information.
project: added all source files and assets
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:
vcs-server: expose remote tracebacks from http backend using the Pyro4AwareFormatter.
r1257 if hasattr(e, '_vcs_server_traceback'):
project: added all source files and assets
r1 track_extra_information(
vcs-server: expose remote tracebacks from http backend using the Pyro4AwareFormatter.
r1257 environ, 'remote_traceback', e._vcs_server_traceback)
project: added all source files and assets
r1 raise