X7ROOT File Manager
Current Path:
/opt/alt/python38/lib/python3.8/site-packages/sentry_sdk/integrations
opt
/
alt
/
python38
/
lib
/
python3.8
/
site-packages
/
sentry_sdk
/
integrations
/
ðŸ“
..
📄
__init__.py
(4.14 KB)
ðŸ“
__pycache__
📄
_wsgi_common.py
(3.58 KB)
📄
aiohttp.py
(3.8 KB)
📄
argv.py
(894 B)
📄
atexit.py
(1.46 KB)
📄
aws_lambda.py
(6.6 KB)
📄
bottle.py
(5.4 KB)
📄
celery.py
(4.32 KB)
📄
dedupe.py
(1.06 KB)
ðŸ“
django
📄
excepthook.py
(1.3 KB)
📄
flask.py
(7.1 KB)
📄
gnu_backtrace.py
(2.94 KB)
📄
logging.py
(5.88 KB)
📄
modules.py
(1.21 KB)
📄
pyramid.py
(5.78 KB)
📄
rq.py
(3.2 KB)
📄
sanic.py
(6.9 KB)
📄
serverless.py
(1.21 KB)
📄
stdlib.py
(1.83 KB)
📄
threading.py
(1.56 KB)
📄
tornado.py
(6.24 KB)
📄
wsgi.py
(7.13 KB)
Editing: _wsgi_common.py
import json from sentry_sdk.hub import Hub, _should_send_default_pii from sentry_sdk.utils import AnnotatedValue from sentry_sdk._compat import text_type if False: from typing import Any from typing import Dict from typing import Optional from typing import Union class RequestExtractor(object): def __init__(self, request): # type: (Any) -> None self.request = request def extract_into_event(self, event): # type: (Dict[str, Any]) -> None client = Hub.current.client if client is None: return data = None # type: Optional[Union[AnnotatedValue, Dict[str, Any]]] content_length = self.content_length() request_info = event.setdefault("request", {}) if _should_send_default_pii(): request_info["cookies"] = dict(self.cookies()) bodies = client.options["request_bodies"] if ( bodies == "never" or (bodies == "small" and content_length > 10 ** 3) or (bodies == "medium" and content_length > 10 ** 4) ): data = AnnotatedValue( "", {"rem": [["!config", "x", 0, content_length]], "len": content_length}, ) else: parsed_body = self.parsed_body() if parsed_body is not None: data = parsed_body elif self.raw_data(): data = AnnotatedValue( "", {"rem": [["!raw", "x", 0, content_length]], "len": content_length}, ) else: return request_info["data"] = data def content_length(self): # type: () -> int try: return int(self.env().get("CONTENT_LENGTH", 0)) except ValueError: return 0 def cookies(self): raise NotImplementedError() def raw_data(self): raise NotImplementedError() def form(self): raise NotImplementedError() def parsed_body(self): # type: () -> Optional[Dict[str, Any]] form = self.form() files = self.files() if form or files: data = dict(form.items()) for k, v in files.items(): size = self.size_of_file(v) data[k] = AnnotatedValue( "", {"len": size, "rem": [["!raw", "x", 0, size]]} ) return data return self.json() def is_json(self): # type: () -> bool return _is_json_content_type(self.env().get("CONTENT_TYPE")) def json(self): # type: () -> Optional[Any] try: if self.is_json(): raw_data = self.raw_data() if not isinstance(raw_data, text_type): raw_data = raw_data.decode("utf-8") return json.loads(raw_data) except ValueError: pass return None def files(self): raise NotImplementedError() def size_of_file(self, file): raise NotImplementedError() def env(self): raise NotImplementedError() def _is_json_content_type(ct): # type: (str) -> bool mt = (ct or "").split(";", 1)[0] return ( mt == "application/json" or (mt.startswith("application/")) and mt.endswith("+json") ) def _filter_headers(headers): # type: (Dict[str, str]) -> Dict[str, str] if _should_send_default_pii(): return headers return { k: v for k, v in headers.items() if k.lower().replace("_", "-") not in ("set-cookie", "cookie", "authorization") }
Upload File
Create Folder