2019-08-27 13:33:26 +00:00
|
|
|
import click
|
2019-09-07 08:10:28 +00:00
|
|
|
import subprocess as sp
|
2019-08-27 13:33:26 +00:00
|
|
|
import os
|
|
|
|
|
2019-09-07 08:10:28 +00:00
|
|
|
from app.helper import clone_etcd_wrapper
|
2019-08-27 13:33:26 +00:00
|
|
|
|
|
|
|
@click.group()
|
|
|
|
def file_scan():
|
|
|
|
pass
|
|
|
|
|
2019-08-28 11:42:50 +00:00
|
|
|
|
2019-08-27 13:33:26 +00:00
|
|
|
@file_scan.command("setup")
|
2019-08-28 08:16:33 +00:00
|
|
|
@click.option("--path", required=True)
|
|
|
|
@click.option("--base_dir", required=True)
|
|
|
|
@click.option("--file_prefix", required=True)
|
2019-08-28 18:43:51 +00:00
|
|
|
@click.option("--etcd_url", required=True)
|
2019-09-07 08:10:28 +00:00
|
|
|
def setup(path, base_dir, file_prefix, etcd_url):
|
2019-08-27 13:33:26 +00:00
|
|
|
os.chdir(path)
|
2019-08-28 11:42:50 +00:00
|
|
|
|
2019-08-27 13:33:26 +00:00
|
|
|
repo_name = "ucloud-file-scan"
|
2019-08-28 11:42:50 +00:00
|
|
|
|
2019-09-07 08:10:28 +00:00
|
|
|
# Clone main repository
|
|
|
|
sp.check_output(['git', 'clone',
|
2019-09-08 15:58:33 +00:00
|
|
|
f'https://code.ungleich.ch/ungleich-public/{repo_name}.git'])
|
2019-08-30 14:19:37 +00:00
|
|
|
|
2019-09-07 08:10:28 +00:00
|
|
|
# Create .env file
|
|
|
|
with open(os.path.join(repo_name, ".env"), "w") as f:
|
|
|
|
content = (
|
|
|
|
f"BASE_DIR={base_dir}\n"
|
|
|
|
f"FILE_PREFIX={file_prefix}\n"
|
|
|
|
f"ETCD_URL={etcd_url}\n"
|
|
|
|
)
|
|
|
|
f.writelines(content)
|
|
|
|
|
|
|
|
# Clone etcd wrapper
|
|
|
|
clone_etcd_wrapper()
|
|
|
|
|
|
|
|
# Create virtualenv with site-packages enabled and install all dependencies
|
2019-09-08 16:00:53 +00:00
|
|
|
sp.check_output(['pipenv','--site-packages', '--python', '3'], cwd=repo_name)
|
|
|
|
sp.check_output(['pipenv', 'install'], cwd=repo_name)
|
2019-09-07 08:10:28 +00:00
|
|
|
|
2019-08-28 11:42:50 +00:00
|
|
|
# Write Crontab entry
|
2019-08-28 18:43:51 +00:00
|
|
|
with open("/etc/crontabs/root", "a") as crontab:
|
2019-08-30 01:23:45 +00:00
|
|
|
crontab.write(
|
2019-08-30 19:34:10 +00:00
|
|
|
f"*/1\t*\t*\t*\t*\t$(cd {os.path.join(os.getcwd(), repo_name)} && pipenv run python main.py)\n"
|
2019-08-30 01:23:45 +00:00
|
|
|
)
|