mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2026-01-18 22:22:57 +08:00
126 lines
4.1 KiB
TypeScript
126 lines
4.1 KiB
TypeScript
import {getOctokit} from '@actions/github'
|
|
import {retry} from '@octokit/plugin-retry'
|
|
import * as core from '@actions/core'
|
|
import {OctokitOptions} from '@octokit/core/dist-types/types'
|
|
import {defaults as defaultGitHubOptions} from '@actions/github/lib/utils'
|
|
import {getRetryOptions} from './retry-options'
|
|
import {requestLog} from '@octokit/plugin-request-log'
|
|
import {GetArtifactResponse} from '../shared/interfaces'
|
|
import {getBackendIdsFromToken} from '../shared/util'
|
|
import {getUserAgentString} from '../shared/user-agent'
|
|
import {internalArtifactTwirpClient} from '../shared/artifact-twirp-client'
|
|
import {ListArtifactsRequest, StringValue, Timestamp} from '../../generated'
|
|
import {ArtifactNotFoundError, InvalidResponseError} from '../shared/errors'
|
|
|
|
export async function getArtifactPublic(
|
|
artifactName: string,
|
|
workflowRunId: number,
|
|
repositoryOwner: string,
|
|
repositoryName: string,
|
|
token: string
|
|
): Promise<GetArtifactResponse> {
|
|
const [retryOpts, requestOpts] = getRetryOptions(defaultGitHubOptions)
|
|
|
|
const opts: OctokitOptions = {
|
|
log: undefined,
|
|
userAgent: getUserAgentString(),
|
|
previews: undefined,
|
|
retry: retryOpts,
|
|
request: requestOpts
|
|
}
|
|
|
|
const github = getOctokit(token, opts, retry, requestLog)
|
|
|
|
const getArtifactResp = await github.request(
|
|
'GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts{?name}',
|
|
{
|
|
owner: repositoryOwner,
|
|
repo: repositoryName,
|
|
run_id: workflowRunId,
|
|
name: artifactName
|
|
}
|
|
)
|
|
|
|
if (getArtifactResp.status !== 200) {
|
|
throw new InvalidResponseError(
|
|
`Invalid response from GitHub API: ${getArtifactResp.status} (${getArtifactResp?.headers?.['x-github-request-id']})`
|
|
)
|
|
}
|
|
|
|
if (getArtifactResp.data.artifacts.length === 0) {
|
|
throw new ArtifactNotFoundError(
|
|
`Artifact not found for name: ${artifactName}
|
|
Please ensure that your artifact is not expired and the artifact was uploaded using a compatible version of toolkit/upload-artifact.
|
|
For more information, visit the GitHub Artifacts FAQ: https://github.com/actions/toolkit/blob/main/packages/artifact/docs/faq.md`
|
|
)
|
|
}
|
|
|
|
let artifact = getArtifactResp.data.artifacts[0]
|
|
if (getArtifactResp.data.artifacts.length > 1) {
|
|
artifact = getArtifactResp.data.artifacts.sort((a, b) => b.id - a.id)[0]
|
|
core.debug(
|
|
`More than one artifact found for a single name, returning newest (id: ${artifact.id})`
|
|
)
|
|
}
|
|
|
|
return {
|
|
artifact: {
|
|
name: artifact.name,
|
|
id: artifact.id,
|
|
size: artifact.size_in_bytes,
|
|
createdAt: artifact.created_at
|
|
? new Date(artifact.created_at)
|
|
: undefined,
|
|
digest: artifact.digest
|
|
}
|
|
}
|
|
}
|
|
|
|
export async function getArtifactInternal(
|
|
artifactName: string
|
|
): Promise<GetArtifactResponse> {
|
|
const artifactClient = internalArtifactTwirpClient()
|
|
|
|
const {workflowRunBackendId, workflowJobRunBackendId} =
|
|
getBackendIdsFromToken()
|
|
|
|
const req: ListArtifactsRequest = {
|
|
workflowRunBackendId,
|
|
workflowJobRunBackendId,
|
|
nameFilter: StringValue.create({value: artifactName})
|
|
}
|
|
|
|
const res = await artifactClient.ListArtifacts(req)
|
|
|
|
if (res.artifacts.length === 0) {
|
|
throw new ArtifactNotFoundError(
|
|
`Artifact not found for name: ${artifactName}
|
|
Please ensure that your artifact is not expired and the artifact was uploaded using a compatible version of toolkit/upload-artifact.
|
|
For more information, visit the GitHub Artifacts FAQ: https://github.com/actions/toolkit/blob/main/packages/artifact/docs/faq.md`
|
|
)
|
|
}
|
|
|
|
let artifact = res.artifacts[0]
|
|
if (res.artifacts.length > 1) {
|
|
artifact = res.artifacts.sort(
|
|
(a, b) => Number(b.databaseId) - Number(a.databaseId)
|
|
)[0]
|
|
|
|
core.debug(
|
|
`More than one artifact found for a single name, returning newest (id: ${artifact.databaseId})`
|
|
)
|
|
}
|
|
|
|
return {
|
|
artifact: {
|
|
name: artifact.name,
|
|
id: Number(artifact.databaseId),
|
|
size: Number(artifact.size),
|
|
createdAt: artifact.createdAt
|
|
? Timestamp.toDate(artifact.createdAt)
|
|
: undefined,
|
|
digest: artifact.digest?.value
|
|
}
|
|
}
|
|
}
|