2016-07-01 07:34:58 +02:00
|
|
|
#!/usr/bin/env python
|
2015-11-01 17:11:06 +01:00
|
|
|
from __future__ import print_function
|
2015-08-17 06:37:14 +02:00
|
|
|
import os
|
2015-08-20 02:46:50 +02:00
|
|
|
import sys
|
2015-08-19 04:18:08 +02:00
|
|
|
import logging
|
|
|
|
import platform
|
2016-04-06 20:12:32 +02:00
|
|
|
import subprocess
|
2015-08-17 06:37:14 +02:00
|
|
|
|
2016-04-06 17:15:31 +02:00
|
|
|
os.environ["PYTHONUNBUFFERED"] = "y"
|
|
|
|
|
2016-07-02 22:15:55 +02:00
|
|
|
PY2 = sys.version_info[0] == 2
|
|
|
|
|
2016-06-27 23:50:38 +02:00
|
|
|
ZULIP_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
|
|
|
|
sys.path.append(ZULIP_PATH)
|
2016-07-12 16:55:20 +02:00
|
|
|
from zulip_tools import run, subprocess_text_output
|
2016-06-22 18:17:46 +02:00
|
|
|
from scripts.lib.setup_venv import setup_virtualenv, VENV_DEPENDENCIES
|
2015-08-17 06:37:14 +02:00
|
|
|
|
2015-08-19 04:18:08 +02:00
|
|
|
SUPPORTED_PLATFORMS = {
|
|
|
|
"Ubuntu": [
|
|
|
|
"trusty",
|
2016-04-04 23:22:14 +02:00
|
|
|
"xenial",
|
2015-08-19 04:18:08 +02:00
|
|
|
],
|
|
|
|
}
|
|
|
|
|
2016-05-31 14:58:58 +02:00
|
|
|
NPM_VERSION = '3.9.3'
|
2016-07-02 22:15:55 +02:00
|
|
|
PY2_VENV_PATH = "/srv/zulip-venv"
|
2016-04-24 18:31:09 +02:00
|
|
|
PY3_VENV_PATH = "/srv/zulip-py3-venv"
|
2016-06-14 10:33:23 +02:00
|
|
|
TRAVIS_NODE_PATH = os.path.join(os.environ['HOME'], 'node')
|
2016-07-09 09:08:41 +02:00
|
|
|
VAR_DIR_PATH = os.path.join(ZULIP_PATH, 'var')
|
|
|
|
LOG_DIR_PATH = os.path.join(VAR_DIR_PATH, 'log')
|
2016-07-16 16:13:17 +02:00
|
|
|
UPLOAD_DIR_PATH = os.path.join(VAR_DIR_PATH, 'uploads')
|
2016-07-09 19:01:36 +02:00
|
|
|
TEST_UPLOAD_DIR_PATH = os.path.join(VAR_DIR_PATH, 'test_uploads')
|
2016-07-13 10:49:26 +02:00
|
|
|
COVERAGE_DIR_PATH = os.path.join(VAR_DIR_PATH, 'coverage')
|
2016-07-16 16:44:41 +02:00
|
|
|
LINECOVERAGE_DIR_PATH = os.path.join(VAR_DIR_PATH, 'linecoverage-report')
|
2016-06-14 10:33:23 +02:00
|
|
|
|
2016-07-02 22:15:55 +02:00
|
|
|
if PY2:
|
|
|
|
VENV_PATH = PY2_VENV_PATH
|
|
|
|
else:
|
|
|
|
VENV_PATH = PY3_VENV_PATH
|
|
|
|
|
2016-07-19 17:32:32 +02:00
|
|
|
TRAVIS = "--travis" in sys.argv
|
|
|
|
PRODUCTION_TRAVIS = "--production-travis" in sys.argv
|
|
|
|
|
2016-04-06 19:09:16 +02:00
|
|
|
if not os.path.exists(os.path.join(ZULIP_PATH, ".git")):
|
|
|
|
print("Error: No Zulip git repository present!")
|
2015-11-01 17:11:06 +01:00
|
|
|
print("To setup the Zulip development environment, you should clone the code")
|
|
|
|
print("from GitHub, rather than using a Zulip production release tarball.")
|
2015-10-14 01:18:49 +02:00
|
|
|
sys.exit(1)
|
|
|
|
|
2016-04-06 19:27:42 +02:00
|
|
|
if platform.architecture()[0] == '64bit':
|
|
|
|
arch = 'amd64'
|
|
|
|
elif platform.architecture()[0] == '32bit':
|
|
|
|
arch = "i386"
|
|
|
|
else:
|
|
|
|
logging.critical("Only x86 is supported; ping zulip-devel@googlegroups.com if you want another architecture.")
|
|
|
|
sys.exit(1)
|
|
|
|
|
2016-04-06 20:12:32 +02:00
|
|
|
# Ideally we wouldn't need to install a dependency here, before we
|
|
|
|
# know the codename.
|
|
|
|
subprocess.check_call(["sudo", "apt-get", "install", "-y", "lsb-release"])
|
2016-07-12 16:55:20 +02:00
|
|
|
vendor = subprocess_text_output(["lsb_release", "-is"])
|
|
|
|
codename = subprocess_text_output(["lsb_release", "-cs"])
|
2016-04-06 19:27:42 +02:00
|
|
|
if not (vendor in SUPPORTED_PLATFORMS and codename in SUPPORTED_PLATFORMS[vendor]):
|
|
|
|
logging.critical("Unsupported platform: {} {}".format(vendor, codename))
|
|
|
|
sys.exit(1)
|
|
|
|
|
2016-04-06 19:30:16 +02:00
|
|
|
POSTGRES_VERSION_MAP = {
|
|
|
|
"trusty": "9.3",
|
2016-04-04 23:22:14 +02:00
|
|
|
"xenial": "9.5",
|
2016-04-06 19:30:16 +02:00
|
|
|
}
|
|
|
|
POSTGRES_VERSION = POSTGRES_VERSION_MAP[codename]
|
|
|
|
|
2016-04-04 23:22:14 +02:00
|
|
|
UBUNTU_COMMON_APT_DEPENDENCIES = [
|
|
|
|
"closure-compiler",
|
|
|
|
"memcached",
|
|
|
|
"rabbitmq-server",
|
|
|
|
"redis-server",
|
|
|
|
"hunspell-en-us",
|
|
|
|
"nodejs",
|
|
|
|
"nodejs-legacy",
|
|
|
|
"supervisor",
|
|
|
|
"git",
|
|
|
|
"npm",
|
|
|
|
"yui-compressor",
|
|
|
|
"wget",
|
|
|
|
"ca-certificates", # Explicit dependency in case e.g. wget is already installed
|
|
|
|
"puppet", # Used by lint-all
|
|
|
|
"gettext", # Used by makemessages i18n
|
|
|
|
"curl", # Used for fetching PhantomJS as wget occasionally fails on redirects
|
|
|
|
"netcat", # Used for flushing memcached
|
2016-06-22 18:17:46 +02:00
|
|
|
] + VENV_DEPENDENCIES
|
2016-04-04 23:22:14 +02:00
|
|
|
|
|
|
|
APT_DEPENDENCIES = {
|
|
|
|
"trusty": UBUNTU_COMMON_APT_DEPENDENCIES + [
|
|
|
|
"postgresql-9.3",
|
|
|
|
],
|
|
|
|
"xenial": UBUNTU_COMMON_APT_DEPENDENCIES + [
|
|
|
|
"postgresql-9.5",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
2015-08-17 06:37:14 +02:00
|
|
|
# tsearch-extras is an extension to postgres's built-in full-text search.
|
|
|
|
# TODO: use a real APT repository
|
2016-03-30 05:58:56 +02:00
|
|
|
TSEARCH_URL_PATTERN = "https://github.com/zulip/zulip-dist-tsearch-extras/raw/master/{}_{}_{}.deb?raw=1"
|
2016-04-06 19:30:16 +02:00
|
|
|
TSEARCH_PACKAGE_NAME = "postgresql-%s-tsearch-extras" % (POSTGRES_VERSION,)
|
2016-03-11 07:38:00 +01:00
|
|
|
TSEARCH_VERSION = "0.1.3"
|
2016-04-06 19:30:16 +02:00
|
|
|
TSEARCH_URL = TSEARCH_URL_PATTERN.format(TSEARCH_PACKAGE_NAME, TSEARCH_VERSION, arch)
|
|
|
|
TSEARCH_STOPWORDS_PATH = "/usr/share/postgresql/%s/tsearch_data/" % (POSTGRES_VERSION,)
|
2015-08-17 06:37:14 +02:00
|
|
|
REPO_STOPWORDS_PATH = os.path.join(
|
|
|
|
ZULIP_PATH,
|
|
|
|
"puppet",
|
|
|
|
"zulip",
|
|
|
|
"files",
|
|
|
|
"postgresql",
|
|
|
|
"zulip_english.stop",
|
|
|
|
)
|
|
|
|
|
2015-08-21 03:06:18 +02:00
|
|
|
LOUD = dict(_out=sys.stdout, _err=sys.stderr)
|
|
|
|
|
2016-06-02 11:54:05 +02:00
|
|
|
def setup_node_modules():
|
2016-06-15 21:11:24 +02:00
|
|
|
# type: () -> None
|
2016-07-12 16:55:20 +02:00
|
|
|
output = subprocess_text_output(['sha1sum', 'package.json'])
|
2016-06-02 11:54:05 +02:00
|
|
|
sha1sum = output.split()[0]
|
|
|
|
success_stamp = os.path.join('node_modules', '.npm-success-stamp', sha1sum)
|
|
|
|
if not os.path.exists(success_stamp):
|
|
|
|
print("Deleting cached version")
|
|
|
|
run(["rm", "-rf", "node_modules"])
|
|
|
|
print("Installing node modules")
|
|
|
|
run(["npm", "install"])
|
|
|
|
run(["mkdir", "-p", success_stamp])
|
|
|
|
else:
|
|
|
|
print("Using cached version of node_modules")
|
|
|
|
|
2016-06-14 10:33:23 +02:00
|
|
|
def install_npm():
|
2016-06-15 21:11:24 +02:00
|
|
|
# type: () -> None
|
2016-07-19 17:32:32 +02:00
|
|
|
if not TRAVIS:
|
2016-07-12 16:55:20 +02:00
|
|
|
if subprocess_text_output(['npm', '--version']) != NPM_VERSION:
|
2016-06-14 10:33:23 +02:00
|
|
|
run(["sudo", "npm", "install", "-g", "npm@{}".format(NPM_VERSION)])
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
run(['mkdir', '-p', TRAVIS_NODE_PATH])
|
|
|
|
|
|
|
|
npm_exe = os.path.join(TRAVIS_NODE_PATH, 'bin', 'npm')
|
2016-07-12 16:55:20 +02:00
|
|
|
travis_npm = subprocess_text_output(['which', 'npm'])
|
2016-06-14 10:33:23 +02:00
|
|
|
if os.path.exists(npm_exe):
|
|
|
|
run(['sudo', 'ln', '-sf', npm_exe, travis_npm])
|
|
|
|
|
2016-07-12 16:55:20 +02:00
|
|
|
version = subprocess_text_output(['npm', '--version'])
|
2016-06-14 10:33:23 +02:00
|
|
|
if os.path.exists(npm_exe) and version == NPM_VERSION:
|
|
|
|
print("Using cached npm")
|
|
|
|
return
|
|
|
|
|
|
|
|
run(["npm", "install", "-g", "--prefix", TRAVIS_NODE_PATH, "npm@{}".format(NPM_VERSION)])
|
|
|
|
run(['sudo', 'ln', '-sf', npm_exe, travis_npm])
|
|
|
|
|
|
|
|
|
2015-08-20 02:46:50 +02:00
|
|
|
def main():
|
2016-06-15 21:11:24 +02:00
|
|
|
# type: () -> int
|
2016-04-06 17:15:31 +02:00
|
|
|
run(["sudo", "apt-get", "update"])
|
2016-06-22 17:11:25 +02:00
|
|
|
run(["sudo", "apt-get", "-y", "install", "--no-install-recommends"] + APT_DEPENDENCIES[codename])
|
2015-08-17 06:37:14 +02:00
|
|
|
|
2016-05-31 14:58:58 +02:00
|
|
|
if subprocess.call(['dpkg', '-s', TSEARCH_PACKAGE_NAME]):
|
2016-07-12 16:55:20 +02:00
|
|
|
temp_deb_path = subprocess_text_output(["mktemp", "package_XXXXXX.deb", "--tmpdir"])
|
2016-05-31 14:58:58 +02:00
|
|
|
run(["wget", "-O", temp_deb_path, TSEARCH_URL])
|
|
|
|
run(["sudo", "dpkg", "--install", temp_deb_path])
|
2015-08-17 06:37:14 +02:00
|
|
|
|
2016-07-19 17:39:16 +02:00
|
|
|
if TRAVIS:
|
|
|
|
if PY2:
|
|
|
|
MYPY_REQS_FILE = os.path.join(ZULIP_PATH, "requirements", "mypy.txt")
|
|
|
|
setup_virtualenv(PY3_VENV_PATH, MYPY_REQS_FILE, virtualenv_args=['-p', 'python3'])
|
|
|
|
DEV_REQS_FILE = os.path.join(ZULIP_PATH, "requirements", "py2_dev.txt")
|
|
|
|
setup_virtualenv(PY2_VENV_PATH, DEV_REQS_FILE)
|
|
|
|
else:
|
|
|
|
DEV_REQS_FILE = os.path.join(ZULIP_PATH, "requirements", "py3_dev.txt")
|
|
|
|
setup_virtualenv(VENV_PATH, DEV_REQS_FILE, virtualenv_args=['-p', 'python3'])
|
|
|
|
else:
|
2016-07-02 22:15:55 +02:00
|
|
|
DEV_REQS_FILE = os.path.join(ZULIP_PATH, "requirements", "py2_dev.txt")
|
|
|
|
setup_virtualenv(PY2_VENV_PATH, DEV_REQS_FILE)
|
|
|
|
DEV_REQS_FILE = os.path.join(ZULIP_PATH, "requirements", "py3_dev.txt")
|
2016-07-19 17:39:16 +02:00
|
|
|
setup_virtualenv(PY3_VENV_PATH, DEV_REQS_FILE, virtualenv_args=['-p', 'python3'])
|
2015-08-17 06:37:14 +02:00
|
|
|
|
2016-05-03 02:55:35 +02:00
|
|
|
# Put Python2 virtualenv activation in our .bash_profile.
|
2015-08-20 02:46:50 +02:00
|
|
|
with open(os.path.expanduser('~/.bash_profile'), 'w+') as bash_profile:
|
|
|
|
bash_profile.writelines([
|
|
|
|
"source .bashrc\n",
|
|
|
|
"source %s\n" % (os.path.join(VENV_PATH, "bin", "activate"),),
|
|
|
|
])
|
2015-08-20 22:40:06 +02:00
|
|
|
|
2016-04-06 17:15:31 +02:00
|
|
|
run(["sudo", "cp", REPO_STOPWORDS_PATH, TSEARCH_STOPWORDS_PATH])
|
2015-08-20 22:40:06 +02:00
|
|
|
|
2016-03-22 12:24:25 +01:00
|
|
|
# npm install and management commands expect to be run from the root of the
|
|
|
|
# project.
|
2015-08-20 02:46:50 +02:00
|
|
|
os.chdir(ZULIP_PATH)
|
2015-08-20 22:40:06 +02:00
|
|
|
|
2016-07-09 09:08:41 +02:00
|
|
|
# create log directory `zulip/var/log`
|
|
|
|
run(["mkdir", "-p", LOG_DIR_PATH])
|
2016-07-16 16:13:17 +02:00
|
|
|
# create upload directory `var/uploads`
|
|
|
|
run(["mkdir", "-p", UPLOAD_DIR_PATH])
|
2016-07-09 19:01:36 +02:00
|
|
|
# create test upload directory `var/test_upload`
|
|
|
|
run(["mkdir", "-p", TEST_UPLOAD_DIR_PATH])
|
2016-07-13 10:49:26 +02:00
|
|
|
# create coverage directory`var/coverage`
|
|
|
|
run(["mkdir", "-p", COVERAGE_DIR_PATH])
|
2016-07-16 16:44:41 +02:00
|
|
|
# create linecoverage directory`var/linecoverage-report`
|
|
|
|
run(["mkdir", "-p", LINECOVERAGE_DIR_PATH])
|
2016-07-09 09:08:41 +02:00
|
|
|
|
2016-07-19 17:32:32 +02:00
|
|
|
if TRAVIS:
|
2016-05-26 13:21:55 +02:00
|
|
|
run(["tools/setup/install-phantomjs", "--travis"])
|
2016-05-03 23:35:32 +02:00
|
|
|
else:
|
2016-05-26 13:21:55 +02:00
|
|
|
run(["tools/setup/install-phantomjs"])
|
2016-05-26 12:28:45 +02:00
|
|
|
run(["tools/setup/download-zxcvbn"])
|
2016-05-26 13:34:48 +02:00
|
|
|
run(["tools/setup/emoji_dump/build_emoji"])
|
2016-04-06 17:15:31 +02:00
|
|
|
run(["scripts/setup/generate_secrets.py", "-d"])
|
2016-07-19 17:32:32 +02:00
|
|
|
if TRAVIS and not PRODUCTION_TRAVIS:
|
2016-04-06 17:15:31 +02:00
|
|
|
run(["sudo", "service", "rabbitmq-server", "restart"])
|
|
|
|
run(["sudo", "service", "redis-server", "restart"])
|
|
|
|
run(["sudo", "service", "memcached", "restart"])
|
2015-12-12 14:17:30 +01:00
|
|
|
elif "--docker" in sys.argv:
|
2016-04-06 17:15:31 +02:00
|
|
|
run(["sudo", "service", "rabbitmq-server", "restart"])
|
|
|
|
run(["sudo", "pg_dropcluster", "--stop", POSTGRES_VERSION, "main"])
|
|
|
|
run(["sudo", "pg_createcluster", "-e", "utf8", "--start", POSTGRES_VERSION, "main"])
|
|
|
|
run(["sudo", "service", "redis-server", "restart"])
|
|
|
|
run(["sudo", "service", "memcached", "restart"])
|
2016-07-19 17:32:32 +02:00
|
|
|
if not PRODUCTION_TRAVIS:
|
2016-06-22 17:45:17 +02:00
|
|
|
# These won't be used anyway
|
|
|
|
run(["scripts/setup/configure-rabbitmq"])
|
|
|
|
run(["tools/setup/postgres-init-dev-db"])
|
|
|
|
run(["tools/do-destroy-rebuild-database"])
|
|
|
|
run(["tools/setup/postgres-init-test-db"])
|
|
|
|
run(["tools/do-destroy-rebuild-test-database"])
|
|
|
|
run(["python", "./manage.py", "compilemessages"])
|
2016-06-14 10:33:23 +02:00
|
|
|
# Install the pinned version of npm.
|
|
|
|
install_npm()
|
2016-03-30 06:56:19 +02:00
|
|
|
# Run npm install last because it can be flaky, and that way one
|
|
|
|
# only needs to rerun `npm install` to fix the installation.
|
2016-06-02 11:54:05 +02:00
|
|
|
setup_node_modules()
|
2016-01-26 02:59:30 +01:00
|
|
|
return 0
|
2015-08-17 06:37:14 +02:00
|
|
|
|
2015-08-20 02:46:50 +02:00
|
|
|
if __name__ == "__main__":
|
|
|
|
sys.exit(main())
|