forked from ip-tools/patzilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fabfile.py
120 lines (94 loc) · 4.1 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
# -*- coding: utf-8 -*-
# (c) 2013-2018 Andreas Motl, Elmyra UG
import os
from distutils.core import run_setup
from fabric.contrib.project import rsync_project
from fabric.decorators import task, hosts
from fabric.colors import yellow, red
from fabric.utils import abort
from fabric.state import env
from cuisine import run, file_exists, file_is_dir, file_is_file, file_upload, dir_ensure
from pip._internal.utils.misc import ask
env.colorize_errors = True
env.confirm = False
INSTALLATION_HOST = os.environ['PATZILLA_HOST']
INSTALLATION_PATH = '/opt/patzilla'
# TODO: Task for uploading package file
# TODO: Task for uploading configuration file
@task
@hosts(INSTALLATION_HOST)
def install(version, target):
if not target:
abort('Task argument "target" is required.')
current_dir = os.path.dirname(__file__)
project_path = current_dir
pkg_version = setuptools_get_version(project_path)
pkg_name = setuptools_get_name(project_path)
if not version:
version = pkg_version
print 'Installing package {0}, version {1} to target {2}.'.format(*map(yellow, [pkg_name, version, target]))
if env.confirm:
response = ask('Proceed (y/n)? ', ('y', 'n'))
else:
response = 'y'
if response == 'y':
# From filesystem
#source_package = '~/install/PatZilla/PatZilla-{version}.tar.gz'.format(version=version)
# From PyPI
source_package = 'patzilla=={version}'.format(version=version)
source_config = './patzilla/config/production.ini.tpl'
target_path = os.path.join(INSTALLATION_PATH, 'sites', target)
dir_ensure(target_path, recursive=True)
venv_path = target_path + '/.venv2'
#if not file_is_file(source_package):
# abort('Source package does not exist: ' + source_package)
if not file_is_dir(target_path):
abort('Target path does not exist: ' + target_path)
if not file_is_dir(venv_path):
run('virtualenv --no-site-packages "{0}"'.format(venv_path))
#setup_package('which', venv_path)
# TODO: put these packages to a more convenient location
setup_package(source_package, venv_path)
upload_config(source_config, target_path)
restart_service(target)
else:
print yellow('Skipped package install due to user request.')
def setup_package(package, virtualenv, options=''):
#--index-url=http://c.pypi.python.org/simple
pip_cmd_template = """
source {virtualenv}/bin/activate;
sh -c "pip install --upgrade setuptools==36.4.0";
sh -c "pip install --upgrade pip==19.2.3";
sh -c "export TEMP=/var/tmp; pip install --cache-dir=/var/cache/pip --verbose {options} {package}"
"""
#sh -c "pip install --download-cache=/var/cache/pip --allow-all-external --allow-unverified=which --verbose {options} {package}"
run(pip_cmd_template.format(**locals()))
def upload_config(config_path, target_path):
file_upload(target_path, config_path)
def restart_service(target):
uwsgi_names = {
'develop': 'patentsearch-develop',
'staging': 'patentsearch-staging',
'prod': 'patentsearch-prod',
'patoffice': 'patentsearch.patoffice',
'vdpm': 'patentsearch.vdpm',
}
uwsgi_name = uwsgi_names.get(target, target)
if uwsgi_name:
run('service uwsgi reload %s' % uwsgi_name)
else:
print(red('WARNING: Could not restart service "%s"' % target))
@task
@hosts(INSTALLATION_HOST)
def upload_nginx_auth():
rsync_project(INSTALLATION_PATH, local_dir='nginx-auth')
def setuptools_get_version(project_path):
setup_script = os.path.join(project_path, 'setup.py')
# stop_after=('init', 'config', 'commandline', 'run')
distribution_info = run_setup(setup_script, stop_after="commandline")
return distribution_info.get_version()
def setuptools_get_name(project_path):
setup_script = os.path.join(project_path, 'setup.py')
# stop_after=('init', 'config', 'commandline', 'run')
distribution_info = run_setup(setup_script, stop_after="commandline")
return distribution_info.get_name()