forked from dawidd6/action-download-artifact
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
370 lines (330 loc) · 13.9 KB
/
Copy pathmain.js
File metadata and controls
370 lines (330 loc) · 13.9 KB
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
const core = require('@actions/core')
const filesize = require('filesize')
const fs = require('fs')
const github = require('@actions/github')
const https = require('follow-redirects').https;
const pathname = require('path')
const url = require('url')
const yauzl = require("yauzl");
const util = require('node:util');
const stream = require( 'node:stream');
let got = null;
async function DownloadFile(url, headers, savePath) {
if (got == null){
let gImport = await import('got');
got = gImport.got;
}
const pipeline = util.promisify(stream.pipeline);
const options = {
headers: headers
};
await pipeline(
got.stream(url,options),
fs.createWriteStream(savePath)
);
}
async function downloadAction(name, path) {
const artifactClient = artifact.create()
const downloadOptions = {
createArtifactFolder: false
}
const downloadResponse = await artifactClient.downloadArtifact(
name,
path,
downloadOptions
)
core.setOutput("found_artifact", true)
}
async function main() {
try {
const token = core.getInput("github_token", { required: true })
const [owner, repo] = core.getInput("repo", { required: true }).split("/")
const path = core.getInput("path", { required: true })
const name = core.getInput("name")
const nameIsRegExp = core.getBooleanInput("name_is_regexp")
const skipUnpack = core.getBooleanInput("skip_unpack")
const ifNoArtifactFound = core.getInput("if_no_artifact_found")
let workflow = core.getInput("workflow")
let workflowConclusion = core.getInput("workflow_conclusion")
let pr = core.getInput("pr")
let commit = core.getInput("commit")
let branch = core.getInput("branch")
let event = core.getInput("event")
let runID = core.getInput("run_id")
let runNumber = core.getInput("run_number")
let checkArtifacts = core.getBooleanInput("check_artifacts")
let searchArtifacts = core.getBooleanInput("search_artifacts")
const allowForks = core.getBooleanInput("allow_forks")
let ensureLatest = core.getBooleanInput("ensure_latest")
let dryRun = core.getInput("dry_run")
const client = github.getOctokit(token)
core.info(`==> Repository: ${owner}/${repo}`)
core.info(`==> Artifact name: ${name}`)
core.info(`==> Local path: ${path}`)
if (!workflow) {
const run = await client.rest.actions.getWorkflowRun({
owner: owner,
repo: repo,
run_id: runID || github.context.runId,
})
workflow = run.data.workflow_id
}
core.info(`==> Workflow name: ${workflow}`)
core.info(`==> Workflow conclusion: ${workflowConclusion}`)
const uniqueInputSets = [
{
"pr": pr,
"commit": commit,
"branch": branch,
"run_id": runID
}
]
uniqueInputSets.forEach((inputSet) => {
const inputs = Object.values(inputSet)
const providedInputs = inputs.filter(input => input !== '')
if (providedInputs.length > 1) {
throw new Error(`The following inputs cannot be used together: ${Object.keys(inputSet).join(", ")}`)
}
})
if (pr) {
core.info(`==> PR: ${pr}`)
const pull = await client.rest.pulls.get({
owner: owner,
repo: repo,
pull_number: pr,
})
commit = pull.data.head.sha
//branch = pull.data.head.ref
}
if (commit) {
core.info(`==> Commit: ${commit}`)
}
if (branch) {
branch = branch.replace(/^refs\/heads\//, "")
core.info(`==> Branch: ${branch}`)
}
if (event) {
core.info(`==> Event: ${event}`)
}
if (runNumber) {
core.info(`==> Run number: ${runNumber}`)
}
core.info(`==> Allow forks: ${allowForks}`)
if (!runID) {
// Note that the runs are returned (roughly) in most recent first order. However, for repos
// with lots and lots of runs, this may not always be the case (hence why we need ensureLatest).
for await (const runs of client.paginate.iterator(client.rest.actions.listWorkflowRunsForRepo, {
owner: owner,
repo: repo,
workflow_id: workflow,
...(branch ? { branch } : {}),
...(event ? { event } : {}),
...(commit ? { head_sha: commit } : {}),
}
)) {
let runCreatedAt = null;
for (const run of runs.data) {
if (runNumber && run.run_number != runNumber) {
continue
}
if (workflowConclusion && (workflowConclusion != run.conclusion && workflowConclusion != run.status)) {
continue
}
if (!allowForks && run.head_repository.full_name !== `${owner}/${repo}`) {
core.info(`==> Skipping run from fork: ${run.head_repository.full_name}`)
continue
}
if (checkArtifacts || searchArtifacts) {
let artifacts = await client.paginate(client.rest.actions.listWorkflowRunArtifacts, {
owner: owner,
repo: repo,
run_id: run.id,
})
if (!artifacts || artifacts.length == 0) {
continue
}
if (searchArtifacts) {
const artifact = artifacts.find((artifact) => {
if (nameIsRegExp) {
return artifact.name.match(name) !== null
}
return artifact.name == name
})
if (!artifact) {
continue
}
}
}
if (ensureLatest) {
if (runCreatedAt === null || ((new Date(run.created_at)) > (new Date(runCreatedAt)))) {
runID = run.id;
runCreatedAt = run.created_at;
}
continue;
}
runID = run.id
runCreatedAt = run.created_at;
break
}
if (runID) {
core.info(`==> (found) Run ID: ${runID}`)
core.info(`==> (found) Run date: ${runCreatedAt}`)
break
}
}
}
if (!runID) {
if (workflowConclusion && (workflowConclusion != 'in_progress')) {
return setExitMessage(ifNoArtifactFound, "no matching workflow run found with any artifacts?")
}
try {
return await downloadAction(name, path)
} catch (error) {
return setExitMessage(ifNoArtifactFound, "no matching artifact in this workflow?")
}
}
let artifacts = await client.paginate(client.rest.actions.listWorkflowRunArtifacts, {
owner: owner,
repo: repo,
run_id: runID,
})
// One artifact if 'name' input is specified, one or more if `name` is a regular expression, all otherwise.
if (name) {
filtered = artifacts.filter((artifact) => {
if (nameIsRegExp) {
return artifact.name.match(name) !== null
}
return artifact.name == name
})
if (filtered.length == 0) {
core.info(`==> (not found) Artifact: ${name}`)
core.info('==> Found the following artifacts instead:')
for (const artifact of artifacts) {
core.info(`\t==> (found) Artifact: ${artifact.name}`)
}
}
artifacts = filtered
}
core.setOutput("artifacts", artifacts)
if (dryRun) {
if (artifacts.length == 0) {
core.setOutput("dry_run", false)
core.setOutput("found_artifact", false)
return
} else {
core.setOutput("dry_run", true)
core.setOutput("found_artifact", true)
core.info('==> (found) Artifacts')
for (const artifact of artifacts) {
const size = filesize(artifact.size_in_bytes, { base: 10 })
core.info(`\t==> Artifact:`)
core.info(`\t==> ID: ${artifact.id}`)
core.info(`\t==> Name: ${artifact.name}`)
core.info(`\t==> Size: ${size}`)
}
return
}
}
if (artifacts.length == 0) {
return setExitMessage(ifNoArtifactFound, "no artifacts found")
}
core.setOutput("found_artifact", true)
for (const artifact of artifacts) {
core.info(`==> Artifact: ${artifact.id}`)
const size = filesize(artifact.size_in_bytes, { base: 10 })
core.info(`==> Downloading: ${artifact.name}.zip (${size})`)
let saveTo = `${pathname.join(path, artifact.name)}.zip`
if (!fs.existsSync(path)) {
fs.mkdirSync(path, { recursive: true })
}
let request = client.rest.actions.downloadArtifact.endpoint({
owner: owner,
repo: repo,
artifact_id: artifact.id,
archive_format: "zip",
});
await DownloadFile(request.url, {...request.headers, Authorization: `token ${token}`}, saveTo);
core.info("Download Completed");
if (skipUnpack) {
continue
}
const dir = name ? path : pathname.join(path, artifact.name)
if (!fs.existsSync(dir)) {
fs.mkdirSync(dir, { recursive: true })
}
core.startGroup(`==> Extracting: ${artifact.name}.zip`)
yauzl.open(saveTo, {lazyEntries: true}, function(err, zipfile) {
if (err) throw err;
zipfile.readEntry();
zipfile.on("entry", function(entry) {
const filepath = pathname.resolve(pathname.join(dir, entry.fileName))
// Make sure the zip is properly crafted.
const relative = pathname.relative(dir, filepath);
const isInPath = relative && !relative.startsWith('..') && !pathname.isAbsolute(relative);
if (!isInPath) {
core.info(` ==> Path ${filepath} resolves outside of ${dir} skipping`)
zipfile.readEntry();
}
// The zip may contain the directory names for newly created files.
if (/\/$/.test(entry.fileName)) {
// Directory file names end with '/'.
// Note that entries for directories themselves are optional.
// An entry's fileName implicitly requires its parent directories to exist.
if (!fs.existsSync(filepath)) {
core.info(` ==> Creating: ${filepath}`)
fs.mkdirSync(filepath, { recursive: true })
}
zipfile.readEntry();
} else {
// This is a file entry. Attempt to extract it.
core.info(` ==> Extracting: ${entry.fileName}`)
// Ensure the parent folder exists
let dirName = pathname.dirname(filepath)
if (!fs.existsSync(dirName)) {
core.info(` ==> Creating: ${dirName}`)
fs.mkdirSync(dirName, { recursive: true })
}
zipfile.openReadStream(entry, (err, readStream) => {
if (err) throw err;
readStream.on("end", () => {
zipfile.readEntry();
});
readStream.on("error", (err) => {
throw new Error(`Failed to extract ${entry.fileName}: ${err}`)
});
const file = fs.createWriteStream(filepath);
readStream.pipe(file);
file.on("finish", () => {
file.close();
});
file.on("error", (err) => {
throw new Error(`Failed to extract ${entry.fileName}: ${err}`)
});
});
}
});
});
core.endGroup()
}
} catch (error) {
core.setOutput("found_artifact", false)
core.setOutput("error_message", error.message)
core.setFailed(error.message)
}
function setExitMessage(ifNoArtifactFound, message) {
core.setOutput("found_artifact", false)
switch (ifNoArtifactFound) {
case "fail":
core.setFailed(message)
break
case "warn":
core.warning(message)
break
case "ignore":
default:
core.info(message)
break
}
}
}
main()