Verify that the secrets file exists
This commit is contained in:
parent
b12f11478d
commit
942f0f2a63
1 changed files with 13 additions and 0 deletions
13
install.py
13
install.py
|
@ -25,6 +25,7 @@ class Installer:
|
||||||
update: bool = False,
|
update: bool = False,
|
||||||
hide_commands: bool = False,
|
hide_commands: bool = False,
|
||||||
):
|
):
|
||||||
|
self.verify_secrets()
|
||||||
yaml = YAML(typ="safe")
|
yaml = YAML(typ="safe")
|
||||||
self.conf = yaml.load(Path("configs.yml").text())
|
self.conf = yaml.load(Path("configs.yml").text())
|
||||||
self.base_dir = Path.getcwd()
|
self.base_dir = Path.getcwd()
|
||||||
|
@ -35,6 +36,18 @@ class Installer:
|
||||||
self.hide_commands = hide_commands
|
self.hide_commands = hide_commands
|
||||||
self.operating_system = self.define_os()
|
self.operating_system = self.define_os()
|
||||||
|
|
||||||
|
def verify_secrets(self) -> None:
|
||||||
|
"""The repository contains a secrets.template, that must be taken care of
|
||||||
|
by the user. If the secrets is wrong, fail.
|
||||||
|
"""
|
||||||
|
|
||||||
|
try:
|
||||||
|
with open("secrets", "r") as secrets_file:
|
||||||
|
secrets = secrets_file.read()
|
||||||
|
# TODO: check the contents too
|
||||||
|
except FileNotFoundError:
|
||||||
|
raise AssertionError("Did you forget to create a 'secrets' file?")
|
||||||
|
|
||||||
def define_os(self) -> str:
|
def define_os(self) -> str:
|
||||||
"""Define what OS we are using."""
|
"""Define what OS we are using."""
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue