updated config logic to read from one file

This commit is contained in:
venus
2026-04-14 03:36:14 -05:00
parent 3007d07d62
commit be093ed3b3
4 changed files with 37 additions and 16 deletions

View File

@@ -1,4 +0,0 @@
{
"data_dir": "/home/venus/code/ctf/"
}

4
config.toml Normal file
View File

@@ -0,0 +1,4 @@
[Enviroment]
competition = "mycomp"
catagory = "somecat"
challenge = "somechal"

View File

@@ -3,11 +3,31 @@
import argparse
from ctf.utils import state
state.testVal = 123
state.testVal2 = 123
def setArguments():
parser = argparse.ArgumentParser( #type:ignore
prog="ctf",
description="A collection of cli tools to improve your ctf workflow",
epilog="")
parser.add_argument('action') # positional argument, action to be taken
parser.add_argument('-c', '--count') # option that takes a value
parser.add_argument('-v', '--verbose', action='store_true') # on/off flag
args = parser.parse_args()
return args
def main():
print("Hello from ctf!")
print(f"Stored: {state.testVal}")
state.info = "me"
# Parse arguments
# Current Ctf
# Current Challenge
# Validate args
# Call library functiions
# Set Ctf
args = setArguments()
if args.action == set:
print(f"setting ctf to{args.ctf}")
if __name__ == "__main__":

View File

@@ -3,15 +3,16 @@
import tomllib
import json
import toml
from pathlib import Path
from platformdirs import user_config_dir
from platformdirs import user_data_dir
# Parse config file
class ConfigManager:
# CONFIG_DIR = Path(user_config_dir("ctf")) #config directory is $XDG_CONFIG_HOME/ctf/
CONFIG_DIR = Path(user_config_dir("ctf")) #config directory is $XDG_CONFIG_HOME/ctf/
def set_defaults(self, key = "all"):
# set all default options for the config
if key == "data_dir" or key == "all" : self.data_dir = Path("user_data_dir/ctf")
def __init__(self, file_path = "user_config_dir/ctf.json"):
@@ -33,19 +34,19 @@ class ConfigManager:
return f"ConfigManager({self.__dict__})"
class StateManager:
_state_file : Path
_path : Path
_data: dict
def __init__(self, data_dir: Path):
# DATA_DIR = Path(user_data_dir("ctf")) #config directory is $XDG_CONFIG_HOME/ctf/
data_dir.mkdir(parents = True, exist_ok = True)
object.__setattr__(self, "_state_file", data_dir / "state.json") # set self._path to data_dir safely
object.__setattr__(self, "_path", "user_config_dir/config.json") # set self._path to data_dir safely
object.__setattr__(self, "_data", self._load()) # load objects into self
def _load(self):
if self._state_file.exists():
with open(self._state_file, "r") as f:
return json.load(f)
if self._path.exists():
with open(self._path, "r") as f:
return toml.load(f)
return{}
def __getattr__(self, name):
@@ -56,7 +57,7 @@ class StateManager:
# use state.challenge = "run" to set challenge and run to dictionary
# writes the whole dict to disk
self._data[name] = value
with open(self._state_file, "w",) as f:
with open(self._path, "w",) as f:
json.dump(self._data, f, indent=4)
def __repr__(self):
return f"StateManager({self.__dict__})"