-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathget_artifacts.py
executable file
·352 lines (275 loc) · 10.5 KB
/
get_artifacts.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
#!/usr/bin/env python3
import fnmatch
import hashlib
import os
import pathlib
import shutil
import sys
import tempfile
import time
from datetime import datetime, timedelta
from zipfile import ZipFile
import requests
here = os.path.abspath(os.path.dirname(__file__))
repo_name = os.environ.get("REPO_NAME", "splice-experiment-runs")
################################################################################
# Helper Functions
################################################################################
def get_envar(name):
"""
Given a name, return the corresponding environment variable. Exit if not
defined, as using this function indicates the envar is required.
Parameters:
name (str): the name of the environment variable
"""
value = os.environ.get(name)
if not value:
sys.exit("%s is required." % name)
return value
def abort_if_fail(response, reason):
"""
If PASS_ON_ERROR, don't exit. Otherwise exit with an error and print
the reason.
Parameters:
response (requests.Response) : an unparsed response from requests
reason (str) : a message to print to the user for fail.
"""
message = "%s: %s: %s\n %s" % (
reason,
response.status_code,
response.reason,
response.json(),
)
if os.environ.get("PASS_ON_ERROR"):
print("Error, but PASS_ON_ERROR is set, continuing: %s" % message)
else:
sys.exit(message)
def set_env(name, value):
"""
Helper function to echo a key/value pair to the environement file
Parameters:
name (str) : the name of the environment variable
value (str) : the value to write to file
"""
environment_file_path = os.environ.get("GITHUB_ENV")
with open(environment_file_path, "a") as environment_file:
environment_file.write("%s=%s" % (name, value))
def get_file_hash(filepath, algorithm="sha256"):
"""return an md5 hash of the file based on a criteria level. This
is intended to give the file a reasonable version.
Parameters
==========
image_path: full path to the singularity image
"""
try:
hasher = getattr(hashlib, algorithm)()
except AttributeError:
sys.exit("%s is an invalid algorithm." % algorithm)
with open(filepath, "rb") as f:
for chunk in iter(lambda: f.read(4096), b""):
hasher.update(chunk)
return hasher.hexdigest()
def get_creation_timestamp(filename):
"""
Get creation timestamp for a file
"""
filen = pathlib.Path(filename)
assert filen.exists()
return filen.stat().st_ctime
def get_size(filename):
filen = pathlib.Path(filename)
assert filen.exists()
return filen.stat().st_size
################################################################################
# Global Variables (we can't use GITHUB_ prefix)
################################################################################
API_VERSION = "v3"
BASE = "https://api.github.com"
# Github repository to check
repository = (
os.environ.get("INPUT_REPOSITORY") or os.environ.get("GITHUB_REPOSITORY")
) or "buildsi/splice-experiment-runs"
HEADERS = {
"Authorization": "token %s" % get_envar("GITHUB_TOKEN"),
"Accept": "application/vnd.github.%s+json;application/vnd.github.antiope-preview+json;application/vnd.github.shadow-cat-preview+json"
% API_VERSION,
}
# used to calculate if something is too old to parse
today = datetime.now()
# URLs
REPO_URL = "%s/repos/%s" % (BASE, repository)
def get_artifacts(repository, days=10, runid=None):
"""
Retrieve artifacts for a repository.
"""
# Check if the branch already has a pull request open
results = []
page = 1
ARTIFACTS_URL = "%s/actions/artifacts" % REPO_URL
if runid:
ARTIFACTS_URL = "%s/actions/runs/%s/artifacts" % (REPO_URL, runid)
while True:
params = {"per_page": 100, "page": page}
response = requests.get(ARTIFACTS_URL, params=params, headers=HEADERS)
print("Retrieving page %s for %s" % (page, ARTIFACTS_URL))
while response.status_code == 403:
print("API rate limit likely exceeded, sleeping for 10 minutes.")
time.sleep(600)
response = requests.get(ARTIFACTS_URL, params=params, headers=HEADERS)
if response.status_code != 200:
abort_if_fail(response, "Unable to retrieve artifacts")
response = response.json()
# We must break if found results > days old, otherwise we will continue
# and use up our API key!
artifacts = response["artifacts"]
if any([older_than(x, days) for x in artifacts]) and not runid:
print("Results are older than %s days, stopping query." % days)
# but still add the last set since we have them
results += artifacts
break
results += artifacts
# We are on the last page
count = len(response["artifacts"])
if count == 0:
break
page += 1
return results
def older_than(artifact, days=2):
"""
Determine if an artifact is older than days, return True/False
"""
start_date = today - timedelta(days=days)
created_at = artifact["created_at"]
created_timestamp = datetime.strptime(created_at, "%Y-%m-%dT%H:%M:%SZ")
diff = created_timestamp - start_date
# If the difference in days is negative, it was created before the start date
if diff.days < 0:
return True
return False
def recursive_find(base, pattern="*"):
for root, _, filenames in os.walk(base):
for filename in fnmatch.filter(filenames, pattern):
yield os.path.join(root, filename)
def stream_download(url, dest):
"""
stream download to file
"""
with requests.get(url, stream=True, headers=HEADERS) as r:
r.raise_for_status()
with open(dest, "wb") as f:
for chunk in r.iter_content(chunk_size=8192):
if chunk:
f.write(chunk)
if os.path.exists(dest):
return dest
def download_artifacts(artifacts, output, days):
"""
Extract artifacts to an output directory
"""
if not os.path.exists(output):
os.makedirs(output)
# Make cache output and results output
for subpath in ["results", "tests"]:
path = os.path.join(output, subpath)
if not os.path.exists(path):
os.makedirs(path)
for artifact in artifacts:
if artifact["expired"]:
print(
"Artifact %s from %s is expired."
% (artifact["name"], artifact["created_at"])
)
continue
# Is it within our number of days to check (a few might sneak through)
if days:
if older_than(artifact, days):
print(
"Artifact %s was created %s, more than %s days ago."
% (artifact["name"], artifact["created_at"], days)
)
continue
artifact_url = artifact["archive_download_url"]
# Create a temporary directory
tmp = tempfile.mkdtemp()
archive_path = os.path.join(tmp, "archive.zip")
extract_dir = os.path.join(tmp, "extracted")
# Make the extraction directory
if not os.path.exists(extract_dir):
os.makedirs(extract_dir)
# Don't download chonker -vs- artifacts
if "fedora" in artifact["name"] and "-vs-" not in artifact["name"]:
continue
print(f"Downloading {artifact_url}")
zip_file = stream_download(artifact_url, archive_path)
if not zip_file:
print("Unable to download artifact %s" % artifact["name"])
shutil.rmtree(tmp)
continue
# Read zipfile
zipfile = ZipFile(zip_file, mode="r")
zipfile.extractall(extract_dir)
is_test = False
if "fedora" not in artifact["name"]:
save_to = os.path.join(output, "tests")
is_test = True
# Fedora results will be prefixed with fedora
else:
save_to = os.path.join(output, "results")
# Loop through files, add those that aren't present
for filename in recursive_find(extract_dir):
# Split tests as splice-experiment-runs (or repo name)
relpath = filename.replace(tmp, "").strip(os.sep)
if is_test:
relpath = relpath.split(repo_name)[-1].strip(os.sep)
finalpath = os.path.join(save_to, relpath)
if "fedora" in artifact["name"] and "fedora" not in relpath:
continue
# If the file doesn't have size, don't add
size = get_size(filename)
if size == 0:
print("Result file %s has size 0, skipping." % relpath)
continue
# If it doesn't exist, add right away!
if not os.path.exists(finalpath):
print("Found new result file: %s" % relpath)
save_artifact(filename, finalpath)
# Otherwise compare by hash
else:
newhash = get_file_hash(filename)
oldhash = get_file_hash(finalpath)
# If they aren't equal, compare by date and add newer
if oldhash != newhash:
existing_timestamp = get_creation_timestamp(finalpath)
contender_timestamp = get_creation_timestamp(filename)
if contender_timestamp > existing_timestamp:
print("Found a newer result for %s" % relpath)
save_artifact(filename, finalpath)
# Cleanup the temporary directory
shutil.rmtree(tmp)
def save_artifact(source, destination):
"""
Save an artifact.
"""
destdir = os.path.dirname(destination)
if not os.path.exists(destdir):
os.makedirs(destdir)
if os.path.exists(destination):
os.remove(destination)
shutil.copyfile(source, destination)
def main(runid=None):
"""
main primarily parses environment variables to prepare for creation
"""
output = os.environ.get("INPUT_OUTPUT", os.path.join(here, "artifacts"))
# Number of days to go back (stick to max otherwise cannot run)
days = int(os.environ.get("INPUT_DAYS", 2))
# Retrieve artifacts
artifacts = get_artifacts(repository, days, runid)
# Download artifacts to output directory
download_artifacts(artifacts, output, days)
if __name__ == "__main__":
runid = None
if len(sys.argv) > 1:
runid = sys.argv[1]
print("Using runid %s" % runid)
main(runid)