ucloud-setup/app/file.py

59 lines
1.4 KiB
Python
Raw Normal View History

2019-08-27 18:33:26 +05:00
import click
import subprocess
import os
2019-08-28 16:42:50 +05:00
from app.helper import (
clone,
clone_common,
clone_etcd_wrapper,
GitOperation,
PipenvOperation,
FileOperation,
)
2019-08-27 18:33:26 +05:00
@click.group()
def file_scan():
pass
2019-08-28 16:42:50 +05:00
2019-08-27 18:33:26 +05:00
@file_scan.command("setup")
2019-08-28 13:16:33 +05:00
@click.option("--path", required=True)
@click.option("--base_dir", required=True)
@click.option("--file_prefix", required=True)
2019-08-28 23:43:51 +05:00
@click.option("--etcd_url", required=True)
@click.option("--etcd_password", required=True)
def setup(path, base_dir, file_prefix, etcd_url, etcd_password):
2019-08-27 18:33:26 +05:00
os.chdir(path)
2019-08-28 16:42:50 +05:00
2019-08-27 18:33:26 +05:00
repo_name = "ucloud-file-scan"
2019-08-28 16:42:50 +05:00
op_result = GitOperation.clone(
f"https://code.ungleich.ch/ungleich-public/{repo_name}.git"
)
2019-08-30 06:23:45 +05:00
content = (
f"BASE_DIR={base_dir}\n"
f"FILE_PREFIX={file_prefix}\n"
f"ETCD_URL={etcd_url}\n"
f"ETCD_PASSWORD={etcd_password}\n"
)
2019-08-28 16:42:50 +05:00
op_result.add(
FileOperation.write, path=os.path.join(repo_name, ".env"), content=content
)
op_result.add(
GitOperation.clone,
path=repo_name,
url="https://code.ungleich.ch/ahmedbilal/etcd3_wrapper",
)
2019-08-27 18:33:26 +05:00
op_result.add(PipenvOperation.install, path=repo_name)
2019-08-28 16:42:50 +05:00
# Write Crontab entry
2019-08-28 23:43:51 +05:00
with open("/etc/crontabs/root", "a") as crontab:
2019-08-30 06:23:45 +05:00
crontab.write(
f"*/5\t*\t*\t*\t*\tcd {os.path.join(os.getcwd(), repo_name)} && pipenv run python main.py"
)