-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathfabfile.py
235 lines (178 loc) · 6.07 KB
/
fabfile.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
"""
This fab file packages, deploys, and upgrades REDCap. The fab file uses a
settings file to define the parameters of each deployed instance/environment.
Usage:
fab package<:redcapM.N.O.zip>
fab <instance_name> deploy<:redcap-M.N.O.tgz>
fab <instance_name> upgrade<:redcap-M.N.O.tgz>
fab instance:<instance_name> upgrade<:redcap-M.N.O.tgz>
Instances
Each environment is a separate REDCap instance. Each instance can be deployed
or upgraded. The valid instances are:
vagrant - a local development instance
stage - a staging test instance
prod - the production instance
Each instance requires a same-named file at the local path settings/<name>.ini
The *instance* function can be used to use an arbitrary instance by providing
the instance name as a parameter to the instance function:
fab instance:vagrant deploy:redcap-6.18.1.tgz
fab instance:stage2 deploy:redcap-7.1.0.tgz
Deploying
When (re)deploying the instance named 'vagrant', be aware that deploy will
drop the instance database.
Upgrading
Upgrade packages must be created using one of Vanderbilt's 'upgrade' zip files
or database credentials will not be preserved.
"""
from fabric.api import *
from fabric.utils import abort
try:
import configparser
except:
from six.moves import configparser
import string, random, os
import server_setup
import package
import deploy
import upgrade
import utility
import utility_redcap
import plugins
import module
@task(alias='backup')
def backup_database(options=""):
"""
Backup a mysql database from the remote host with mysqldump options in *options*.
The backup file will be time stamped with a name like 'redcap-<instance_name>-20170126T1620.sql.gz'
The latest backup file will be linked to name 'redcap-<instance_name>-latest.sql.gz'
"""
utility.write_remote_my_cnf()
now = utility.timestamp()
with settings(user=env.deploy_user):
run("mysqldump --no-tablespaces --skip-lock-tables %s -u %s -h %s %s | gzip > redcap-%s-%s.sql.gz" % \
(options, env.database_user, env.database_host, env.database_name, env.instance_name, now))
run("ln -sf redcap-%s-%s.sql.gz redcap-%s-latest.sql.gz" % (env.instance_name, now, env.instance_name))
utility.delete_remote_my_cnf()
@task
def delete_all_tables(confirm=""):
"""
Delete all tables for the database specified in the instance. You must confirm this command.
"""
utility.delete_all_tables(confirm)
@task
def apply_sql_to_db(sql_file=""):
"""
Copy a local SQL file to the remote host and run it against mysql
"""
utility.apply_local_sql_to_db(sql_file)
@task
def offline():
"""
Take REDCap offline
"""
upgrade.offline()
@task
def online():
"""
Put REDCap back online
"""
upgrade.online()
@task
def test_plugin(plugin_path=""):
"""
Symbolically link a host file that contains a redcap plugin into the ./redcap/plugins folder
:param plugin_path: path to plugin folder relative to VagrantFile
:return:
"""
plugins.test(plugin_path)
@task
def test(warn_only=False):
"""
Run all tests against a running REDCap instance
"""
return(utility_redcap.test(warn_only))
@task
def test_module(module_name):
"""
Adds a local module located under "modules/" directory to the list of available modules on REDCap.
"""
with settings(user=env.deploy_user):
dest = '/'.join([env.live_project_full_path, "modules/%s" % module_name])
if not os.path.exists(dest):
src = "/vagrant/modules/%s" % module_name
run("ln -s %s %s" % (src, dest))
def define_default_env(settings_file_path="settings/defaults.ini"):
"""
This function sets up some global variables
"""
# first, copy the secrets file into the deploy directory
if os.path.exists(settings_file_path):
config.read(settings_file_path)
else:
print(("The secrets file path cannot be found. It is set to: %s" % settings_file_path))
abort("Secrets File not set")
section="DEFAULT"
for (name,value) in config.items(section):
env[name] = value
def define_env(settings_file_path=""):
"""
This function sets up some global variables
"""
# Set defaults
env.deploy_redcap_cron = False
# first, copy the secrets file into the deploy directory
if os.path.exists(settings_file_path):
config.read(settings_file_path)
else:
print(("The secrets file path cannot be found. It is set to: %s" % settings_file_path))
abort("Secrets File not set")
utility.get_config('deploy_user', settings_file_path)
section="instance"
for (name,value) in config.items(section):
env[name] = value
# Set variables that do not have corresponding values in vagrant.ini file
time = utility.timestamp()
env.remote_project_name = '%s-%s' % (env.project_path,time)
env.live_project_full_path = env.live_pre_path + "/" + env.project_path
env.backup_project_full_path = env.backup_pre_path + "/" + env.project_path
env.upload_project_full_path = env.backup_pre_path
env.hosts = [env.host]
env.port = env.host_ssh_port
# Turn deploy_redcap_cron into a boolean
env.deploy_redcap_cron = utility.is_affirmative(env.deploy_redcap_cron)
@task(alias='dev')
def vagrant():
"""
Set up deployment for vagrant
"""
instance('vagrant')
@task
def stage():
"""
Set up deployment for staging server
"""
instance('stage')
@task
def prod():
"""
Set up deployment for production server
"""
instance('prod')
@task
def instance(name=""):
"""
Set up deployment for vagrant/stage/prod server
"""
if name == "":
abort("Please provide an instance name")
settings_file_path = 'settings/%s.ini' % name
if name == 'vagrant':
env.vagrant_instance = True
else:
env.vagrant_instance = False
define_env(settings_file_path)
config = configparser.ConfigParser()
# path to where app is looking for settings.ini
default_settings_file_path = 'settings/defaults.ini'
# load default settings
define_default_env(default_settings_file_path)