mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-11-09 20:00:12 +00:00
Harvey Tindall
d629cae71e
*note*: only GetConfig has been changed for now. the config now has "order" and "sections", and each section now has "meta", "order" and "settings". This allows for the use of a struct for loading in Go and less janky web code. Also now appears in swagger.
28 lines
926 B
Python
28 lines
926 B
Python
import json, argparse
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("-i", "--input", help="input config base from jf-accounts")
|
|
parser.add_argument("-o", "--output", help="output config base for jfa-go")
|
|
|
|
args = parser.parse_args()
|
|
|
|
with open(args.input, 'r') as f:
|
|
config = json.load(f)
|
|
|
|
newconfig = {"sections": {}, "order": []}
|
|
|
|
for sect in config["sections"]:
|
|
newconfig["order"].append(sect)
|
|
newconfig["sections"][sect] = {}
|
|
newconfig["sections"][sect]["order"] = []
|
|
newconfig["sections"][sect]["meta"] = config["sections"][sect]["meta"]
|
|
newconfig["sections"][sect]["settings"] = {}
|
|
for setting in config["sections"][sect]["settings"]:
|
|
newconfig["sections"][sect]["order"].append(setting)
|
|
newconfig["sections"][sect]["settings"][setting] = config["sections"][sect]["settings"][setting]
|
|
|
|
with open(args.output, 'w') as f:
|
|
f.write(json.dumps(newconfig, indent=4))
|
|
|
|
|