2019-08-27 18:33:26 +05:00
|
|
|
import click
|
2019-09-07 13:10:28 +05:00
|
|
|
import subprocess as sp
|
2019-08-27 18:33:26 +05:00
|
|
|
import os
|
|
|
|
|
2019-09-17 17:46:00 +05:00
|
|
|
from app.helper import install_available, get_distro_name
|
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)
|
2019-09-17 17:43:30 +05:00
|
|
|
@click.option("--branch", default="master")
|
|
|
|
def setup(path, base_dir, file_prefix, etcd_url, branch):
|
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
|
|
|
|
2019-09-07 13:10:28 +05:00
|
|
|
# Clone main repository
|
2019-09-17 17:43:30 +05:00
|
|
|
sp.check_output(['git', 'clone', '--single-branch', '--branch', branch,
|
2019-09-08 20:58:33 +05:00
|
|
|
f'https://code.ungleich.ch/ungleich-public/{repo_name}.git'])
|
2019-08-30 19:19:37 +05:00
|
|
|
|
2019-09-07 13:10:28 +05: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"
|
2019-09-13 21:47:33 +05:00
|
|
|
f"ETCD_URL={etcd_url}\n",
|
2019-09-14 14:07:17 +05:00
|
|
|
f"VM_PREFIX=/v1/vm/\n",
|
|
|
|
f"HOST_PREFIX=/v1/host/\n",
|
|
|
|
f"IMAGE_PREFIX=/v1/image/\n",
|
|
|
|
f"IMAGE_STORE_PREFIX=/v1/image_store/\n",
|
|
|
|
f"REQUEST_PREFIX=/v1/request/\n",
|
|
|
|
f"FILE_PREFIX=/v1/file/\n"
|
2019-09-07 13:10:28 +05:00
|
|
|
)
|
|
|
|
f.writelines(content)
|
2019-09-17 17:43:30 +05:00
|
|
|
|
2019-09-12 13:20:28 +05:00
|
|
|
install_available(repo_name)
|
2019-09-12 00:16:34 +05:00
|
|
|
|
2019-09-07 13:10:28 +05:00
|
|
|
# Create virtualenv with site-packages enabled and install all dependencies
|
2019-09-17 22:27:59 +05:00
|
|
|
sp.check_output(['pipenv', 'install','--python', '3'], cwd=repo_name)
|
2019-09-07 13:10:28 +05:00
|
|
|
|
2019-09-10 17:35:34 +05:00
|
|
|
|
2019-08-28 16:42:50 +05:00
|
|
|
# Write Crontab entry
|
2019-09-17 17:46:00 +05:00
|
|
|
if get_distro_name() == "alpine":
|
|
|
|
crontab_path = "/etc/crontabs/root"
|
|
|
|
else:
|
|
|
|
crontab_path = "/etc/crontab"
|
|
|
|
|
|
|
|
with open(crontab_path, "a") as crontab:
|
2019-08-30 06:23:45 +05:00
|
|
|
crontab.write(
|
2019-08-31 00:34:10 +05:00
|
|
|
f"*/1\t*\t*\t*\t*\t$(cd {os.path.join(os.getcwd(), repo_name)} && pipenv run python main.py)\n"
|
2019-09-17 17:46:00 +05:00
|
|
|
)
|