forked from GeoNode/geonode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.py
executable file
·721 lines (662 loc) · 21.5 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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
# -*- coding: utf-8 -*-
#########################################################################
#
# Copyright (C) 2016 OSGeo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#########################################################################
import os
import re
import ast
import json
import time
import docker
import socket
import ipaddress
import logging
import datetime
from pathlib import Path
from urllib.parse import urlparse, urlunparse
from invoke import task
BOOTSTRAP_IMAGE_CHEIP = "codenvy/che-ip:nightly"
logger = logging.getLogger(__name__)
@task
def waitfordbs(ctx):
print("**************************databases*******************************")
db_host = os.getenv("DATABASE_HOST", "db")
ctx.run(f"/usr/bin/wait-for-databases {db_host}", pty=True)
@task
def update(ctx):
print("***************************setting env*********************************")
ctx.run("env", pty=True)
pub_host = _geonode_public_host()
print(f"Public Hostname is {pub_host}")
pub_port = _geonode_public_port()
print(f"Public PORT is {pub_port}")
pub_protocol = "https" if pub_port == "443" else "http"
if pub_protocol == "https" or pub_port == "80":
pub_port = None
db_url = _update_db_connstring()
geodb_url = _update_geodb_connstring()
geonode_docker_host = None
for _cnt in range(1, 29):
try:
geonode_docker_host = str(socket.gethostbyname("geonode"))
break
except Exception:
print(f"...waiting for NGINX to pop-up...{_cnt}")
time.sleep(1)
override_env = "$HOME/.override_env"
if os.path.exists(override_env):
os.remove(override_env)
else:
print(f"Can not delete the {override_env} file as it doesn't exists")
if pub_port:
siteurl = f"{pub_protocol}://{pub_host}:{pub_port}/"
gs_pub_loc = f"http://{pub_host}:{pub_port}/geoserver/"
else:
siteurl = f"{pub_protocol}://{pub_host}/"
gs_pub_loc = f"http://{pub_host}/geoserver/"
envs = {
"local_settings": str(_localsettings()),
"siteurl": os.environ.get("SITEURL", siteurl),
"geonode_docker_host": geonode_docker_host,
"public_protocol": pub_protocol,
"public_fqdn": str(pub_host) + str(f":{pub_port}" if pub_port else ""),
"public_host": str(pub_host),
"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", False),
"monitoring_host_name": os.environ.get("MONITORING_HOST_NAME", "geonode"),
"monitoring_service_name": os.environ.get("MONITORING_SERVICE_NAME", "local-geonode"),
"monitoring_data_ttl": os.environ.get("MONITORING_DATA_TTL", 7),
"geonode_geodb_passwd": os.environ.get("GEONODE_GEODATABASE_PASSWORD", "geonode_data"),
"default_backend_datastore": os.environ.get("DEFAULT_BACKEND_DATASTORE", "datastore"),
"geonode_db_passwd": os.environ.get("GEONODE_DATABASE_PASSWORD", "geonode"),
"geonode_geodb": os.environ.get("GEONODE_GEODATABASE", "geonode_data"),
"db_url": os.environ.get("DATABASE_URL", "postgis://geonode:geonode@db:5432/geonode"),
"geodb_url": os.environ.get("GEODATABASE_URL", "postgis://geonode:geonode@db:5432/geonode_data"),
"geonode_db": os.environ.get("GEONODE_DATABASE", "geonode"),
"gs_loc": os.environ.get("GEOSERVER_LOCATION", "http://geoserver:8080/geoserver/"),
"gs_web_ui_loc": os.environ.get("GEOSERVER_WEB_UI_LOCATION", gs_pub_loc),
"gs_pub_loc": os.environ.get("GEOSERVER_PUBLIC_LOCATION", gs_pub_loc),
"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', 'geonode',]".format(**envs)
)
except ValueError:
current_allowed = []
current_allowed.extend([str(pub_host), f"{pub_host}:{pub_port}"])
allowed_hosts = [str(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=\
{monitoring_host_name} >> {override_fn}".format(
**envs
),
pty=True,
)
ctx.run(
"echo export MONITORING_SERVICE_NAME=\
{monitoring_service_name} >> {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 GEOIP_PATH=\
{geoip_path} >> {override_fn}".format(
**envs
),
pty=True,
)
ctx.run(
"echo export GEONODE_GEODATABASE_PASSWORD=\
{geonode_geodb_passwd} >> {override_fn}".format(
**envs
),
pty=True,
)
ctx.run(
"echo export DEFAULT_BACKEND_DATASTORE=\
{default_backend_datastore} >> {override_fn}".format(
**envs
),
pty=True,
)
ctx.run(
"echo export GEONODE_DATABASE_PASSWORD=\
{geonode_db_passwd} >> {override_fn}".format(
**envs
),
pty=True,
)
ctx.run(
"echo export GEONODE_GEODATABASE=\
{geonode_geodb} >> {override_fn}".format(
**envs
),
pty=True,
)
ctx.run(
"echo export DATABASE_URL=\
{db_url} >> {override_fn}".format(
**envs
),
pty=True,
)
ctx.run(
"echo export GEODATABASE_URL=\
{geodb_url} >> {override_fn}".format(
**envs
),
pty=True,
)
ctx.run(
"echo export GEONODE_DATABASE=\
{geonode_db} >> {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(f"source {override_env}", pty=True)
print("****************************finalize env**********************************")
ctx.run("env", pty=True)
@task
def migrations(ctx):
print("**************************migrations*******************************")
ctx.run(f"python manage.py migrate --noinput --settings={_localsettings()}", pty=True)
ctx.run(
f"python manage.py migrate --noinput --settings={_localsettings()} --database=datastore",
pty=True,
)
try:
ctx.run(
f"python manage.py rebuild_index --noinput --settings={_localsettings()}",
pty=True,
)
except Exception:
pass
@task
def statics(ctx):
print("**************************statics*******************************")
try:
static_root = os.environ.get("STATIC_ROOT", "/mnt/volumes/statics/static/")
media_root = os.environ.get("MEDIA_ROOT", "/mnt/volumes/statics/uploaded/")
ctx.run(f"mkdir -pv {static_root} {media_root}")
ctx.run(
f"python manage.py collectstatic --noinput --settings={_localsettings()}",
pty=True,
)
except Exception:
import traceback
traceback.print_exc()
@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()
@task
def fixtures(ctx):
print("**************************fixtures********************************")
ctx.run(
f"python manage.py loaddata sample_admin \
--settings={_localsettings()}",
pty=True,
)
ctx.run(
f"python manage.py loaddata /tmp/default_oauth_apps_docker.json \
--settings={_localsettings()}",
pty=True,
)
ctx.run(
f"python manage.py loaddata geonode/base/fixtures/initial_data.json \
--settings={_localsettings()}",
pty=True,
)
@task
def collectstatic(ctx):
print("************************static artifacts******************************")
ctx.run(
f"django-admin collectstatic --noinput \
--settings={_localsettings()}",
pty=True,
)
@task
def monitoringfixture(ctx):
if ast.literal_eval(os.environ.get("MONITORING_ENABLED", "False")):
print("*******************monitoring fixture********************************")
ctx.run("rm -rf /tmp/default_monitoring_apps_docker.json", pty=True)
_prepare_monitoring_fixture()
try:
ctx.run(
f"django-admin loaddata geonode/monitoring/fixtures/metric_data.json \
--settings={_localsettings()}",
pty=True,
)
ctx.run(
f"django-admin loaddata geonode/monitoring/fixtures/notifications.json \
--settings={_localsettings()}",
pty=True,
)
ctx.run(
f"django-admin loaddata /tmp/default_monitoring_apps_docker.json \
--settings={_localsettings()}",
pty=True,
)
except Exception as e:
logger.error(f"ERROR installing monitoring fixture: {str(e)}")
@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", "[email protected]"),
)
ctx.run(
f"django-admin loaddata /tmp/django_admin_docker.json \
--settings={_localsettings()}",
pty=True,
)
@task
def collectmetrics(ctx):
print("************************collect metrics******************************")
ctx.run(
f"python -W ignore manage.py collect_metrics \
--settings={_localsettings()} -n -t xml",
pty=True,
)
@task
def initialized(ctx):
print("**************************init file********************************")
static_root = os.environ.get("STATIC_ROOT", "/mnt/volumes/statics/static/")
lockfile_dir = Path(static_root).parent # quite ugly, we're assuming such dir exists and is writable
ctx.run(f"date > {lockfile_dir}/geonode_init.lock")
def _docker_host_ip():
try:
client = docker.from_env(version="1.24")
ip_list = client.containers.run(BOOTSTRAP_IMAGE_CHEIP, network_mode="host").split("\n")
except Exception:
import traceback
traceback.print_exc()
ip_list = [
"127.0.0.1",
]
if len(ip_list) > 1:
print(
f"Docker daemon is running on more than one \
address {ip_list}"
)
print(f"Only the first address:{ip_list[0]} will be returned!")
else:
print(
f"Docker daemon is running at the following \
address {ip_list[0]}"
)
return ip_list[0]
def _is_valid_ip(ip):
try:
ipaddress.IPv4Address(ip)
return True
except Exception as e:
return False
def _container_exposed_port(component, instname):
port = "80"
try:
client = docker.from_env(version="1.24")
ports_dict = json.dumps(
[
c.attrs["Config"]["ExposedPorts"]
for c in client.containers.list(
filters={
"label": f"org.geonode.component={component}",
"status": "running",
}
)
if str(instname) in c.name
][0]
)
for key in json.loads(ports_dict):
port = re.split("/tcp", key)[0]
except Exception:
import traceback
traceback.print_exc()
return port
def _update_db_connstring():
connstr = os.getenv("DATABASE_URL", None)
if not connstr:
user = os.getenv("GEONODE_DATABASE_USER", "geonode")
pwd = os.getenv("GEONODE_DATABASE_PASSWORD", "geonode")
dbname = os.getenv("GEONODE_DATABASE", "geonode")
dbhost = os.getenv("DATABASE_HOST", "db")
dbport = os.getenv("DATABASE_PORT", 5432)
connstr = f"postgis://{user}:{pwd}@{dbhost}:{dbport}/{dbname}"
return connstr
def _update_geodb_connstring():
geoconnstr = os.getenv("GEODATABASE_URL", None)
if not geoconnstr:
geouser = os.getenv("GEONODE_GEODATABASE_USER", "geonode_data")
geopwd = os.getenv("GEONODE_GEODATABASE_PASSWORD", "geonode_data")
geodbname = os.getenv("GEONODE_GEODATABASE", "geonode_data")
dbhost = os.getenv("DATABASE_HOST", "db")
dbport = os.getenv("DATABASE_PORT", 5432)
geoconnstr = f"postgis://{geouser}:{geopwd}@{dbhost}:{dbport}/{geodbname}"
return geoconnstr
def _localsettings():
settings = os.getenv("DJANGO_SETTINGS_MODULE", "geonode.settings")
return settings
def _geonode_public_host():
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_host_ip():
gn_pub_hostip = os.getenv("GEONODE_LB_HOST_IP", None)
if not gn_pub_hostip or not _is_valid_ip(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 _prepare_oauth_fixture():
upurl = urlparse(os.environ["SITEURL"])
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": f"{urlunparse(upurl)}geoserver/index.html",
"name": "GeoServer",
"authorization_grant_type": "authorization-code",
"client_type": "confidential",
"client_id": str(os.environ["OAUTH2_CLIENT_ID"]),
"client_secret": str(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": str(upurl.hostname), "name": str(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(f"Public Hostname or IP is {pub_ip}")
pub_port = _geonode_public_port()
print(f"Public PORT is {pub_port}")
try:
geonode_ip = socket.gethostbyname("geonode")
except Exception:
geonode_ip = pub_ip
try:
geoserver_ip = socket.gethostbyname("geoserver")
except Exception:
geoserver_ip = pub_ip
d = "1970-01-01 00:00:00"
default_fixture = [
{
"fields": {
"active": True,
"ip": str(geonode_ip),
"name": str(os.environ["MONITORING_HOST_NAME"]),
},
"model": "monitoring.host",
"pk": 1,
},
{
"fields": {"active": True, "ip": str(geoserver_ip), "name": "geoserver"},
"model": "monitoring.host",
"pk": 2,
},
{
"fields": {
"name": str(os.environ["MONITORING_SERVICE_NAME"]),
"url": str(os.environ["SITEURL"]),
"notes": "",
"last_check": d,
"active": True,
"host": 1,
"check_interval": "00:01:00",
"service_type": 1,
},
"model": "monitoring.service",
"pk": 1,
},
{
"fields": {
"name": "geoserver-hostgeonode",
"url": str(os.environ["SITEURL"]),
"notes": "",
"last_check": d,
"active": True,
"host": 1,
"check_interval": "00:01:00",
"service_type": 3,
},
"model": "monitoring.service",
"pk": 2,
},
{
"fields": {
"name": "geoserver-hostgeoserver",
"url": str(os.environ["GEOSERVER_PUBLIC_LOCATION"]),
"notes": "",
"last_check": d,
"active": True,
"host": 2,
"check_interval": "00:01:00",
"service_type": 4,
},
"model": "monitoring.service",
"pk": 3,
},
{
"fields": {
"name": "default-geoserver",
"url": "http://geoserver:8080/geoserver/",
"notes": "",
"last_check": d,
"active": True,
"host": 2,
"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 = f"{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)