-
Notifications
You must be signed in to change notification settings - Fork 7
/
fabfile.py
1454 lines (1217 loc) · 49.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
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
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""
Copyright (c) 2015, EDINA
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
* Neither the name of EDINA nor the names of its contributors may be used to
endorse or promote products derived from this software without specific prior
written permission.
THIS SOFTWARE IS PROVIDED BY EDINA ''AS IS'' AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
SHALL EDINA BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
"""
from copy import copy, deepcopy
from configparser import ConfigParser, ExtendedInterpolation, NoOptionError
from email.mime.image import MIMEImage
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from fabric.api import cd, env, execute, hosts, lcd, local, put, run, settings, task
from fabric.contrib.files import exists
from fabric.contrib.project import rsync_project
from html_generator import HtmlGenerator
from jinja2 import Environment, FileSystemLoader
import xml.etree.ElementTree as ET
import ast
import codecs
import datetime
import itertools
import json
import os
import smtplib
import sys
import re
CORDOVA_VERSION = '4.3.1'
# Can be used to enable alternative platform version
CORDOVA_PLATFORM_VERSION = {
'android': '4.1.1',
'ios': None
}
OPENLAYERS_VERSION = '2.13.1'
NPM_VERSION = '2.11.3'
BOWER_VERSION = '1.4.1'
JSHINT_VERSION = '2.8.0'
PLUGMAN_VERSION = '0.23.1'
# lowest supported android sdk version
# could move to config if projects diverge
MIN_SDK_VERSION = 14 # 4.0 Ice cream sandwich
TARGET_SDK_VERSION = 19 # 4.4 Kitkat
"""
Tools installed via npm.
The v_search value is the expected output of running the command -v
"""
npm_commands = {
'bower':{
'version': BOWER_VERSION,
},
'cordova':{
'version': CORDOVA_VERSION,
},
'jshint':{
'version': JSHINT_VERSION,
'v_search': 'jshint v{0}'.format(JSHINT_VERSION)
},
'npm':{
'version': NPM_VERSION
},
'plugman':{
'version': PLUGMAN_VERSION
}
}
config = None
@task
def check_plugins():
"""
Check if newer versions of cordova plugin are available.
Current version of plugman 0.23.3 not working, https://issues.apache.org/jira/browse/CB-9198
"""
_check_command('plugman')
json_file = os.path.join(_get_source()[1], 'theme', 'project.json')
if os.path.exists(json_file):
def version_check(name, version, latest_version):
if version != latest_version:
print '*** {0}@{1} not using latest version {2} ***\n'.format(
name, version, latest_version)
else:
print '{0} up to date\n'.format(name)
plugins = json.loads(open(json_file).read())['plugins']['cordova']
for plugin in plugins:
if '@' in plugin:
# plugin registry
name, version = plugin.split('@')
out = local('plugman info {0}'.format(name), capture=True)
lines = out.split('\n')
for line in lines:
info = line.split(':')
if info[0] == 'version':
latest_version = info[1].strip()
version_check(name, version, latest_version)
elif plugin[:14] == 'https://github':
# github repo
if '#' in plugin:
url, version = plugin.split('#')
repo = url.split('github.com/')[1].replace('.git', '')
api_url = 'https://api.github.com/repos/{0}/tags'.format(repo)
out = local('curl {0}'.format(api_url), capture=True)
latest_version = json.loads(out)[0]['name']
version_check(url, version, latest_version)
else:
print 'Where is the plugins file?: {0}'.format(json_file)
exit(-1)
@task
def clean_runtime(target='local'):
"""
Remove the runtime directory
return True if directory sucessfully deleted.
"""
runtime = _get_runtime(target)[1]
if os.path.exists(runtime):
msg = 'Do you wish to delete {0} (Y/n)? > '.format(runtime)
answer = raw_input(msg.format(runtime)).strip()
if len(answer) == 0 or answer.lower() == 'y':
local('rm -rf {0}'.format(runtime))
return True
else:
print 'Nothing removed.'
return False
@task
def clean():
"""
Tidy up app. This should be run before switching projects.
"""
root, project, src = _get_source()
def delete_repo(repo):
if os.path.exists(repo):
with lcd(repo):
out = local('git status', capture=True)
if out.find('Your branch is ahead') != -1:
print "\nWon't delete {0} until all commits are pushed".format(repo)
exit(-1)
out = local('git status -s', capture=True)
if len(out.splitlines()) > 0:
print "\nWon't delete {0} until there are no uncommitted changes".format(repo)
exit(-1)
out = local('git stash list', capture=True)
if len(out.splitlines()) > 0:
print "\nWon't delete {0} there are stashed changes".format(repo)
exit(-1)
else:
local('rm -rf {0}'.format(repo))
msg = '\n*** WARNING ***\nfab clean will delete the project and all plugin repositories. While this task attempts to check there are no uncommited or stashed changes (and will not continue if there are) it is still probably best to check manually to avoid any loss of work.\nDo you wish to continue(y/N)? > '
answer = raw_input(msg).strip()
if len(answer) == 0 or answer.lower() != 'y':
print 'Choosing not continue.'
return
with settings(warn_only=True):
www = os.sep.join((src, 'www'))
local('rm {0}*.html'.format(os.sep.join((www, ''))))
local('rm {0}'.format(os.sep.join((www, 'theme'))))
local('rm {0}'.format(os.sep.join((root, 'etc', 'config.ini'))))
with lcd(root):
if os.path.exists('project'):
proj_repo = local('readlink project', capture=True)
print proj_repo
delete_repo(os.sep.join((root, proj_repo)))
local('rm project')
local('bower cache clean')
plugins = os.sep.join((root, 'plugins'))
if os.path.exists(plugins):
with lcd(plugins):
for plugin in os.listdir(plugins):
delete_repo(os.sep.join((plugins, plugin)))
local('rmdir plugins')
@task
def build(platform='android'):
"""
Build the app for a specific platform
"""
_check_commands(['cordova'])
merge_locales()
# generate html for android
generate_html(platform, cordova=True)
with lcd(_get_runtime()[1]):
local('cordova build {0}'.format(platform))
@task
def build_android():
_check_commands(['ant', 'android'])
build('android')
@task
def deploy_android(uninstall='False'):
"""
Deploy to android device connected to machine
uninstall - use this flag to first uninstall app.
"""
_check_commands(['adb'])
build_android()
if _str2bool(uninstall):
local('adb uninstall {0}'.format(_config('package', section='app')))
with lcd(_get_runtime()[1]):
with settings(warn_only=True):
cmd = 'cordova run android 2>&1'
out = local(cmd, capture=True)
print out
# TODO
# currently a bug in cordova that returns 0 when cordova run android fails
# see https://issues.apache.org/jira/browse/CB-8460
# just check the output instead
#if out and out.return_code != 0:
if out.find('INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES') != -1 or out.find('INSTALL_FAILED_UPDATE_INCOMPATIBLE') != -1:
# app is installed with wrong certificate try and uninstall app
local('adb uninstall {0}'.format(_config('package', section='app')))
# retry install
local(cmd)
# else:
# print out
# raise SystemExit(out.return_code)
@task
def build_ios():
"""
Build the ios app
"""
_check_commands(['xcode-select'])
build('ios')
@task
def deploy_ios():
"""
Deploy to an iOS device connected to machine
"""
build_ios()
with lcd(_get_runtime()[1]):
local('cordova run ios')
@task
def generate_config_js(version=None, fetch_config=True):
""" generate config.js """
root, proj_home, src_dir = _get_source()
if _str2bool(fetch_config):
_check_config()
if version == None:
versions = None
theme_src = os.sep.join((proj_home, 'theme'))
with open(os.path.join(theme_src, 'project.json'), 'r') as f:
version = json.load(f)["versions"]["project"]
# using config initialises it
_config('name')
# convert items list into dictionary
values = {}
section = 'app'
for key, _ in config.items(section):
values[str(key)] = str(_config(key, section=section, folded=True))
values['version'] = str(version)
templates = os.sep.join((src_dir, 'templates'))
out_file = os.sep.join((src_dir, 'www', 'js', 'config.js'))
environ = Environment(loader=FileSystemLoader(templates))
template = environ.get_template("config.js")
output = template.render(config=values)
_write_data(out_file, output)
@task
def generate_docs():
"""
Auto generate javascript markdown documentation
"""
local('jsdox --output docs/ src/www/js/')
@task
def generate_html(platform="android", cordova=False):
"""
Generate html from templates
platform - android or ios
cordova - should cordova.js be used?
"""
if isinstance(cordova, basestring):
cordova = _str2bool(cordova)
#setup paths
root, proj_home, src_dir = _get_source()
htmlGenerator = HtmlGenerator(
platform, cordova, root, proj_home, src_dir, _config(),
_config(None, "settings", folded=True)
)
htmlGenerator.generate()
#copy all the editors that exist inside the editors folder of the project
if os.path.exists(os.path.join(proj_home, 'src', 'editors')):
local('cp -r {0}/* {1}'.format(os.path.join(proj_home, 'src', 'editors'), os.path.join(src_dir, 'www', 'editors')))
@task
def generate_html_ios():
generate_html(platform="ios")
@task
def install_cordova_plugin(repo, platform='android', target='local'):
"""
Install cordova plugin from a local directory.
"""
_check_command('cordova')
repo = os.path.expanduser(repo)
if not os.path.exists(repo):
print "Can't find plugin {0}".format(repo)
exit(-1)
plugin_xml = os.path.join(repo, 'plugin.xml')
if not os.path.exists(plugin_xml):
print "Cordova plugins need a plugin.xml file: {0}".format(plugin_xml)
exit(-1)
runtime = _get_runtime(target)[1]
root = ET.parse(plugin_xml).getroot()
id = root.attrib['id']
with lcd(runtime):
with settings(warn_only=True):
# remove plugin first
local('cordova plugin rm {0}'.format(id))
local('cordova plugin add {0}'.format(repo))
@task
def install_plugins(target='local', cordova="True"):
"""
Set up project plugins
target - runtime root
cordova - flag to switch on/off fetching of cordova plugins
"""
runtime = _get_runtime(target)[1]
root, proj_home, src_dir = _get_source()
asset_dir = os.sep.join((src_dir, 'www'))
theme = os.sep.join((asset_dir, 'theme'))
with settings(warn_only=True):
# remove old sym links
local('rm -r {0}/plugins/*'.format(asset_dir))
with lcd(root):
if not os.path.exists('plugins'):
local('mkdir plugins')
# process project json file
json_file = os.sep.join((theme, 'project.json'))
if os.path.exists(json_file):
pobj = json.loads(open(json_file).read())['plugins']
if _str2bool(cordova):
with lcd(runtime):
# do cordova plugins
for name in pobj['cordova']:
local('cordova plugin add {0}'.format(name))
# do fieldtrip plugins
proot = os.path.join(root, 'plugins')
for plugin, details in pobj['fieldtrip'].iteritems():
dest = os.path.join(asset_dir, 'plugins', plugin)
if details[0:14] == 'https://github':
# if repository given in https:// format convert to git@
print 'Converting {0} to '.format(details)
details = 'git@{0}.git'.format(details[8:]).replace('/', ':', 1)
if not details[0:3] == 'git':
# bower plugin
name = 'fieldtrip-{0}'.format(plugin)
local('bower install {0}#{1}'.format(name, details))
local('mkdir {0}'.format(dest))
src = os.path.join(root, 'bower_components', name, 'src', 'www')
local('cp -r {0}/* {1}'.format(src, dest))
else:
# git repository
plugin_src = os.path.join(proot, plugin)
if not os.path.isdir(plugin_src):
with lcd(proot):
if '#' in details:
# a branch is defined clone as single branch
repo = details.split('#')
local('git clone -b {0} --single-branch {1} {2}'.format(
repo[1], repo[0], plugin))
else:
# clone whole repo
local('git clone {0} {1}'.format(details, plugin))
with lcd(plugin):
local('ln -s {0} {1}'.format(
os.path.join(root, 'scripts', 'pre-commit.sh'),
os.path.join('.git', 'hooks', 'pre-commit')))
www = os.path.join(plugin_src, 'src', 'www')
if os.path.exists(www):
# create sym link to repos www dir
local('ln -s {0} {1}'.format(www, dest))
with lcd(plugin_src):
# install any bower dependencies in plugin
local('bower install')
bower_comps = os.path.join(plugin_src, 'bower_components')
if os.path.exists(bower_comps):
js_ext = os.path.join(www, 'js', 'ext', '')
if not os.path.exists(js_ext):
local('mkdir -p {0}'.format(js_ext))
js_dirs = ['js', 'src', 'dist']
for dep in os.listdir(bower_comps):
for js_dir in js_dirs:
ext_src = os.path.join(bower_comps,
dep, js_dir, '')
if os.path.exists(ext_src):
local('cp {0}* {1}'.format(
ext_src,
js_ext))
else:
print 'Plugin has no www dir: {0}'.format(www)
exit(-1)
else:
print 'Where is the plugins file?: {0}'.format(json_file)
exit(-1)
@task
def install_project(platform='android',
dist_dir='apps',
target='local',
project_branch='master',
config_url=None,
config_port=None):
"""
Install Cordova runtime
platform - android or ios (android by default)
dist_dir - directory for unpacking openlayers
target - runtime root
project_branch - project branch name
config_url - location of the config.ini
config_port - port at which the config.ini will be fetched by ssh
"""
if platform == 'android':
_check_commands(['android', 'ant'])
_check_commands(['cordova', 'npm', 'bower', 'jshint', 'wget'])
root, proj_home, src_dir = _get_source()
# get config file
_check_config(config_url, config_port)
target_dir, runtime = _get_runtime(target)
js_ext_dir = os.sep.join(('www', 'js', 'ext'))
css_ext_dir = os.sep.join(('www', 'css', 'ext'))
if not os.path.exists(target_dir):
os.makedirs(target_dir)
# create project repo
if not os.path.exists('project'):
proj = _config('project')
pro_name = proj[proj.rfind('/') + 1:].replace('.git', '')
local('git clone {0}'.format(proj))
local('ln -s {0} {1}'.format(pro_name, 'project'))
if project_branch != 'master':
with lcd('project'):
print 'Try checking out project branch {0}'.format(project_branch)
local('git checkout {0}'.format(project_branch))
if not os.path.exists('.git/hooks/pre-commit'):
local('ln -s {0} {1}'.format(
os.path.join(root, 'scripts', 'pre-commit.sh'),
os.path.join('.git', 'hooks', 'pre-commit')))
# do some checks on the project
theme_src = os.sep.join((proj_home, 'theme'))
if not os.path.exists(os.sep.join((theme_src, 'project.json'))):
print "\n*** ERROR: No project.json found in project"
exit(-1)
theme_css = os.sep.join((theme_src, 'css'))
if not os.path.exists(os.sep.join((theme_css, 'jqm-style.css'))):
print "\n*** WARNING: No jqm-style.css found in project: {0}".format(theme_css)
if not os.path.exists(os.sep.join((theme_css, 'style.css'))):
print "\n*** WARNING: No style.css found in project"
versions = None
with open(os.path.join(theme_src, 'project.json'), 'r') as f:
versions = json.load(f)["versions"]
# check using correct core git version
if not _is_in_branch(root, versions['core']):
print '\nUsing wrong FT Open branch/tag. Should be using {0}.'.format(
versions['core'])
exit(-1)
# create cordova config.xml
_generate_config_xml()
# install external js libraries
local('bower install')
bower = json.loads(open('bower.json').read())
bower_home = os.sep.join((root, 'bower_components'))
# install cordova
install_cordova = True
if os.path.exists(runtime):
with lcd(runtime):
with settings(warn_only=True):
out = local('cordova platform list 2>&1', capture=True)
installed_version = local('cordova --version 2>&1', capture=True)
if "not a Cordova-based project" in out or installed_version != CORDOVA_VERSION:
# If the directory exists but it's not a cordova project or the
# cordova version is different from expected, remove runtime
if not clean_runtime(target):
print 'Looks like a problem cleaning runtime'
exit(-1)
else:
install_cordova = False
if install_cordova:
local('cordova create "{0}" "{1}" "{2}"'.format(
runtime,
_config('package', section='app'),
_config('name')))
# Install platform
with lcd(runtime):
platform_path = os.sep.join((runtime, 'platforms', platform))
if(os.path.exists(platform_path)):
if config_url:
local('cordova platform rm {0}'.format(platform))
else:
msg = 'Platform {0} exists\nDo you wish to delete it(Y/n)? > '
answer = raw_input(msg.format(platform)).strip()
if len(answer) == 0 or answer.lower() == 'y':
local('cordova platform rm {0}'.format(platform))
else:
print 'Choosing not continue. Nothing installed.'
exit(-1)
# create sym link to assets
local('rm -rf www')
asset_dir = os.sep.join((src_dir, 'www'))
local('ln -s {0}'.format(asset_dir))
# Replace default config.xml and symlink to our version
local('rm config.xml')
local('ln -s %s' % os.sep.join(('www', 'config.xml')))
# link to project theme
theme = os.sep.join((asset_dir, 'theme'))
if not os.path.exists(theme):
with lcd(asset_dir):
if os.path.exists(theme_src):
local('ln -s {0} theme'.format(theme_src))
else:
print '\nYour project must have a theme at {0}'.format(theme_src)
exit(-1)
# clean up old installs
with settings(warn_only=True):
local('rm {0}/*'.format(js_ext_dir))
local('rm {0}/*.css'.format(css_ext_dir))
local('rm {0}/plugins/*'.format(asset_dir))
# set up bower dependecies
for dep in bower['dependency_locations']:
files = bower['dependency_locations'][dep]
version = bower['dependencies'][dep]
for f in files:
if version[:4] == 'http':
# if a url has been given get the version from it
version = re.search('((\d\.){2}\d)', version).group(0)
f = f.replace('x.x', version)
src = os.sep.join((bower_home, dep, f))
f_name = dep.replace('-bower', '')
if (f_name == 'leaflet' or f_name == 'leaflet.marketcluster' or f_name == 'proj4leaflet') and _config('maplib', section='app') != 'leaflet':
# only install leaflet if required
continue
if f[len(f) - 2:] == 'js':
dest = os.sep.join((js_ext_dir, '{0}.js'.format(f_name)))
else:
dest = os.sep.join((css_ext_dir, '{0}.css'.format(f_name)))
local('cp {0} {1}'.format(src, dest))
# install the platform
if CORDOVA_PLATFORM_VERSION.get(platform):
local('cordova platform add {0}@{1}'
.format(platform, CORDOVA_PLATFORM_VERSION[platform]))
else:
local('cordova platform add {0}'.format(platform))
# generate config js
generate_config_js(version=versions['project'],
fetch_config=False)
# set up cordova/fieldtrip plugins
install_plugins(target)
# add project specific files
update_app(platform)
# process tempates
generate_html(platform='desktop')
merge_locales()
# check if /home/<user>/<dist_dir> exists
dist_path = os.sep.join((os.environ['HOME'], dist_dir))
if not os.path.exists(dist_path):
os.makedirs(dist_path)
if _config('maplib', section='app') != 'leaflet':
# check if openlayers is installed
ol_dir = 'OpenLayers-%s' % OPENLAYERS_VERSION
ol_path = os.sep.join((dist_path, ol_dir))
if not os.path.exists(ol_path):
# install openlayers
with lcd(dist_path):
ol_tar_file_name = '%s.tar.gz' % ol_dir
ol_tar = 'http://github.com/openlayers/openlayers/releases/download/release-{0}/{1}'.format(OPENLAYERS_VERSION, ol_tar_file_name)
local('wget %s' % ol_tar)
local('tar xvfz %s' % ol_tar_file_name)
with lcd(os.sep.join((ol_path, 'build'))):
cfg_file = os.sep.join((src_dir, 'etc', 'openlayers-mobile.cfg'))
js_mobile = os.sep.join((runtime, js_ext_dir, 'openlayers.js'))
local('./build.py %s %s' % (cfg_file, js_mobile))
@task
def install_project_ios(target='local'):
"""
"""
install_project(platform='ios', target=target)
@task
def install_project_android(target='local'):
"""
Install the android project in the cordova runtime
"""
install_project(platform='android', target=target)
def _find_translations(path):
"""
Scan the path for translations and creates an array with paths where the
same combination lang/file was found in the following format:
{
'en': {
'namespace.json': [path1, path2]
},
'es': {
'namespace.json': [path1, path3]
}
}
"""
list_locales = {}
if os.path.exists(path):
for root, dirs, files in os.walk(path):
lang = os.path.relpath(root, path)
for filename in files:
if not filename.endswith('.json'):
continue
if lang not in list_locales.keys():
list_locales[lang] = {}
if filename not in list_locales[lang].keys():
list_locales[lang][filename] = []
list_locales[lang][filename].append(path)
return list_locales
def _concat_translation_paths(dict_a, dict_b={}):
"""
Combines two of the dictionaries returned for _find_translations
concatenating the array of paths when found
"""
out_dict = dict.copy(dict_a)
for lang in dict_b.keys():
for filename in dict_b[lang].keys():
if lang in out_dict.keys() and filename in out_dict[lang].keys():
out_dict[lang][filename].extend(dict_b[lang][filename])
else:
out_dict[lang][filename] = dict_b[lang][filename]
return out_dict
@task
def merge_locales():
"""
Merge the translations from the core, plugins and project in that order
into a cleared www/locales directory
"""
root, project, src = _get_source()
out_dir = os.path.join(src, 'www', 'locales')
core_locales_dir = os.path.join(src, 'locales')
project_locales_dir = os.path.join(project, 'src', 'locales')
plugins_dir = os.path.join(root, plugins)
# clear the locales output directory
with settings(warn_only=True):
local('rm -r {0}/*'.format(out_dir))
# find the translations in for core, plugins and project
core_files = _find_translations(core_locales_dir)
project_files = _find_translations(project_locales_dir)
plugin_files = []
for plugin in os.listdir(plugins_dir):
plugin_dir = os.path.join(plugins_dir, plugin)
if os.path.isdir(plugin_dir):
plugin_locales_dir = os.path.join(plugin_dir, 'src', 'locales')
plugin_files.append(_find_translations(plugin_locales_dir))
# merge the list of paths
locales_paths = _concat_translation_paths(core_files)
for plugin_locales in plugin_files:
locales_paths = _concat_translation_paths(locales_paths,
plugin_locales)
locales_paths = _concat_translation_paths(locales_paths, project_files)
# merge and write the translations
catalog = {'namespaces': [], 'languages': []}
for lang in locales_paths.iterkeys():
catalog['languages'].append(lang)
for filename, paths in locales_paths[lang].iteritems():
out = {}
namespace = re.sub('.json$', '', filename)
for path in paths:
with open(os.path.join(path, lang, filename), 'r') as f:
out.update(json.loads(f.read()))
lang_path = os.path.join(out_dir, lang)
if not os.path.exists(lang_path):
os.mkdir(lang_path)
with codecs.open(os.path.join(lang_path, filename), 'w', 'utf8') as f:
f.write(json.dumps(out, ensure_ascii=False, indent=2))
if namespace not in catalog['namespaces']:
catalog['namespaces'].append(namespace)
# Write the catalog with the languages and namespaces
with codecs.open(os.path.join(out_dir, 'catalog.json'), 'w', 'utf8') as f:
f.write(json.dumps(catalog))
@task
def release_android(
beta='True',
overwrite='False',
email=False,
fetch_config='True'):
"""
Release android version of fieldtrip app
beta - BETA release or LIVE?
overwrite - should current apk file be overwitten?
email - send email to ftgb mailing list?
fetch_config - should remote config be fetched?
"""
_check_commands(['cordova', 'ant', 'zipalign'])
root, proj_home, src_dir = _get_source()
if _str2bool(fetch_config):
_check_config()
runtime = _get_runtime()[1]
# generate html for android
generate_html(cordova=True)
update_app('android')
file_prefix = 'android'
# get app version
theme_src = os.sep.join((proj_home, 'theme'))
with open(os.path.join(theme_src, 'project.json'), 'r') as f:
pjson = json.load(f)
versions = pjson["versions"]
plugins = pjson["plugins"]
with lcd(runtime):
android_runtime = os.path.join(runtime, 'platforms', 'android')
apkdir = os.path.join(android_runtime, 'build', 'outputs', 'apk')
# do the build
if _str2bool(beta):
file_name = '{0}-debug.apk'.format(file_prefix)
apkfile = os.path.join(apkdir, file_name)
local('cordova build android --debug')
else:
# check plugin and project versions
if versions['core'] == 'master':
print "\nCan't release with untagged core repository: {0}".format(
versions['core'])
exit(1)
if not _is_in_branch(proj_home, versions['project']):
print "To release the project must be tagged and checked out with release version. project: {0}".format(versions['project'])
exit(1)
for cplug in plugins['cordova']:
if len(cplug.split('@')) != 2 and len(cplug.split('#')) != 2:
print "Must release with a versioned cordova plugin: {0}".format(cplug)
exit(1)
for name, version in plugins['fieldtrip'].items():
if version[-3:] == 'git':
print "Must release with versioned fieldtrip plugin: {0}".format(name)
exit(1)
file_name = '{0}.apk'.format(file_prefix)
apkfile = os.path.join(apkdir, file_name)
local('cordova build android --release')
# sign the application
unsigned_apkfile = os.path.join(apkdir, '{0}-release-unsigned.apk'.format(file_prefix))
signed_apkfile = os.path.join(apkdir, '{0}-release-signed.apk'.format(file_prefix))
local('cp {0} {1}'.format(unsigned_apkfile, signed_apkfile))
keystore_name = _config('keystore_name', section='release')
keystore = os.path.join(_config('keystore_location', section='release'),
'{0}.keystore'.format(keystore_name))
if keystore.find('@') != -1:
# if keystore is stored remotely copy it locally
ks_name = keystore[keystore.rfind('/') + 1: len(keystore)]
keystore_local = os.sep.join((src_dir, 'etc', ks_name))
local('scp {0} {1}'.format(keystore, keystore_local))
keystore = keystore_local
local('jarsigner -verbose -sigalg MD5withRSA -digestalg SHA1 -keystore {0} {1} {2}'.format(
keystore,
signed_apkfile,
keystore_name))
# align the apk file
local('zipalign -v 4 {0} {1}'.format(signed_apkfile, apkfile))
# copy apk to servers, if defined
env.hosts = _config('hosts', section='release').split(',')
version = versions['project']
if len(env.hosts) > 0:
execute('_copy_apk_to_servers',
version,
apkfile,
file_name,
_str2bool(overwrite))
# inform of release
if email:
_email(file_name, version, beta)
@task
def release_ios():
"""
Release ios version of fieldtrip app
"""
# TODO
print 'Waiting for someone to do this.'
@task
def stats_usage(year='2015'):
"""
Print out android app start stats by version.
year - collate stats in this year
"""
totals = {}
versions = ['2.3', '4.0', '4.1', '4.2', '4.3', '4.4', '5.0']
for version in versions:
#fetch_month(version)
pattern = 'splash.+Android {0}'.format(version)
totals[version] = _stats_monthly(year, pattern)
for version, months in totals.iteritems():
print version,':'
print 'Month'.ljust(10), 'Unique'.ljust(10), 'Total'.ljust(10)
for i, month in months.iteritems():
tcount = 0
for ip, vals in month.iteritems():
tcount = tcount + vals['count']
print datetime.date(2014, i, 1).strftime('%B').ljust(10), str(len(month)).ljust(10), str(tcount).ljust(10)
print '\n'
@task
def stats_export(year='2015'):
"""
Print authoring tool export stats.
year - collate stats in this year
"""
totals = {}
types = ['geojson', 'kml', 'csv']
for type in types:
pattern = 'records/dropbox/.+filter=format&frmt={0}'.format(type)
totals[type] = _stats_monthly(year, pattern)
for type, months in totals.iteritems():
print type,':'
print 'Month'.ljust(10), 'Unique'.ljust(10), 'Total'.ljust(10)
for i, month in months.iteritems():
tcount = 0
for ip, vals in month.iteritems():
tcount = tcount + vals['count']
print datetime.date(2014, i, 1).strftime('%B').ljust(10), str(len(month)).ljust(10), str(tcount).ljust(10)
print '\n'
@task
def stats_uploaded_records(year='2015'):
"""
Based in the access logs reports the records posted per month
"""
pattern = 'POST.*?\/pcapi\/records\/dropbox\/.*?\/([^\.]+) HTTP'
months = _stats_monthly(year, pattern)
for month, ips in months.iteritems():
tcount = 0
for ip, vals in ips.iteritems():
tcount = tcount + vals['count']
print datetime.date(int(year), month, 1).strftime('%B').ljust(10), str(tcount).ljust(10)
@task
def update_app(platform='android'):
"""
Update the platform with latest configuration (android by default)
"""
proj_home = _get_source()[1]
runtime = _get_runtime()[1]
src = os.path.join(proj_home, 'platforms', platform, '')
dst = os.path.join(runtime, 'platforms', platform, '')
if os.path.exists(src):
if os.path.exists(dst):
local('cp -rf {0}* {1}'.format(src, dst))
else: