From fd9cfb30166cc7325af5c64ea900894c8dcf5d8e Mon Sep 17 00:00:00 2001 From: MuK IT GmbH Date: Sun, 7 Oct 2018 20:04:23 +0000 Subject: [PATCH] publish muk_utils - 12.0 --- muk_utils/tools/__init__.py | 20 ++++++++++++++++ muk_utils/tools/json.py | 47 +++++++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100644 muk_utils/tools/__init__.py create mode 100644 muk_utils/tools/json.py diff --git a/muk_utils/tools/__init__.py b/muk_utils/tools/__init__.py new file mode 100644 index 0000000..d4aaa2c --- /dev/null +++ b/muk_utils/tools/__init__.py @@ -0,0 +1,20 @@ +################################################################################### +# +# Copyright (C) 2018 MuK IT GmbH +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 Affero 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 . +# +################################################################################### + +from . import json \ No newline at end of file diff --git a/muk_utils/tools/json.py b/muk_utils/tools/json.py new file mode 100644 index 0000000..7b021d4 --- /dev/null +++ b/muk_utils/tools/json.py @@ -0,0 +1,47 @@ +################################################################################### +# +# Copyright (C) 2018 MuK IT GmbH +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 Affero 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 . +# +################################################################################### + +import json +import logging +import datetime + +from odoo import models, tools + +from odoo.addons.muk_rest import exceptions + +_logger = logging.getLogger(__name__) + +class ResponseEncoder(json.JSONEncoder): + + def default(self, obj): + if isinstance(obj, datetime.date): + return obj.strftime(tools.DEFAULT_SERVER_DATE_FORMAT) + if isinstance(obj, datetime.datetime): + return obj.strftime(tools.DEFAULT_SERVER_DATETIME_FORMAT) + if isinstance(obj, (bytes, bytearray)): + return obj.decode() + return json.JSONEncoder.default(self, obj) + +class RecordEncoder(ResponseEncoder): + + def default(self, obj): + if isinstance(obj, models.BaseModel): + return obj.name_get() + return ResponseEncoder.default(self, obj) + \ No newline at end of file