Lint: app.py

This commit is contained in:
mrjk 2022-01-26 15:32:17 -05:00
parent ac0e4e8237
commit 4b04ef19a0

View File

@ -1,27 +1,22 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
"""Kheops App interface"""
# import sys
# sys.path.append("/home/jez/prj/bell/training/tiger-ansible/ext/ansible-tree")
import sys import sys
import yaml import logging
import anyconfig import json
from pprint import pprint
from kheops.query import Query
from kheops.utils import schema_validate
import anyconfig
# from box import Box
from pathlib import Path from pathlib import Path
import logging import anyconfig
from kheops.utils import schema_validate
from kheops.query import Query
import kheops.plugin as KheopsPlugins
from kheops.managers import BackendsManager, RulesManager
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
class App: class App:
"""Main Kheops Application Instance"""
schema = { schema = {
"$schema": "http://json-schema.org/draft-07/schema#", "$schema": "http://json-schema.org/draft-07/schema#",
@ -61,7 +56,7 @@ class App:
"type": "string", "type": "string",
"description": "Application working directory. If a relative path is used, it will be depending on `kheops.yml` directory", "description": "Application working directory. If a relative path is used, it will be depending on `kheops.yml` directory",
}, },
] ],
}, },
}, },
}, },
@ -81,9 +76,9 @@ class App:
"type": "string", "type": "string",
"description": "Add a path prefix before all paths. This is quite useful to store your YAML data in a dedicated tree.", "description": "Add a path prefix before all paths. This is quite useful to store your YAML data in a dedicated tree.",
}, },
] ],
},
}, },
}
}, },
"rules": { "rules": {
"type": "object", "type": "object",
@ -118,7 +113,7 @@ class App:
try: try:
conf2 = conf2[namespace] conf2 = conf2[namespace]
except KeyError: except KeyError:
log.error(f"Can't find namespace '{namespace}' in config '{config}'") log.error("Can't find namespace '%s' in config '%s'", namespace, config)
sys.exit(1) sys.exit(1)
# Get application paths # Get application paths
@ -146,12 +141,11 @@ class App:
path_cwd = str(Path.cwd().resolve()) path_cwd = str(Path.cwd().resolve())
path_root = str(path_root.resolve()) path_root = str(path_root.resolve())
self.run['path_cwd'] = path_cwd self.run["path_cwd"] = path_cwd
self.run['path_root'] = path_root self.run["path_root"] = path_root
# self.run['path_prefix'] = str(p.resolve()) # self.run['path_prefix'] = str(p.resolve())
log.debug (f"Working directory is {path_root} while cwd is: {path_cwd}") log.debug("Working directory is %s, cwd is: %s", path_root, path_cwd)
# path_root = path_root.resolve().relative_to(Path.cwd()) # path_root = path_root.resolve().relative_to(Path.cwd())
@ -164,41 +158,32 @@ class App:
log.debug("Root directory is: %s", path_root) log.debug("Root directory is: %s", path_root)
def lookup(self, key=None, policy=None, scope=None, trace=False, explain=False): def lookup(self, key=None, policy=None, scope=None, trace=False, explain=False):
log.debug(f"Lookup key {key} with scope: {scope}") """Lookup a key in hierarchy"""
q = Query(app=self) log.debug("Lookup key %s with scope: %s", key, scope)
r = q.exec(key=key, scope=scope, policy=policy, trace=trace, explain=explain) query = Query(app=self)
ret = query.exec(key=key, scope=scope, policy=policy, trace=trace, explain=explain)
return r return ret
#print("=== Query Result ===")
print(anyconfig.dumps(r, ac_parser=fmt))
#print("=== Query Result ===")
def dump_schema(self): def dump_schema(self):
"""Dump configuration schema"""
import json ret1 = BackendsManager.get_schema(KheopsPlugins, mode="parts")
import kheops.plugin as KheopsPlugins ret2 = RulesManager.get_schema(KheopsPlugins)
from kheops.managers import BackendsManager, RulesManager print(json.dumps(ret1, indent=2))
r1 = BackendsManager.get_schema(KheopsPlugins, mode='parts')
r2 = RulesManager.get_schema(KheopsPlugins)
#pprint (r1)
print(json.dumps(r1, indent=2))
return return
d = self.schema # ret = self.schema
d["patternProperties"][".*"]["properties"]["tree"]["items"]["properties"] = r1 # ret["patternProperties"][".*"]["properties"]["tree"]["items"]["properties"] = ret1
d["patternProperties"][".*"]["properties"]["tree"]["items"] = r2 # ret["patternProperties"][".*"]["properties"]["tree"]["items"] = ret2
print(json.dumps(d, indent=2))
# print(json.dumps(ret, indent=2))
def gen_docs(self): def gen_docs(self):
""" Generate documentation"""
import json
import kheops.plugin as KheopsPlugins
from kheops.managers import BackendsManager, RulesManager
print("WIP") print("WIP")
return None
# src = { # src = {
# "app": { # "app": {
@ -211,7 +196,6 @@ class App:
# #
# r1 = BackendsManager.get_schema(KheopsPlugins, mode='parts') # r1 = BackendsManager.get_schema(KheopsPlugins, mode='parts')
# print (json.dumps(r1, indent=2)) # print (json.dumps(r1, indent=2))
# ret = { # ret = {
@ -226,7 +210,3 @@ class App:
# for plugin_name, schema in plugins.items(): # for plugin_name, schema in plugins.items():
# part_item_ # part_item_