2024-08-14 22:09:51 +02:00
|
|
|
import * as core from '@actions/core'
|
|
|
|
import {Octokit as OctokitCore} from '@octokit/core'
|
2020-07-16 10:57:13 +02:00
|
|
|
import {paginateRest} from '@octokit/plugin-paginate-rest'
|
|
|
|
import {restEndpointMethods} from '@octokit/plugin-rest-endpoint-methods'
|
2024-08-14 22:09:51 +02:00
|
|
|
import {throttling} from '@octokit/plugin-throttling'
|
2023-04-05 01:41:18 +02:00
|
|
|
import {getProxyForUrl} from 'proxy-from-env'
|
2024-04-25 10:09:16 +02:00
|
|
|
import {ProxyAgent, fetch as undiciFetch} from 'undici'
|
2020-07-16 10:57:13 +02:00
|
|
|
export {RestEndpointMethodTypes} from '@octokit/plugin-rest-endpoint-methods'
|
2024-08-14 22:09:51 +02:00
|
|
|
// eslint-disable-next-line import/no-unresolved
|
2020-07-16 10:57:13 +02:00
|
|
|
export {OctokitOptions} from '@octokit/core/dist-types/types'
|
|
|
|
|
2024-08-14 22:09:51 +02:00
|
|
|
export const Octokit = OctokitCore.plugin(
|
2021-05-22 02:32:10 +02:00
|
|
|
paginateRest,
|
|
|
|
restEndpointMethods,
|
2024-08-14 22:09:51 +02:00
|
|
|
throttling,
|
2021-05-22 02:32:10 +02:00
|
|
|
autoProxyAgent
|
|
|
|
)
|
|
|
|
|
2024-08-14 22:09:51 +02:00
|
|
|
export const throttleOptions = {
|
|
|
|
onRateLimit: (retryAfter, options, _, retryCount) => {
|
|
|
|
core.debug(`Hit rate limit for request ${options.method} ${options.url}`)
|
|
|
|
// Retries twice for a total of three attempts
|
|
|
|
if (retryCount < 2) {
|
|
|
|
core.debug(`Retrying after ${retryAfter} seconds!`)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
},
|
2024-08-15 17:24:58 +02:00
|
|
|
onSecondaryRateLimit: (retryAfter, options) => {
|
2024-08-14 22:09:51 +02:00
|
|
|
core.warning(
|
|
|
|
`Hit secondary rate limit for request ${options.method} ${options.url}`
|
|
|
|
)
|
2024-08-15 17:24:58 +02:00
|
|
|
core.warning(`Requests may be retried after ${retryAfter} seconds.`)
|
2024-08-14 22:09:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-25 10:09:16 +02:00
|
|
|
const proxyFetch =
|
|
|
|
(proxyUrl: string): typeof undiciFetch =>
|
|
|
|
(url, opts) => {
|
|
|
|
return undiciFetch(url, {
|
|
|
|
...opts,
|
|
|
|
dispatcher: new ProxyAgent({
|
|
|
|
uri: proxyUrl
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-10-18 05:14:51 +02:00
|
|
|
// Octokit plugin to support the standard environment variables http_proxy, https_proxy and no_proxy
|
2024-08-14 22:09:51 +02:00
|
|
|
function autoProxyAgent(octokit: OctokitCore) {
|
2021-05-22 02:32:10 +02:00
|
|
|
octokit.hook.before('request', options => {
|
2023-04-05 01:41:18 +02:00
|
|
|
const proxy = getProxyForUrl(options.baseUrl)
|
|
|
|
if (proxy) {
|
2024-04-25 10:09:16 +02:00
|
|
|
options.request.fetch = proxyFetch(proxy)
|
2023-04-05 01:41:18 +02:00
|
|
|
}
|
2021-05-22 02:32:10 +02:00
|
|
|
})
|
|
|
|
}
|