mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
23 lines
595 B
Python
23 lines
595 B
Python
from json import JSONEncoder
|
|
|
|
class ComplexEncoder(JSONEncoder):
|
|
|
|
|
|
def default(self, obj):
|
|
|
|
from core.database.orm_framework import DBModel
|
|
|
|
try:
|
|
if isinstance(obj, DBModel):
|
|
return obj.__dict__
|
|
#elif callable(getattr(obj, "reprJSON")):
|
|
# return obj.reprJSON()
|
|
#elif isinstance(obj, ActorModel):
|
|
# return None
|
|
#elif hasattr(obj, "callback"):
|
|
# return obj()
|
|
else:
|
|
return None
|
|
except TypeError:
|
|
pass
|
|
return None
|