forked from specify/webportal-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make_toplevel_index.py
64 lines (55 loc) · 2.1 KB
/
make_toplevel_index.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
"""/* Copyright (C) 2020, Specify Collections Consortium
*
* Specify Collections Consortium, Biodiversity Institute, University of Kansas,
* 1345 Jayhawk Boulevard, Lawrence, Kansas, 66045, USA, [email protected]
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/"""
import sys
import json
import os
from xml.etree import ElementTree
from datetime import datetime
def splitall(path):
allparts = []
while 1:
parts = os.path.split(path)
if parts[0] == path: # sentinel for absolute paths
allparts.insert(0, parts[0])
break
elif parts[1] == path: # sentinel for relative paths
allparts.insert(0, parts[1])
break
else:
path = parts[0]
allparts.insert(0, parts[1])
return allparts
skel = ElementTree.parse(sys.argv[1])
settings_files = sys.argv[2:]
collections = skel.find('.//ul[@id="collections"]')
for elem in collections.findall('./*'):
collections.remove(elem)
for settings_file in settings_files:
with open(settings_file) as f:
settings = json.load(f)
core_dir = splitall(settings_file)[1]
core_name = settings[0]['collectionName'] or core_dir
li = ElementTree.SubElement(collections, 'li')
a = ElementTree.SubElement(li, 'a')
a.set('href', core_dir)
a.text = core_name
update_time = skel.find('.//span[@id="update-time"]')
update_time.text = datetime.now().isoformat()
skel.write(sys.stdout)