2019-07-17 14:58:39 +00:00
|
|
|
import click
|
|
|
|
import json
|
|
|
|
import requests
|
|
|
|
|
|
|
|
from decouple import config
|
2019-07-18 13:59:57 +00:00
|
|
|
from .helper import OTPCredentials
|
2019-07-17 14:58:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
@click.group()
|
|
|
|
def host():
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
@host.command("add")
|
|
|
|
@click.option("--name", required=True)
|
|
|
|
@click.option("--realm", required=True)
|
|
|
|
@click.option("--seed", required=True)
|
|
|
|
@click.option("--specs", required=True)
|
|
|
|
@click.option("--hostname", required=True)
|
|
|
|
def add_host(name, realm, seed, specs, hostname):
|
|
|
|
with open(specs, "r") as specs_f:
|
|
|
|
specs = json.loads(specs_f.read())
|
|
|
|
data = {
|
|
|
|
**OTPCredentials(name, realm, seed).get_json(),
|
|
|
|
"specs": specs,
|
|
|
|
"hostname": hostname,
|
|
|
|
}
|
|
|
|
r = requests.post(f"{config('UCLOUD_API_SERVER')}/host/create", json=data)
|
|
|
|
|
|
|
|
print(json.loads(r.content))
|