2017-10-29 02:02:58 +01:00
|
|
|
# Creates a Droplet on Digital Ocean for remote Zulip development.
|
|
|
|
# Particularly useful for sprints/hackathons, interns, and other
|
|
|
|
# situation where one wants to quickly onboard new contributors.
|
|
|
|
#
|
|
|
|
# This script takes one argument: the name of the GitHub user for whom you want
|
|
|
|
# to create a Zulip developer environment. Requires Python 3.
|
|
|
|
#
|
|
|
|
# Requires python-digitalocean library:
|
|
|
|
# https://github.com/koalalorenzo/python-digitalocean
|
|
|
|
#
|
|
|
|
# Also requires Digital Ocean team membership for Zulip and api token:
|
|
|
|
# https://cloud.digitalocean.com/settings/api/tokens
|
|
|
|
#
|
|
|
|
# Copy conf.ini-template to conf.ini and populate with your api token.
|
|
|
|
#
|
|
|
|
# usage: python3 create.py <username>
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import configparser
|
|
|
|
import urllib.error
|
|
|
|
import urllib.request
|
|
|
|
import json
|
|
|
|
import digitalocean
|
|
|
|
import time
|
|
|
|
import argparse
|
|
|
|
import os
|
|
|
|
|
|
|
|
from typing import Any, Dict, List
|
|
|
|
|
|
|
|
# initiation argument parser
|
|
|
|
parser = argparse.ArgumentParser(description='Create a Zulip devopment VM Digital Ocean droplet.')
|
|
|
|
parser.add_argument("username", help="Github username for whom you want to create a Zulip dev droplet")
|
|
|
|
parser.add_argument('--tags', nargs='+', default=[])
|
2017-11-23 16:29:08 +01:00
|
|
|
parser.add_argument('-f', '--recreate', dest='recreate', action="store_true", default=False)
|
2017-10-29 02:02:58 +01:00
|
|
|
|
|
|
|
def get_config():
|
|
|
|
# type: () -> configparser.ConfigParser
|
|
|
|
config = configparser.ConfigParser()
|
|
|
|
config.read(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'conf.ini'))
|
|
|
|
return config
|
|
|
|
|
|
|
|
def user_exists(username):
|
|
|
|
# type: (str) -> bool
|
2020-04-09 21:51:58 +02:00
|
|
|
print("Checking to see if GitHub user {} exists...".format(username))
|
|
|
|
user_api_url = "https://api.github.com/users/{}".format(username)
|
2017-10-29 02:02:58 +01:00
|
|
|
try:
|
|
|
|
response = urllib.request.urlopen(user_api_url)
|
2020-03-20 02:12:02 +01:00
|
|
|
json.load(response)
|
2017-10-29 02:02:58 +01:00
|
|
|
print("...user exists!")
|
|
|
|
return True
|
|
|
|
except urllib.error.HTTPError as err:
|
|
|
|
print(err)
|
2020-04-09 21:51:58 +02:00
|
|
|
print("Does the github user {} exist?".format(username))
|
2017-10-29 02:02:58 +01:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
def get_keys(username):
|
|
|
|
# type: (str) -> List[Dict[str, Any]]
|
|
|
|
print("Checking to see that GitHub user has available public keys...")
|
2020-04-09 21:51:58 +02:00
|
|
|
apiurl_keys = "https://api.github.com/users/{}/keys".format(username)
|
2017-10-29 02:02:58 +01:00
|
|
|
try:
|
|
|
|
response = urllib.request.urlopen(apiurl_keys)
|
2020-03-20 02:12:02 +01:00
|
|
|
userkeys = json.load(response)
|
2017-10-29 02:02:58 +01:00
|
|
|
if not userkeys:
|
2020-04-09 21:51:58 +02:00
|
|
|
print("No keys found. Has user {} added ssh keys to their github account?".format(username))
|
2017-10-29 02:02:58 +01:00
|
|
|
sys.exit(1)
|
|
|
|
print("...public keys found!")
|
|
|
|
return userkeys
|
|
|
|
except urllib.error.HTTPError as err:
|
|
|
|
print(err)
|
2020-04-09 21:51:58 +02:00
|
|
|
print("Has user {} added ssh keys to their github account?".format(username))
|
2017-10-29 02:02:58 +01:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
def fork_exists(username):
|
|
|
|
# type: (str) -> bool
|
|
|
|
print("Checking to see GitHub user has forked zulip/zulip...")
|
2020-04-09 21:51:58 +02:00
|
|
|
apiurl_fork = "https://api.github.com/repos/{}/zulip".format(username)
|
2017-10-29 02:02:58 +01:00
|
|
|
try:
|
|
|
|
response = urllib.request.urlopen(apiurl_fork)
|
2020-03-20 02:12:02 +01:00
|
|
|
json.load(response)
|
2017-10-29 02:02:58 +01:00
|
|
|
print("...fork found!")
|
|
|
|
return True
|
|
|
|
except urllib.error.HTTPError as err:
|
|
|
|
print(err)
|
2020-04-09 21:51:58 +02:00
|
|
|
print("Has user {} forked zulip/zulip?".format(username))
|
2017-10-29 02:02:58 +01:00
|
|
|
sys.exit(1)
|
|
|
|
|
2017-11-23 16:29:08 +01:00
|
|
|
def exit_if_droplet_exists(my_token: str, username: str, recreate: bool) -> None:
|
2020-04-09 21:51:58 +02:00
|
|
|
print("Checking to see if droplet for {} already exists...".format(username))
|
2017-10-29 02:02:58 +01:00
|
|
|
manager = digitalocean.Manager(token=my_token)
|
|
|
|
my_droplets = manager.get_all_droplets()
|
|
|
|
for droplet in my_droplets:
|
2020-04-09 21:51:58 +02:00
|
|
|
if droplet.name == "{}.zulipdev.org".format(username):
|
2017-11-23 16:29:08 +01:00
|
|
|
if not recreate:
|
2020-04-09 21:51:58 +02:00
|
|
|
print("Droplet for user {} already exists. Pass --recreate if you "
|
2017-11-23 16:29:08 +01:00
|
|
|
"need to recreate the droplet.".format(username))
|
|
|
|
sys.exit(1)
|
|
|
|
else:
|
2020-04-09 21:51:58 +02:00
|
|
|
print("Deleting existing droplet for {}.".format(username))
|
2017-11-23 16:29:08 +01:00
|
|
|
droplet.destroy()
|
|
|
|
return
|
2017-10-29 02:02:58 +01:00
|
|
|
print("...No droplet found...proceeding.")
|
|
|
|
|
|
|
|
def set_user_data(username, userkeys):
|
|
|
|
# type: (str, List[Dict[str, Any]]) -> str
|
|
|
|
print("Setting cloud-config data, populated with GitHub user's public keys...")
|
|
|
|
ssh_authorized_keys = ""
|
|
|
|
|
|
|
|
# spaces here are important here - these need to be properly indented under
|
|
|
|
# ssh_authorized_keys:
|
|
|
|
for key in userkeys:
|
2020-04-09 21:51:58 +02:00
|
|
|
ssh_authorized_keys += "\n - {}".format(key['key'])
|
2017-10-29 02:02:58 +01:00
|
|
|
# print(ssh_authorized_keys)
|
|
|
|
|
2018-05-07 16:25:49 +02:00
|
|
|
setup_repo = """\
|
|
|
|
cd /home/zulipdev/{1} && git remote add origin https://github.com/{0}/{1}.git && git fetch origin"""
|
|
|
|
|
|
|
|
server_repo_setup = setup_repo.format(username, "zulip")
|
|
|
|
python_api_repo_setup = setup_repo.format(username, "python-zulip-api")
|
|
|
|
|
2017-10-29 02:02:58 +01:00
|
|
|
cloudconf = """
|
|
|
|
#cloud-config
|
|
|
|
users:
|
|
|
|
- name: zulipdev
|
2020-04-09 21:51:58 +02:00
|
|
|
ssh_authorized_keys:{}
|
2017-10-29 02:02:58 +01:00
|
|
|
runcmd:
|
2020-04-09 21:51:58 +02:00
|
|
|
- su -c '{}' zulipdev
|
2018-05-07 16:25:49 +02:00
|
|
|
- su -c 'git clean -f' zulipdev
|
2020-04-09 21:51:58 +02:00
|
|
|
- su -c '{}' zulipdev
|
2017-11-17 00:45:42 +01:00
|
|
|
- su -c 'git clean -f' zulipdev
|
2017-10-29 02:02:58 +01:00
|
|
|
- su -c 'git config --global core.editor nano' zulipdev
|
2017-11-17 00:04:16 +01:00
|
|
|
- su -c 'git config --global pull.rebase true' zulipdev
|
2017-10-29 02:02:58 +01:00
|
|
|
power_state:
|
|
|
|
mode: reboot
|
|
|
|
condition: True
|
2018-05-07 16:25:49 +02:00
|
|
|
""".format(ssh_authorized_keys, server_repo_setup, python_api_repo_setup)
|
2017-10-29 02:02:58 +01:00
|
|
|
|
|
|
|
print("...returning cloud-config data.")
|
|
|
|
return cloudconf
|
|
|
|
|
|
|
|
def create_droplet(my_token, template_id, username, tags, user_data):
|
|
|
|
# type: (str, str, str, List[str], str) -> str
|
|
|
|
droplet = digitalocean.Droplet(
|
|
|
|
token=my_token,
|
2020-04-09 21:51:58 +02:00
|
|
|
name='{}.zulipdev.org'.format(username),
|
2018-05-07 16:08:31 +02:00
|
|
|
region='nyc3',
|
2017-10-29 02:02:58 +01:00
|
|
|
image=template_id,
|
|
|
|
size_slug='2gb',
|
|
|
|
user_data=user_data,
|
|
|
|
tags=tags,
|
|
|
|
backups=False)
|
|
|
|
|
|
|
|
print("Initiating droplet creation...")
|
|
|
|
droplet.create()
|
|
|
|
|
|
|
|
incomplete = True
|
|
|
|
while incomplete:
|
|
|
|
actions = droplet.get_actions()
|
|
|
|
for action in actions:
|
|
|
|
action.load()
|
2020-04-09 21:51:58 +02:00
|
|
|
print("...[{}]: {}".format(action.type, action.status))
|
2017-10-29 02:02:58 +01:00
|
|
|
if action.type == 'create' and action.status == 'completed':
|
|
|
|
incomplete = False
|
|
|
|
break
|
|
|
|
if incomplete:
|
|
|
|
time.sleep(15)
|
|
|
|
print("...droplet created!")
|
|
|
|
droplet.load()
|
2020-04-09 21:51:58 +02:00
|
|
|
print("...ip address for new droplet is: {}.".format(droplet.ip_address))
|
2017-10-29 02:02:58 +01:00
|
|
|
return droplet.ip_address
|
|
|
|
|
2017-11-11 00:47:10 +01:00
|
|
|
def delete_existing_records(records: List[digitalocean.Record], record_name: str) -> None:
|
2017-11-05 21:23:50 +01:00
|
|
|
count = 0
|
|
|
|
for record in records:
|
2017-11-11 00:47:10 +01:00
|
|
|
if record.name == record_name and record.domain == 'zulipdev.org' and record.type == 'A':
|
2017-11-05 21:23:50 +01:00
|
|
|
record.destroy()
|
|
|
|
count = count + 1
|
|
|
|
if count:
|
2020-04-09 21:51:58 +02:00
|
|
|
print("Deleted {} existing A records for {}.zulipdev.org.".format(count, record_name))
|
2017-11-11 00:47:10 +01:00
|
|
|
|
2017-11-11 17:50:20 +01:00
|
|
|
def create_dns_record(my_token, username, ip_address):
|
2017-11-11 00:47:10 +01:00
|
|
|
# type: (str, str, str) -> None
|
|
|
|
domain = digitalocean.Domain(token=my_token, name='zulipdev.org')
|
|
|
|
domain.load()
|
|
|
|
records = domain.get_records()
|
|
|
|
|
|
|
|
delete_existing_records(records, username)
|
|
|
|
wildcard_name = "*." + username
|
|
|
|
delete_existing_records(records, wildcard_name)
|
2017-11-05 21:23:50 +01:00
|
|
|
|
2020-04-09 21:51:58 +02:00
|
|
|
print("Creating new A record for {}.zulipdev.org that points to {}.".format(username, ip_address))
|
2017-10-29 02:02:58 +01:00
|
|
|
domain.create_new_domain_record(type='A', name=username, data=ip_address)
|
2020-04-09 21:51:58 +02:00
|
|
|
print("Creating new A record for *.{}.zulipdev.org that points to {}.".format(username, ip_address))
|
2017-11-11 00:47:10 +01:00
|
|
|
domain.create_new_domain_record(type='A', name=wildcard_name, data=ip_address)
|
2017-10-29 02:02:58 +01:00
|
|
|
|
|
|
|
def print_completion(username):
|
|
|
|
# type: (str) -> None
|
|
|
|
print("""
|
|
|
|
COMPLETE! Droplet for GitHub user {0} is available at {0}.zulipdev.org.
|
|
|
|
|
|
|
|
Instructions for use are below. (copy and paste to the user)
|
|
|
|
|
|
|
|
------
|
|
|
|
Your remote Zulip dev server has been created!
|
|
|
|
|
|
|
|
- Connect to your server by running
|
|
|
|
`ssh zulipdev@{0}.zulipdev.org` on the command line
|
|
|
|
(Terminal for macOS and Linux, Bash for Git on Windows).
|
|
|
|
- There is no password; your account is configured to use your ssh keys.
|
2019-01-10 01:30:44 +01:00
|
|
|
- Once you log in, you should see `(zulip-py3-venv) ~$`.
|
2017-10-29 02:02:58 +01:00
|
|
|
- To start the dev server, `cd zulip` and then run `./tools/run-dev.py`.
|
2017-11-08 03:41:48 +01:00
|
|
|
- While the dev server is running, you can see the Zulip server in your browser at
|
|
|
|
http://{0}.zulipdev.org:9991.
|
2017-10-29 02:02:58 +01:00
|
|
|
""".format(username))
|
|
|
|
|
2017-11-16 19:54:24 +01:00
|
|
|
print("See [Developing remotely](https://zulip.readthedocs.io/en/latest/development/remote.html) "
|
2017-10-29 02:02:58 +01:00
|
|
|
"for tips on using the remote dev instance and "
|
2017-11-24 01:24:00 +01:00
|
|
|
"[Git & GitHub Guide](https://zulip.readthedocs.io/en/latest/git/index.html) "
|
2017-11-16 19:54:24 +01:00
|
|
|
"to learn how to use Git with Zulip.\n")
|
2017-10-29 02:02:58 +01:00
|
|
|
print("Note that this droplet will automatically be deleted after a month of inactivity. "
|
|
|
|
"If you are leaving Zulip for more than a few weeks, we recommend pushing all of your "
|
|
|
|
"active branches to GitHub.")
|
|
|
|
print("------")
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
# define id of image to create new droplets from
|
|
|
|
# You can get this with something like the following. You may need to try other pages.
|
|
|
|
# Broken in two to satisfy linter (line too long)
|
|
|
|
# curl -X GET -H "Content-Type: application/json" -u <API_KEY>: "https://api.digitaloc
|
|
|
|
# ean.com/v2/images?page=5" | grep --color=always base.zulipdev.org
|
2019-06-07 16:39:09 +02:00
|
|
|
template_id = "48106286"
|
2017-10-29 02:02:58 +01:00
|
|
|
|
|
|
|
# get command line arguments
|
|
|
|
args = parser.parse_args()
|
2020-04-09 21:51:58 +02:00
|
|
|
print("Creating Zulip developer environment for GitHub user {}...".format(args.username))
|
2017-10-29 02:02:58 +01:00
|
|
|
|
|
|
|
# get config details
|
|
|
|
config = get_config()
|
|
|
|
|
|
|
|
# see if droplet already exists for this user
|
|
|
|
user_exists(username=args.username)
|
|
|
|
|
|
|
|
# grab user's public keys
|
|
|
|
public_keys = get_keys(username=args.username)
|
|
|
|
|
|
|
|
# now make sure the user has forked zulip/zulip
|
|
|
|
fork_exists(username=args.username)
|
|
|
|
|
|
|
|
api_token = config['digitalocean']['api_token']
|
|
|
|
# does the droplet already exist?
|
2017-11-23 16:29:08 +01:00
|
|
|
exit_if_droplet_exists(my_token=api_token, username=args.username, recreate=args.recreate)
|
2017-10-29 02:02:58 +01:00
|
|
|
|
|
|
|
# set user_data
|
|
|
|
user_data = set_user_data(username=args.username, userkeys=public_keys)
|
|
|
|
|
|
|
|
# create droplet
|
|
|
|
ip_address = create_droplet(my_token=api_token,
|
|
|
|
template_id=template_id,
|
|
|
|
username=args.username,
|
|
|
|
tags=args.tags,
|
|
|
|
user_data=user_data)
|
|
|
|
|
|
|
|
# create dns entry
|
|
|
|
create_dns_record(my_token=api_token, username=args.username, ip_address=ip_address)
|
|
|
|
|
|
|
|
# print completion message
|
|
|
|
print_completion(username=args.username)
|
|
|
|
|
|
|
|
sys.exit(1)
|