mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-11-08 19:30:10 +00:00
Harvey Tindall
f063b970b4
config-base.yaml is almost identical to json version, except there's no "order" field, as "sections" and "settings" fields are now lists themselves and so Go can parse the correct order. As such, removed enumerate_config.py. Also, rewrote scripts/generate_ini.py in Go as scripts/ini/. Config structure in Go form is now in common/config.go, and is used by jfa-go and the ini script. app.configBase is now untouched once read from config-base.yaml, and instead copied to and patched in app.patchedConfig. Patching occurs at program start and config modification, so GetConfig is now just a couple of lines. Discord role patching still occurs in GetConfig, as the available roles can change regularly. Also added new "Disabled" field to sections, to avoid the nightmare of deleting from an array.
36 lines
770 B
Python
36 lines
770 B
Python
from ruamel.yaml import YAML
|
|
import json
|
|
from pathlib import Path
|
|
import sys
|
|
yaml = YAML()
|
|
|
|
# c = yaml.load(Path(sys.argv[len(sys.argv)-1]))
|
|
with open(sys.argv[len(sys.argv)-1], 'r') as f:
|
|
c = json.load(f)
|
|
|
|
c.pop("order")
|
|
|
|
c1 = c.copy()
|
|
c1["sections"] = []
|
|
for section in c["sections"]:
|
|
codeSection = { "section": section }
|
|
s = codeSection | c["sections"][section]
|
|
s.pop("order")
|
|
c1["sections"].append(s)
|
|
|
|
c2 = c.copy()
|
|
c2["sections"] = []
|
|
|
|
for section in c1["sections"]:
|
|
sArray = []
|
|
for setting in section["settings"]:
|
|
codeSetting = { "setting": setting }
|
|
s = codeSetting | section["settings"][setting]
|
|
sArray.append(s)
|
|
|
|
section["settings"] = sArray
|
|
c2["sections"].append(section)
|
|
|
|
|
|
yaml.dump(c2, sys.stdout)
|