forked from GeoNode/geonode-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.py
521 lines (467 loc) · 19 KB
/
tasks.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
import ast
import json
import logging
import os
import re
import time
import datetime
import docker
import socket
from urlparse import urlparse
from invoke import run, task
BOOTSTRAP_IMAGE_CHEIP = 'codenvy/che-ip:nightly'
@task
def waitfordbs(ctx):
print "**************************databases*******************************"
ctx.run("/usr/bin/wait-for-databases {0}".format('db'), pty=True)
@task
def waitforgeoserver(ctx):
print "****************************geoserver********************************"
while not _rest_api_availability(os.environ['GEOSERVER_LOCATION'] + 'rest'):
print ("Wait for GeoServer API availability...")
print "GeoServer is available for HTTP calls!"
@task
def update(ctx):
print "***************************setting env*********************************"
ctx.run("env", pty=True)
pub_ip = _geonode_public_host_ip()
print "Public Hostname or IP is {0}".format(pub_ip)
pub_port = _geonode_public_port()
print "Public PORT is {0}".format(pub_port)
db_url = _update_db_connstring()
geodb_url = _update_geodb_connstring()
service_ready = False
while not service_ready:
try:
socket.gethostbyname('geonode')
service_ready = True
except BaseException:
time.sleep(10)
override_env = "$HOME/.override_env"
if os.path.exists(override_env):
os.remove(override_env)
else:
print("Can not delete the %s file as it doesn't exists" % override_env)
envs = {
"local_settings": "{0}".format(_localsettings()),
"siteurl": os.environ.get('SITEURL',
'http://{0}:{1}/'.format(pub_ip, pub_port) if pub_port else 'http://{0}/'.format(pub_ip)),
"geonode_docker_host": "{0}".format(socket.gethostbyname('geonode')),
"public_fqdn": "{0}:{1}".format(pub_ip, pub_port),
"public_host": "{0}".format(pub_ip),
"dburl": os.environ.get('DATABASE_URL', db_url),
"geodburl": os.environ.get('GEODATABASE_URL', geodb_url),
"static_root": os.environ.get('STATIC_ROOT', '/mnt/volumes/statics/static/'),
"media_root": os.environ.get('MEDIA_ROOT', '/mnt/volumes/statics/uploaded/'),
"geoip_path": os.environ.get('GEOIP_PATH', '/mnt/volumes/statics/geoip.db'),
"monitoring": os.environ.get('MONITORING_ENABLED', True),
"monitoring_data_ttl": os.environ.get('MONITORING_DATA_TTL', 7),
"gs_loc": os.environ.get('GEOSERVER_LOCATION', 'http://geoserver:8080/geoserver/'),
"gs_web_ui_loc": os.environ.get('GEOSERVER_WEB_UI_LOCATION',
'http://{0}:{1}/geoserver/'.format(pub_ip, pub_port) if pub_port else 'http://{0}/geoserver/'.format(pub_ip)),
"gs_pub_loc": os.environ.get('GEOSERVER_PUBLIC_LOCATION',
'http://{0}:{1}/geoserver/'.format(pub_ip, pub_port) if pub_port else 'http://{0}/geoserver/'.format(pub_ip)),
"gs_admin_pwd": os.environ.get('GEOSERVER_ADMIN_PASSWORD', 'geoserver'),
"override_fn": override_env
}
try:
current_allowed = ast.literal_eval(os.getenv('ALLOWED_HOSTS') or \
"['{public_fqdn}', '{public_host}', 'localhost', 'django', '{{project_name}}',]".format(**envs))
except ValueError:
current_allowed = []
current_allowed.extend(['{}'.format(pub_ip), '{}:{}'.format(pub_ip, pub_port)])
allowed_hosts = ['"{}"'.format(c) for c in current_allowed] + ['"geonode"', '"django"']
ctx.run("echo export DJANGO_SETTINGS_MODULE=\
{local_settings} >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export MONITORING_ENABLED=\
{monitoring} >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export MONITORING_HOST_NAME=\
{geonode_docker_host} >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export MONITORING_SERVICE_NAME=\
local-geonode >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export MONITORING_DATA_TTL=\
{monitoring_data_ttl} >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export GEOSERVER_LOCATION=\
{gs_loc} >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export GEOSERVER_WEB_UI_LOCATION=\
{gs_web_ui_loc} >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export GEOSERVER_PUBLIC_LOCATION=\
{gs_pub_loc} >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export GEOSERVER_ADMIN_PASSWORD=\
{gs_admin_pwd} >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export SITEURL=\
{siteurl} >> {override_fn}".format(**envs), pty=True)
ctx.run('echo export ALLOWED_HOSTS=\
"\\"{}\\"" >> {override_fn}'.format(allowed_hosts, **envs), pty=True)
ctx.run("echo export DATABASE_URL=\
{dburl} >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export GEODATABASE_URL=\
{geodburl} >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export STATIC_ROOT=\
{static_root} >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export MEDIA_ROOT=\
{media_root} >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export GEOIP_PATH=\
{geoip_path} >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export LOGIN_URL=\
{siteurl}account/login/ >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export LOGOUT_URL=\
{siteurl}account/logout/ >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export LOGIN_REDIRECT_URL=\
{siteurl} >> {override_fn}".format(**envs), pty=True)
ctx.run("echo export LOGOUT_REDIRECT_URL=\
{siteurl} >> {override_fn}".format(**envs), pty=True)
ctx.run("source %s" % override_env, pty=True)
print "****************************finalize env**********************************"
ctx.run("env", pty=True)
@task
def migrations(ctx):
print "**************************migrations*******************************"
ctx.run("python manage.py makemigrations --noinput --merge --settings={0}".format(
_localsettings()
), pty=True)
ctx.run("python manage.py makemigrations --noinput --settings={0}".format(
_localsettings()
), pty=True)
ctx.run("python manage.py migrate --noinput --settings={0}".format(
_localsettings()
), pty=True)
ctx.run("python manage.py updategeoip --settings={0}".format(
_localsettings()
), pty=True)
try:
ctx.run("python manage.py rebuild_index --noinput --settings={0}".format(
_localsettings()
), pty=True)
except:
pass
@task
def statics(ctx):
print "**************************statics*******************************"
ctx.run('mkdir -p /mnt/volumes/statics/{static,uploads}')
ctx.run("python manage.py collectstatic --noinput --clear --settings={0}".format(
_localsettings()
), pty=True)
@task
def prepare(ctx):
print "**********************prepare fixture***************************"
ctx.run("rm -rf /tmp/default_oauth_apps_docker.json", pty=True)
_prepare_oauth_fixture()
ctx.run("rm -rf /tmp/default_site.json", pty=True)
_prepare_site_fixture()
# Updating OAuth2 Service Config
oauth_config = "/geoserver_data/data/security/filter/geonode-oauth2/config.xml"
ctx.run(
'sed -i "s|<cliendId>.*</cliendId>|<cliendId>{client_id}</cliendId>|g" {oauth_config}'.format(
client_id=os.environ['OAUTH2_CLIENT_ID'],
oauth_config=oauth_config
), pty=True)
ctx.run(
'sed -i "s|<clientSecret>.*</clientSecret>|<clientSecret>{client_secret}</clientSecret>|g" {oauth_config}'.format(
client_secret=os.environ['OAUTH2_CLIENT_SECRET'],
oauth_config=oauth_config
), pty=True)
@task
def fixtures(ctx):
print "**************************fixtures********************************"
ctx.run("python manage.py loaddata sample_admin \
--settings={0}".format(_localsettings()), pty=True)
ctx.run("python manage.py loaddata /tmp/default_oauth_apps_docker.json \
--settings={0}".format(_localsettings()), pty=True)
ctx.run("python manage.py loaddata /tmp/default_site.json \
--settings={0}".format(_localsettings()), pty=True)
ctx.run("python manage.py loaddata /usr/src/{{project_name}}/fixtures/initial_data.json \
--settings={0}".format(_localsettings()), pty=True)
ctx.run("python manage.py set_all_layers_alternate \
--settings={0}".format(_localsettings()), pty=True)
ctx.run("python manage.py set_all_layers_metadata -d \
--settings={0}".format(_localsettings()), pty=True)
@task
def collectstatic(ctx):
print "************************static artifacts******************************"
ctx.run("django-admin.py collectstatic --noinput \
--settings={0}".format(_localsettings()), pty=True)
@task
def geoserverfixture(ctx):
print "********************geoserver fixture********************************"
_geoserver_info_provision(os.environ['GEOSERVER_LOCATION'] + "rest/")
@task
def monitoringfixture(ctx):
print "*******************monitoring fixture********************************"
ctx.run("rm -rf /tmp/default_monitoring_apps_docker.json", pty=True)
_prepare_monitoring_fixture()
ctx.run("django-admin.py loaddata /tmp/default_monitoring_apps_docker.json \
--settings={0}".format(_localsettings()), pty=True)
@task
def updategeoip(ctx):
print "**************************update geoip*******************************"
ctx.run("django-admin.py updategeoip \
--settings={0}".format(_localsettings()), pty=True)
@task
def updateadmin(ctx):
print "***********************update admin details**************************"
ctx.run("rm -rf /tmp/django_admin_docker.json", pty=True)
_prepare_admin_fixture(os.environ.get('ADMIN_PASSWORD', 'admin'), os.environ.get('ADMIN_EMAIL', 'admin@example.org'))
ctx.run("django-admin.py loaddata /tmp/django_admin_docker.json \
--settings={0}".format(_localsettings()), pty=True)
@task
def collectmetrics(ctx):
print "************************collect metrics******************************"
ctx.run("python -W ignore manage.py collect_metrics \
--settings={0} -n -t xml".format(_localsettings()), pty=True)
@task
def initialized(ctx):
print "**************************init file********************************"
ctx.run('date > /mnt/volumes/statics/geonode_init.lock')
def _docker_host_ip():
client = docker.from_env()
ip_list = client.containers.run(BOOTSTRAP_IMAGE_CHEIP,
network_mode='host'
).split("\n")
if len(ip_list) > 1:
print("Docker daemon is running on more than one \
address {0}".format(ip_list))
print("Only the first address:{0} will be returned!".format(
ip_list[0]
))
else:
print("Docker daemon is running at the following \
address {0}".format(ip_list[0]))
return ip_list[0]
def _container_exposed_port(component, instname):
client = docker.from_env()
ports_dict = json.dumps(
[c.attrs['Config']['ExposedPorts'] for c in client.containers.list(
filters={
'label': 'org.geonode.component={0}'.format(component),
'status': 'running'
}
) if '{0}'.format(instname) in c.name][0]
)
for key in json.loads(ports_dict):
port = re.split('/tcp', key)[0]
return port
def _update_db_connstring():
user = os.getenv('GEONODE_DATABASE', 'geonode')
pwd = os.getenv('GEONODE_DATABASE_PASSWORD', 'geonode')
dbname = os.getenv('GEONODE_DATABASE', 'geonode')
connstr = 'postgres://{0}:{1}@db:5432/{2}'.format(
user,
pwd,
dbname
)
return connstr
def _update_geodb_connstring():
geouser = os.getenv('GEONODE_GEODATABASE', 'geonode_data')
geopwd = os.getenv('GEONODE_GEODATABASE_PASSWORD', 'geonode_data')
geodbname = os.getenv('GEONODE_GEODATABASE', 'geonode_data')
geoconnstr = 'postgis://{0}:{1}@db:5432/{2}'.format(
geouser,
geopwd,
geodbname
)
return geoconnstr
def _localsettings():
settings = os.getenv('DJANGO_SETTINGS_MODULE', '{{project_name}}.settings')
return settings
def _rest_api_availability(url):
import requests
try:
r = requests.request('get', url, verify=False)
r.raise_for_status() # Raises a HTTPError if the status is 4xx, 5xxx
except (requests.exceptions.ConnectionError, requests.exceptions.Timeout) as e:
print "GeoServer connection error is {0}".format(e)
return False
except requests.exceptions.HTTPError as er:
print "GeoServer HTTP error is {0}".format(er)
return False
else:
print "GeoServer API are available!"
return True
def _geonode_public_host_ip():
gn_pub_hostip = os.getenv('GEONODE_LB_HOST_IP', None)
if not gn_pub_hostip:
gn_pub_hostip = _docker_host_ip()
return gn_pub_hostip
def _geonode_public_port():
gn_pub_port = os.getenv('GEONODE_LB_PORT', '')
if not gn_pub_port:
gn_pub_port = _container_exposed_port(
'nginx',
os.getenv('GEONODE_INSTANCE_NAME', 'geonode')
)
elif gn_pub_port in ('80', '443'):
gn_pub_port = None
return gn_pub_port
def _geoserver_info_provision(url):
from django.conf import settings
from geoserver.catalog import Catalog
print "Setting GeoServer Admin Password..."
cat = Catalog(url,
username=settings.OGC_SERVER_DEFAULT_USER,
password=settings.OGC_SERVER_DEFAULT_PASSWORD
)
headers = {
"Content-type": "application/xml",
"Accept": "application/xml"
}
data = """<?xml version="1.0" encoding="UTF-8"?>
<userPassword>
<newPassword>{0}</newPassword>
</userPassword>""".format(os.getenv('GEOSERVER_ADMIN_PASSWORD', 'geoserver'))
print data
response = cat.http_request(cat.service_url + '/security/self/password', method="PUT", data=data, headers=headers)
print "Response Code: %s" % response.status_code
if response.status_code == 200:
print "GeoServer admin password updated SUCCESSFULLY!"
else:
print "WARNING: GeoServer admin password *NOT* updated: code [%s]" % response.status_code
def _prepare_oauth_fixture():
upurl = urlparse(os.environ['SITEURL'])
net_scheme = upurl.scheme
pub_ip = _geonode_public_host_ip()
print "Public Hostname or IP is {0}".format(pub_ip)
pub_port = _geonode_public_port()
print "Public PORT is {0}".format(pub_port)
default_fixture = [
{
"model": "oauth2_provider.application",
"pk": 1001,
"fields": {
"skip_authorization": True,
"created": "2018-05-31T10:00:31.661Z",
"updated": "2018-05-31T11:30:31.245Z",
"algorithm": "RS256",
"redirect_uris": "{0}://{1}:{2}/geoserver/index.html".format(net_scheme, pub_ip, pub_port) if pub_port else "{0}://{1}/geoserver/index.html".format(net_scheme, pub_ip),
"name": "GeoServer",
"authorization_grant_type": "authorization-code",
"client_type": "confidential",
"client_id": "{0}".format(os.environ['OAUTH2_CLIENT_ID']),
"client_secret": "{0}".format(os.environ['OAUTH2_CLIENT_SECRET']),
"user": [
"admin"
]
}
}
]
with open('/tmp/default_oauth_apps_docker.json', 'w') as fixturefile:
json.dump(default_fixture, fixturefile)
def _prepare_site_fixture():
upurl = urlparse(os.environ['SITEURL'])
default_fixture = [
{
"model": "sites.site",
"pk": 1,
"fields": {
"domain": "{0}".format(upurl.hostname),
"name": "{0}".format(upurl.hostname)
}
}
]
with open('/tmp/default_site.json', 'w') as fixturefile:
json.dump(default_fixture, fixturefile)
def _prepare_monitoring_fixture():
upurl = urlparse(os.environ['SITEURL'])
net_scheme = upurl.scheme
net_loc = upurl.netloc
pub_ip = _geonode_public_host_ip()
print "Public Hostname or IP is {0}".format(pub_ip)
pub_port = _geonode_public_port()
print "Public PORT is {0}".format(pub_port)
#d = str(datetime.datetime.now())
d = '1970-01-01 00:00:00'
default_fixture = [
{
"fields": {
"active": True,
"ip": "{0}".format(os.environ['MONITORING_HOST_NAME']),
"name": "geonode"
},
"model": "monitoring.host",
"pk": 1
},
{
"fields": {
"name": "local-geonode",
"url": "{0}://{1}/".format(net_scheme, net_loc),
"notes": "",
"last_check": d,
"active": True,
"host": 1,
"check_interval": "00:01:00",
"service_type": 1
},
"model": "monitoring.service",
"pk": 1
},
{
"fields": {
"name": "hostgeonode",
"url": "{0}://{1}/".format(net_scheme, net_loc),
"notes": "",
"last_check": d,
"active": True,
"host": 1,
"check_interval": "00:01:00",
"service_type": 3
},
"model": "monitoring.service",
"pk": 2
},
{
"fields": {
"name": "hostgeoserver",
"url": "{0}".format(os.environ['GEOSERVER_PUBLIC_LOCATION']),
"notes": "",
"last_check": d,
"active": True,
"host": 1,
"check_interval": "00:01:00",
"service_type": 4
},
"model": "monitoring.service",
"pk": 3
},
{
"fields": {
"name": "local-geoserver",
"url": "{0}".format(os.environ['GEOSERVER_PUBLIC_LOCATION']),
"notes": "",
"last_check": d,
"active": True,
"host": 1,
"check_interval": "00:01:00",
"service_type": 2
},
"model": "monitoring.service",
"pk": 4
}
]
with open('/tmp/default_monitoring_apps_docker.json', 'w') as fixturefile:
json.dump(default_fixture, fixturefile)
def _prepare_admin_fixture(admin_password, admin_email):
from django.contrib.auth.hashers import make_password
d = datetime.datetime.now()
mdext_date = d.isoformat()[:23] + "Z"
default_fixture = [
{
"fields": {
"date_joined": mdext_date,
"email": admin_email,
"first_name": "",
"groups": [],
"is_active": True,
"is_staff": True,
"is_superuser": True,
"last_login": mdext_date,
"last_name": "",
"password": make_password(admin_password),
"user_permissions": [],
"username": "admin"
},
"model": "people.Profile",
"pk": 1000
}
]
with open('/tmp/django_admin_docker.json', 'w') as fixturefile:
json.dump(default_fixture, fixturefile)