craftbeerpi4-pione/cbpi/cli.py

58 lines
1.8 KiB
Python
Raw Normal View History

2019-01-21 22:33:29 +01:00
import argparse
2019-01-05 20:43:48 +01:00
import logging
from cbpi.craftbeerpi import CraftBeerPi
import os
import pathlib
import shutil
def create_plugin_file():
import os.path
if os.path.exists(os.path.join(".", 'config', "plugin_list.txt")) is False:
srcfile = os.path.join(os.path.dirname(__file__), "config", "plugin_list.txt")
destfile = os.path.join(".", 'config')
shutil.copy(srcfile, destfile)
def create_config_file():
import os.path
if os.path.exists(os.path.join(".", 'config', "config.yaml")) is False:
srcfile = os.path.join(os.path.dirname(__file__), "config", "config.yaml")
destfile = os.path.join(".", 'config')
shutil.copy(srcfile, destfile)
def create_home_folder_structure():
pathlib.Path(os.path.join(".", 'logs/sensors')).mkdir(parents=True, exist_ok=True)
pathlib.Path(os.path.join(".", 'config')).mkdir(parents=True, exist_ok=True)
2019-01-21 22:33:29 +01:00
def copy_splash():
srcfile = os.path.join(os.path.dirname(__file__), "config", "splash.png")
destfile = os.path.join(".", 'config')
shutil.copy(srcfile, destfile)
2019-01-05 20:43:48 +01:00
def main():
2019-01-21 22:33:29 +01:00
parser = argparse.ArgumentParser(description='Welcome to CraftBeerPi 4')
parser.add_argument("action", type=str, help="start,stop,restart,setup")
2019-01-05 22:44:54 +01:00
2019-01-21 22:33:29 +01:00
args = parser.parse_args()
2019-01-05 20:43:48 +01:00
2019-01-21 22:33:29 +01:00
logging.basicConfig(level=logging.INFO, filename='./logs/app.log', filemode='a', format='%(asctime)s - %(levelname)s - %(name)s - %(message)s')
2019-01-05 22:44:54 +01:00
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(name)s - %(message)s')
2019-01-05 20:43:48 +01:00
2019-01-21 22:33:29 +01:00
if args.action == "setup":
create_home_folder_structure()
create_plugin_file()
create_config_file()
copy_splash()
if args.action == "start":
cbpi = CraftBeerPi()
cbpi.start()
parser.print_help()
2019-01-05 20:43:48 +01:00