Current Path: > > opt > alt > python27 > lib > > python2.7 > site-packages > > raven > contrib > django
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
celery | Directory | - | - | |
management | Directory | - | - | |
middleware | Directory | - | - | |
raven_compat | Directory | - | - | |
templatetags | Directory | - | - | |
__init__.py | File | 315 bytes | October 29 2017 17:41:19. | |
__init__.pyc | File | 555 bytes | October 18 2019 13:53:42. | |
apps.py | File | 308 bytes | October 29 2017 17:41:19. | |
apps.pyc | File | 874 bytes | October 18 2019 13:53:42. | |
client.py | File | 10377 bytes | October 29 2017 17:41:19. | |
client.pyc | File | 10829 bytes | October 18 2019 13:53:42. | |
handlers.py | File | 1038 bytes | October 29 2017 17:41:19. | |
handlers.pyc | File | 1721 bytes | October 18 2019 13:53:42. | |
logging.py | File | 466 bytes | October 29 2017 17:41:19. | |
logging.pyc | File | 720 bytes | October 18 2019 13:53:42. | |
models.py | File | 9413 bytes | October 29 2017 17:41:19. | |
models.pyc | File | 17261 bytes | October 18 2019 13:53:42. | |
resolver.py | File | 2908 bytes | October 29 2017 17:41:19. | |
resolver.pyc | File | 3510 bytes | October 18 2019 13:53:42. | |
serializers.py | File | 2167 bytes | October 29 2017 17:41:19. | |
serializers.pyc | File | 3237 bytes | October 18 2019 13:53:42. | |
urls.py | File | 594 bytes | October 29 2017 17:41:19. | |
urls.pyc | File | 835 bytes | October 18 2019 13:53:42. | |
utils.py | File | 3176 bytes | October 29 2017 17:41:19. | |
utils.pyc | File | 3130 bytes | October 18 2019 13:53:42. | |
views.py | File | 2988 bytes | October 29 2017 17:41:19. | |
views.pyc | File | 3613 bytes | October 18 2019 13:53:42. |
""" raven.contrib.django.serializers ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: (c) 2010-2012 by the Sentry Team, see AUTHORS for more details. :license: BSD, see LICENSE for more details. """ from __future__ import absolute_import from __future__ import unicode_literals from django.conf import settings from django.http import HttpRequest from django.utils.functional import Promise from raven.utils.serializer import Serializer, register from raven.utils.compat import text_type __all__ = ('PromiseSerializer',) class PromiseSerializer(Serializer): types = (Promise,) def can(self, value): if not super(PromiseSerializer, self).can(value): return False pre = value.__class__.__name__[1:] if not (hasattr(value, '%s__func' % pre) or hasattr(value, '%s__unicode_cast' % pre) or hasattr(value, '%s__text_cast' % pre)): return False return True def serialize(self, value, **kwargs): # EPIC HACK # handles lazy model instances (which are proxy values that don't # easily give you the actual function) pre = value.__class__.__name__[1:] if hasattr(value, '%s__func' % pre): value = getattr(value, '%s__func' % pre)( *getattr(value, '%s__args' % pre), **getattr(value, '%s__kw' % pre)) else: return self.recurse(text_type(value)) return self.recurse(value, **kwargs) register(PromiseSerializer) class HttpRequestSerializer(Serializer): types = (HttpRequest,) def serialize(self, value, **kwargs): return '<%s at 0x%s>' % (type(value).__name__, id(value)) register(HttpRequestSerializer) if getattr(settings, 'DATABASES', None): from django.db.models.query import QuerySet class QuerySetSerializer(Serializer): types = (QuerySet,) def serialize(self, value, **kwargs): qs_name = type(value).__name__ if value.model: return '<%s: model=%s>' % (qs_name, value.model.__name__) return '<%s: (Unbound)>' % (qs_name,) register(QuerySetSerializer)
SILENT KILLER Tool