forked from dingproject/ding-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fabfile.py
135 lines (112 loc) · 4.76 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
"""
Ding deploy script.
It uses the Fabric deploying tool. Documentation for Fabric can be found here:
http://docs.fabfile.org/
"""
from __future__ import with_statement
import logging
import os.path
import time
from fabric.api import cd, env, prompt, require, run, abort
from fabric.state import _get_system_username
# Hostname for each role.
env.roledefs = {
'dev': ['[email protected]'],
'stg': ['[email protected]'],
'prod': ['[email protected]'],
'metropol:stg': ['[email protected]'],
'metropol:prod': ['[email protected]'],
'aabenraa:stg': ['[email protected]'],
'aabenraa:prod': ['[email protected]'],
'kolding:dev': ['[email protected]'],
'kolding:stg': ['[email protected]'],
'kolding:prod': ['[email protected]'],
'billund:stg': ['[email protected]'],
'billund:prod': ['[email protected]'],
'roedovre:dev': ['[email protected]'],
'roedovre:stg': ['[email protected]'],
'roedovre:prod': ['[email protected]'],
'helsbib:stg': ['[email protected]'],
'helsbib:prod': ['[email protected]'],
'albertslund:dev': ['[email protected]'],
'albertslund:stg': ['[email protected]'],
'albertslund:prod': ['[email protected]'],
}
env.webroot_patterns = {
'default': '/data/www/%(project)s.%(role)s',
'hiri.dbc.dk': '/data/www/%(project)s.%(role)s.ting.dk',
'halla.dbc.dk': '/data/www/%(project)s.%(role)s.ting.dk',
}
# Simple logging for actions. Use the WARNING level to tune out paramiko
# noise which is logged as "INFO".
LOG_FILENAME = '/tmp/deploy.log'
logging.basicConfig(filename=LOG_FILENAME,level=logging.WARNING, format="%(asctime)s - %(levelname)s - %(message)s")
def _env_settings(project=None):
""" Set global environment settings base on CLI args. """
# Get the first role set, defaulting to dev.
env.role = env.get('roles', ['dev'])[0]
# If project was not set, extract it from the role.
if not project:
try:
project, env.role = env.role.split(':')
except ValueError:
abort('No project in role and no project specified.')
env.project = project
env.build_path = os.path.join('/home', env.user, 'build')
if env.host in env.webroot_patterns:
env.webroot_pattern = env.webroot_patterns[env.host]
else:
env.webroot_pattern = env.webroot_patterns['default']
env.webroot = env.webroot_pattern % {'project': project, 'role': env.role}
def version(project=None):
'Get the currently deployed version'
_env_settings(project)
require('user', 'hosts', 'webroot',
used_for='These variables are used for finding the target deployment environment.',
)
with cd(os.path.join(env.build_path, env.project, 'build')):
run('git show | head -10')
def reload_apache():
'Reload Apache on the remote machine'
run('sudo /usr/sbin/apache2ctl graceful')
def sync_from_prod(project=None):
"""
Sync the staging environment from production.
Copies the production database and files to the staging site
"""
_env_settings(project)
if env.role != 'stg':
abort('sync_from_prod is not supported for non-stg roles.')
run('mysqldump drupal6_ding_%s_prod | mysql drupal6_ding_%s_stg' % (env.project, env.project))
prodPath = env.webroot_pattern % {'project': project, 'role': 'prod'}
stgPath = env.webroot_pattern % {'project': project, 'role': 'stg'}
run('sudo rsync -avmCF --delete %(prod)s %(stg)s' % {
'prod': os.path.join(prodPath, 'files'),
'stg': os.path.join(stgPath, 'files')
})
def deploy(project=None, commit=None):
""" Deploy a specific version in the specified environment. """
version(project)
# Prompt for the commit ID if not given as a parameter.
if not commit:
commit = prompt('Enter commit to deploy (40 character SHA1)',
validate=r'^[0-9a-fA-F]{6,40}$')
require('user', 'hosts', 'webroot', 'role',
used_for='These variables are used for finding the target deployment environment.',
)
make_path = time.strftime('ding-%Y%m%d%H%M')[:-1]
profile_path = os.path.join(env.build_path, env.project)
abs_make_path = os.path.join(profile_path, 'build', make_path)
with cd(profile_path):
# Update git checkout.
run('git fetch')
run('git checkout %s' % commit)
# Run the build process via drush make.
logging.info('Starting build in %s' % abs_make_path)
run('./ding_build.py -lL %s -m profile %s' % (env.role, make_path))
run('curl -s http://localhost/apc_clear_cache.php')
logging.warning('%(site)s | %(user)s | %(commit)s' % {
'site': env.webroot.split('/')[-1],
'user': _get_system_username(),
'commit': commit[0:7],
})