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
|
#!/usr/bin/env python3
# Requires the following environment variables:
# SNAPSHOTS_BUCKET
# AWS_ACCESS_KEY_ID
# AWS_SECRET_ACCESS_KEY
import os
import re
import json
import boto3
import jinja2
from functools import cmp_to_key
bucket = os.getenv("SNAPSHOTS_BUCKET")
def make_link(s, f):
f = re.sub(r'\s+', '+', f)
return "https://s3.amazonaws.com/{0}/{1}".format(bucket, f)
def compare(l, r):
try:
regex = r'\-(\d+)$'
l_date = int(re.search(regex, l).group(1))
r_date = int(re.search(regex, r).group(1))
if l_date == r_date:
return 0
elif l_date > r_date:
return 1
else:
return -1
except:
return(-1)
s3 = boto3.client('s3')
object_listing = s3.list_objects_v2(Bucket=bucket, Prefix='snapshot/equuleus')
data = object_listing['Contents']
files = []
for f in data:
files.append(f['Key'])
snapshot_names = set(map(lambda s: re.sub(r'snapshot/equuleus/(.*?)/.*', r'\1', s), files))
snapshots = []
for name in snapshot_names:
if name == "snapshot/equuleus/":
continue
snapshot = {}
snapshot['name'] = name
snapshot['files'] = list(filter(lambda s: re.search(name, s), files))
snapshot_files = list(filter(lambda s: re.search(name, s), files))
snapshot_files = list(map(lambda f: {'name': os.path.basename(f).strip(), 'platform': os.path.basename(os.path.dirname(f)), 'link': make_link(name, f)}, snapshot_files))
# S3 listing sometimes returns dir names among file names... filter those out.
snapshot_files = list(filter(lambda f: f['name'] != "", snapshot_files))
snapshot['files'] = snapshot_files
snapshots.append(snapshot)
snapshots.sort(reverse=True, key=cmp_to_key(lambda l, r: compare(l["name"], r["name"])))
tmpl = jinja2.Template("""
{% for s in snapshots %}
<h3 id="{{s.name}}">{{s.name}}</h3>
<ul>
{% for f in s.files %}
<li><a href="{{f.link}}">{{f.name}} ({{f.platform}})</a></li>
{% endfor %}
</ul>
{% endfor %}
""")
print(tmpl.render(snapshots=snapshots))
|