forked from justinmajetich/AirBnB_clone
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path3-deploy_web_static.py
70 lines (62 loc) · 2.48 KB
/
3-deploy_web_static.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
#!/usr/bin/python3
"""deploy script: all in one"""
import os
from datetime import datetime
from fabric.api import put, local, env, run
from fabric.decorators import runs_once
env.hosts = ['54.160.79.143', '18.233.65.33']
@runs_once
def do_pack():
"""pack the files"""
date = datetime.now().strftime('%Y%m%d%H%M%S')
parent_dir = os.getcwd()
full_path = os.path.join(parent_dir, 'versions')
if not os.path.isdir('versions'):
os.makedirs(full_path)
archd_file = 'web_static_{}.tgz'.format(date)
cmd = 'tar -cvzf versions/{} web_static'.format(archd_file)
result = local('{}'.format(cmd))
if result.return_code == 0:
location = os.path.join(full_path, archd_file)
size = os.path.getsize(location)
print('web_static packed: versions/{} -> {}Bytes'.format(archd_file,
size))
return 'versions/{}'.format(archd_file)
else:
return None
def do_deploy(archive_path):
"""deploy zipped web_static version"""
if os.path.exists(archive_path) is False:
return None
# split the archive name from the path given
archive_name = archive_path.split('/')[-1].split('.')[0]
# the destination path where the unzipped dir would be saved
path = '/data/web_static/releases'
# process your archive in the remote machine
if put(archive_path, '/tmp/').failed:
return False
if run('mkdir -p {}/{}'.format(path, archive_name)).failed:
return False
if run('tar -xzf /tmp/{1}.tgz -C {0}/{1}/'.format(path,
archive_name)).failed:
return False
if run('rm /tmp/{}.tgz'.format(archive_name)).failed:
return False
if run('mv {0}/{1}/web_static/* {0}/{1}/'.format(path,
archive_name)).failed:
return False
if run('rm -rf {}/{}/web_static'.format(path, archive_name)).failed:
return False
if run('rm -rf /data/web_static/current').failed:
return False
if run('ln -s {}/{}/ /data/web_static/current'
.format(path, archive_name)).failed:
return False
return True
def deploy():
"""Calls do_pack and do_deploy to merge the two tasks into one task"""
archive_path = do_pack()
if archive_path is None:
return False
success_status = do_deploy(archive_path)
return success_status