# This program is free software; you can redistribute it and/or modify # it under the terms of the Lesser GNU 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 Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # # Copyright (C) 2016 Red Hat, Inc. # All rights reserved. # from __future__ import absolute_import import base64 import json import six from six import iteritems, itervalues TYPES = {} NOTYPES = {} def encode_cert(data): """base64 encode X.509 certificate Python 3's base64.b64encode() doesn't support ASCII text. :param data: data as bytes or ASCII text :type data: str, bytes :rtype: bytes """ if isinstance(data, six.text_type): data = data.encode('ascii') return base64.b64encode(data) def decode_cert(data): """base64 decode X.509 certificate :param data: data as bytes or ASCII text :type data: str, bytes :rtype: bytes """ if isinstance(data, six.text_type): data = data.encode('ascii') return base64.b64decode(data) class CustomTypeEncoder(json.JSONEncoder): """ A custom JSONEncoder class that knows how to encode core custom objects. Custom objects are encoded as JSON object literals (ie, dicts) with one key, 'TypeName' where 'TypeName' is the actual name of the type to which the object belongs. That single key maps to another object literal which is just the __dict__ of the object encoded. Reason for ignoring the error: E0202 - An attribute affected in json.encoder line 157 hide this method reported by pylint: The error is in json.encoder.JSONEncoder class. There is a default method (which is overridden here) and also a class attribute self.default initialized in the init method of the class. The intention of such usage being that a custom default method object can be passed to init when creating an instance of JSONEncoder, which is then assigned to class's default method. (which is valid) But pylint raises an issue due to the usage of same name for a method and an attribute in which case the attribute definition hides the method. The reason and example for the issue: (top rated comment) http://stackoverflow.com/questions/12949064/python-what-happens- when-instance-variable-name-is-same-as-method-name """ # pylint: disable=E0202 def default(self, o): for k, v in iteritems(TYPES): if isinstance(o, v): return {k: o.__dict__} for t in itervalues(NOTYPES): if isinstance(o, t): return self.attr_name_conversion(o.__dict__, type(o)) return json.JSONEncoder.default(self, o) @staticmethod def attr_name_conversion(attr_dict, object_class): if not hasattr(object_class, 'json_attribute_names'): return attr_dict reverse_dict = {v: k for k, v in iteritems(object_class.json_attribute_names)} new_dict = dict() for k, v in iteritems(attr_dict): if k in reverse_dict: new_dict[reverse_dict[k]] = v else: new_dict[k] = v return new_dict def CustomTypeDecoder(dct): # nopep8 if len(dct) == 1: type_name = list(dct)[0] value = dct[type_name] if type_name in TYPES: return TYPES[type_name].from_dict(value) return dct