##// END OF EJS Templates
chore(mercurial): Fixed usage of str in generation of mercurial configs, and fixed largefiles call
chore(mercurial): Fixed usage of str in generation of mercurial configs, and fixed largefiles call

File last commit:

r5088:8f6d1ed6 default
r5188:643e5e48 default
Show More
appenlight.py
105 lines | 3.4 KiB | text/x-python | PythonLexer
project: added all source files and assets
r1
copyrights: updated for 2023
r5088 # Copyright (C) 2010-2023 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
"""
appenlight: detect and disable appenlight if not installed
r4920 import logging
project: added all source files and assets
r1
appenlight: detect and disable appenlight if not installed
r4920 log = logging.getLogger(__name__)
middlewares: all porting for python3
r5082 try:
from appenlight_client.exceptions import get_current_traceback
except ImportError:
def get_current_traceback(*args, **kwargs):
return
project: added all source files and assets
r1
def track_exception(environ):
appenligth: make it optional if library is not installed
r4937
project: added all source files and assets
r1 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,
appenligth: make it optional if library is not installed
r4937 ignore_system_exceptions=True
)
project: added all source files and assets
r1
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.
"""
appenligth: make it optional if library is not installed
r4937 if settings['appenlight']:
try:
from appenlight_client import make_appenlight_middleware
from appenlight_client.wsgi import AppenlightWSGIWrapper
except ImportError:
log.info('Appenlight packages not present, skipping appenlight setup')
return app, appenlight_client
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)
appenligth: make it optional if library is not installed
r4937
project: added all source files and assets
r1 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