backup-tool/app/parser.py

52 lines
1.3 KiB
Python
Raw Normal View History

2021-04-25 16:27:57 +00:00
"""Handles parsing a config file from disk."""
import yaml
from pathlib import Path
from typing import List, Union
2021-01-15 21:00:56 +00:00
from specs import Spec, DirectorySpec, VolumeSpec, ContainerSpec
2021-01-15 20:08:56 +00:00
import skeleton
def read_specs_file(path: Union[str, Path]) -> List[Spec]:
2021-04-26 15:45:19 +00:00
"""Read a config file and merge it with the skeleton.
2021-04-25 16:27:57 +00:00
Args:
path: path to the yaml config file
Returns:
A list of specs, parsed from the config.
"""
with open(path, "r") as yaml_file:
2021-01-15 20:08:56 +00:00
data = yaml.safe_load(yaml_file)
2021-04-25 16:27:57 +00:00
# NOTE shouldn't this be defined as a top-level variable?
2021-01-15 21:00:56 +00:00
categories = [
("directories", DirectorySpec),
("volumes", VolumeSpec),
("containers", ContainerSpec),
]
specs = []
for key, class_name in categories:
2021-01-15 20:08:56 +00:00
if not data["specs"].get(key):
continue
# Check what defaults are present
2021-01-15 20:08:56 +00:00
defaults = {}
2021-04-25 16:27:57 +00:00
if data.get("defaults"):
if data["defaults"].get("all"):
2021-01-15 20:08:56 +00:00
defaults = skeleton.merge(defaults, data["defaults"]["all"])
if data["defaults"].get(key):
2021-01-15 20:08:56 +00:00
defaults = skeleton.merge(defaults, data["defaults"][key])
specs.extend(
[
2021-01-15 20:08:56 +00:00
class_name.from_dict(name, spec, defaults)
for name, spec in data["specs"][key].items()
]
)
return specs