This repository was archived by the owner on Jun 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.py
149 lines (114 loc) · 4.41 KB
/
api.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import os
from fabric.api import *
from fabric.colors import red
from envs import ENVS
import utils
@task
def full_deploy(version='HEAD'):
"Upload the release, install dependencies, and run configuration steps"
upload_release(version)
install_deps()
deploy()
@task
def upload_release(version='HEAD'):
utils.upload_release('api', version)
utils.symlink_current_release('api')
@task
def install_deps():
make_virtual_env()
install_requirements()
@task
def make_virtual_env():
with cd(env.project_path):
with cd('api'):
run('virtualenv -p {python} --no-site-packages ./venv/'.format(
**env))
@task
def deploy():
"""
Deploy the latest version of the API.
Download the newest version of editorsnotes, install requirements in the
virtualenv, upload the virtual host, and restart the webserver.
"""
require('hosts', 'project_path', provided_by=ENVS)
upload_local_settings()
install_wsgi()
migrate()
collect_static()
@task
def test():
"Run the test suite remotely."
require('hosts', 'project_path', provided_by=ENVS)
with cd('{project_path}/api/releases/current'.format(**env)):
run('../../venv/bin/python manage.py test')
@task
def migrate():
"Update the database for the current release"
require('hosts', 'project_path', provided_by=ENVS)
with cd('{project_path}/api/releases/current'.format(**env)):
run('../../venv/bin/python manage.py migrate --noinput')
def install_wsgi():
"Install the wsgi file for the current release"
put('django.wsgi', '{project_path}/api/releases/current/wsgi.py'.format(
**env))
def upload_local_settings():
"Upload the appropriate local settings file."
require('host', provided_by=ENVS)
settings_file = 'settings/settings-{host}.py'.format(**env)
if not os.path.exists(settings_file):
abort(red('Put the settings for {} at {}'.format(
env.host, settings_file)))
put(settings_file,
os.path.join(env.project_path, 'api', 'releases', 'current',
env.project_name, 'settings_local.py'))
def get_deploy_info(version):
with lcd(os.getenv('EDITORSNOTES_GIT')):
release = local('git rev-parse {}'.format(version), capture=True)
current_tag = local('git describe --tags --exact-match {} '
'2> /dev/null || true'.format(release),
capture=True)
if current_tag:
release = current_tag
github_repo = local(
'git remote --verbose | '
'grep -o "[email protected].* (push)" | '
'head -n 1 | '
"sed -r -e 's/[email protected]:([^ ]+)\.git.*/\\1/'",
capture=True)
url = github_repo and 'http://github.com/{}/tree/{}'.format(github_repo,
release)
return release, url
def upload_deploy_info(version):
"Upload information about the version and time of deployment."
require('release', provided_by=ENVS)
version_file = os.path.join(env.TMP_DIR, 'version.txt')
version_url_file = os.path.join(env.TMP_DIR, 'version-url.txt')
time_file = os.path.join(env.TMP_DIR, 'time-deployed.txt')
with lcd(os.getenv('EDITORSNOTES_GIT')), open(version_file, 'wb') as f:
call(['git', 'rev-parse', version], stdout=f)
release, url = get_deploy_info(version)
with open(version_file, 'wb') as f:
f.write(release)
with open(version_url_file, 'wb') as f:
f.write(url)
with open(time_file, 'wb') as f:
f.write(datetime.now().strftime('%Y-%m-%d %H:%M'))
dest = '{project_path}/api/releases/{release}'.format(**env)
put(version_file, dest)
put(version_url_file, dest)
put(time_file, dest)
local('rm {}'.format(version_file))
local('rm {}'.format(version_url_file))
local('rm {}'.format(time_file))
def install_requirements():
"Install the required packages from the requirements file using pip"
require('release', provided_by=ENVS)
with cd('{project_path}/api'.format(**env)):
run('./venv/bin/pip install -r '
'./releases/current/requirements.txt'.format(**env))
@task
def collect_static():
"Collect static files"
require('hosts', 'project_path', provided_by=ENVS)
with cd('{project_path}/api/releases/current'.format(**env)):
run('../../venv/bin/python manage.py collectstatic --noinput')