ucloud-setup/app/api.py

59 lines
1.8 KiB
Python
Raw Normal View History

2019-08-27 08:31:22 +00:00
import click
2019-09-07 08:10:28 +00:00
import subprocess as sp
2019-08-27 08:57:22 +00:00
import os
2019-08-28 15:42:57 +00:00
import shutil
2019-08-27 08:31:22 +00:00
2019-09-07 08:10:28 +00:00
from app.helper import clone_common, clone_etcd_wrapper
2019-08-27 08:31:22 +00:00
@click.group()
def api():
pass
2019-08-28 11:42:50 +00:00
2019-08-27 08:31:22 +00:00
@api.command("setup")
2019-08-27 08:57:22 +00:00
@click.option("--path", required=True)
2019-08-27 08:31:22 +00: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 15:23:18 +00:00
@click.option("--etcd_url", required=True)
2019-09-07 08:10:28 +00: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 11:42:50 +00:00
os.chdir(path)
2019-08-30 01:23:45 +00:00
2019-08-28 15:42:57 +00:00
repo_name = "ucloud-api"
2019-09-07 08:10:28 +00:00
# Clone main repo
sp.check_output(['git', 'clone',
2019-09-08 15:58:33 +00:00
f'https://code.ungleich.ch/ungleich-public/{repo_name}.git'])
2019-09-07 08:10:28 +00: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"
)
f.writelines(content)
# Clone Common and Etcd Wrapper
clone_common()
clone_etcd_wrapper()
# Copy Etcd Wrapper inside ucloud_common as ucloud_common
# also needs etcd wrapper
2019-08-30 01:23:45 +00:00
shutil.copytree(
src=os.path.join(repo_name, "etcd3_wrapper"),
dst=os.path.join(repo_name, "ucloud_common", "etcd3_wrapper"),
2019-08-28 11:42:50 +00:00
)
2019-09-07 08:10:28 +00:00
# Create virtualenv with site-packages enabled and install all dependencies
sp.check_output(['pipenv','--site-packages', '--python', '3'], path=repo_name)
sp.check_output(['pipenv', 'install'], path=repo_name)