ext_json.py
83 lines
| 2.4 KiB
| text/x-python
|
PythonLexer
r1 | import datetime | |||
import decimal | ||||
import functools | ||||
r4972 | # we keep simplejson for having dump functionality still | |||
# orjson doesn't support it | ||||
import orjson | ||||
import simplejson | ||||
import orjson as json | ||||
r1 | ||||
from rhodecode.lib.datelib import is_aware | ||||
r4972 | from rhodecode.lib.str_utils import safe_str | |||
r1 | ||||
try: | ||||
r2351 | import rhodecode.translation | |||
r1 | except ImportError: | |||
r2351 | rhodecode = None | |||
r1 | ||||
__all__ = ['json'] | ||||
def _obj_dump(obj): | ||||
""" | ||||
Custom function for dumping objects to JSON, if obj has __json__ attribute | ||||
or method defined it will be used for serialization | ||||
:param obj: | ||||
""" | ||||
# See "Date Time String Format" in the ECMA-262 specification. | ||||
# some code borrowed from django 1.4 | ||||
if isinstance(obj, set): | ||||
return list(obj) | ||||
elif isinstance(obj, datetime.datetime): | ||||
r = obj.isoformat() | ||||
r4935 | if isinstance(obj.microsecond, int): | |||
r1 | r = r[:23] + r[26:] | |||
if r.endswith('+00:00'): | ||||
r = r[:-6] + 'Z' | ||||
return r | ||||
elif isinstance(obj, datetime.date): | ||||
return obj.isoformat() | ||||
elif isinstance(obj, datetime.time): | ||||
if is_aware(obj): | ||||
raise TypeError("Time-zone aware times are not JSON serializable") | ||||
r = obj.isoformat() | ||||
r4935 | if isinstance(obj.microsecond, int): | |||
r1 | r = r[:12] | |||
return r | ||||
elif hasattr(obj, '__json__'): | ||||
if callable(obj.__json__): | ||||
return obj.__json__() | ||||
else: | ||||
return obj.__json__ | ||||
elif isinstance(obj, decimal.Decimal): | ||||
return str(obj) | ||||
elif isinstance(obj, complex): | ||||
return [obj.real, obj.imag] | ||||
r2358 | elif rhodecode and isinstance(obj, rhodecode.translation._LazyString): | |||
r1 | return obj.eval() | |||
else: | ||||
raise TypeError(repr(obj) + " is not JSON serializable") | ||||
r4972 | json.dumps = functools.partial(json.dumps, default=_obj_dump, option=orjson.OPT_NON_STR_KEYS) | |||
json.dump = functools.partial(simplejson.dump, default=_obj_dump) | ||||
def formatted_json(*args, **kwargs): | ||||
# alias for formatted json | ||||
opts = orjson.OPT_NON_STR_KEYS | orjson.OPT_INDENT_2 | orjson.OPT_SORT_KEYS | ||||
return functools.partial(json.dumps, option=opts)(*args, **kwargs) | ||||
r1 | ||||
r4972 | def formatted_str_json(*args, **kwargs): | |||
opts = orjson.OPT_NON_STR_KEYS | orjson.OPT_INDENT_2 | orjson.OPT_SORT_KEYS | ||||
closure = functools.partial(json.dumps, option=opts) | ||||
return safe_str(closure(*args, **kwargs)) | ||||
def str_json(*args, **kwargs): | ||||
closure = functools.partial(json.dumps) | ||||
return safe_str(closure(*args, **kwargs)) | ||||