Source code for omniconf.backends.json

# Copyright (c) 2016 Cyso < development [at] cyso . com >
#
# This file is part of omniconf, a.k.a. python-omniconf .
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 3.0 of the License, or (at your option) any later version.
#
# This library 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 library. If not, see
# <http://www.gnu.org/licenses/>.

import json
from typing import Optional, Sequence, TextIO

from omniconf.backends.generic import ConfigBackend, DictConfigBackend
from omniconf.config import ConfigRegistry
from omniconf.keys import join_key
from omniconf.setting import Setting


[docs] class JsonBackend(DictConfigBackend): """ Uses a JSON string as a backend, and allows values in it to be retrieved using dotted keys. """ def __init__(self, conf: TextIO) -> None: super(JsonBackend, self).__init__(json.load(conf))
[docs] @classmethod def autodetect_settings(cls, autoconfigure_prefix: Optional[str]) -> Sequence[Setting]: return (Setting(key=join_key(autoconfigure_prefix, "json", "filename"), _type=str, required=False),)
[docs] @classmethod def autoconfigure(cls, conf: ConfigRegistry, autoconfigure_prefix: Optional[str]) -> Optional[ConfigBackend]: filename_key = join_key(autoconfigure_prefix, "json", "filename") if conf.has(filename_key) and (filename := conf.get(filename_key)): with open(filename) as config_file: return JsonBackend(conf=config_file) return None