ucloud-setup/app/api.py

69 lines
2.2 KiB
Python
Raw Normal View History

2019-08-27 13:31:22 +05:00
import click
2019-09-07 13:10:28 +05:00
import subprocess as sp
2019-08-27 13:57:22 +05:00
import os
2019-08-28 20:42:57 +05:00
import shutil
2019-08-27 13:31:22 +05:00
2019-09-13 21:47:33 +05:00
from app.helper import install_available
from decouple import config
2019-08-27 13:31:22 +05:00
@click.group()
def api():
pass
2019-08-28 16:42:50 +05:00
2019-08-27 13:31:22 +05:00
@api.command("setup")
2019-08-27 13:57:22 +05:00
@click.option("--path", required=True)
2019-08-27 13:31:22 +05:00
@click.option("--auth_name", required=True)
@click.option("--auth_seed", required=True)
@click.option("--auth_realm", required=True)
@click.option("--realm_allowed", multiple=True, required=True)
2019-08-28 20:23:18 +05:00
@click.option("--etcd_url", required=True)
2019-09-07 13:10:28 +05:00
@click.option("--otp_server", default="https://otp.ungleich.ch/ungleichotp/",
help="URL of ungleich OTP server")
def setup(path, auth_name, auth_seed, auth_realm,
realm_allowed, otp_server, etcd_url):
2019-08-28 16:42:50 +05:00
os.chdir(path)
2019-08-30 06:23:45 +05:00
2019-08-28 20:42:57 +05:00
repo_name = "ucloud-api"
2019-09-07 13:10:28 +05:00
# Clone main repo
2019-09-13 21:34:48 +05:00
sp.check_output(['git', 'clone', '--single-branch', '--branch', 'wip',
2019-09-08 20:58:33 +05:00
f'https://code.ungleich.ch/ungleich-public/{repo_name}.git'])
2019-09-07 13:10:28 +05:00
# Create .env file
with open(os.path.join(repo_name, ".env"), "w") as f:
content = (
f"AUTH_NAME={auth_name}\n"
f"AUTH_SEED={auth_seed}\n"
f"AUTH_REALM={auth_realm}\n"
f"REALM_ALLOWED={list(realm_allowed)}\n"
f"OTP_SERVER={otp_server}\n"
f"ETCD_URL={etcd_url}\n"
2019-09-13 21:47:33 +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",
2019-09-13 21:50:28 +05:00
f"REQUEST_PREFIX=/v1/request\n",
f"FILE_PREFIX=/v1/file\n"
2019-09-07 13:10:28 +05:00
)
f.writelines(content)
# Clone Common and Etcd Wrapper
2019-09-13 21:34:48 +05:00
# clone_common(path=repo_name)
# clone_etcd_wrapper(path=repo_name)
2019-09-07 13:10:28 +05:00
# Copy Etcd Wrapper inside ucloud_common as ucloud_common
# also needs etcd wrapper
2019-09-13 21:34:48 +05:00
# shutil.copytree(
# src=os.path.join(repo_name, "etcd3_wrapper"),
# dst=os.path.join(repo_name, "ucloud_common", "etcd3_wrapper"),
# )
2019-09-07 13:10:28 +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-14 11:56:07 +05:00
# sp.check_output(['pipenv','--site-packages', '--three'], cwd=repo_name)
2019-09-08 21:00:53 +05:00
sp.check_output(['pipenv', 'install'], cwd=repo_name)
2019-09-13 21:34:48 +05:00
sp.check_output(['pipenv', 'run', 'python', 'create_image_store.py'], cwd=repo_name)