mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 09:40:17 +08:00
I explicitly had to downgrade "@octokit/plugin-retry" to "^6.0.0". Other dependencies were upgraded.
82 lines
2.5 KiB
JavaScript
82 lines
2.5 KiB
JavaScript
// pkg/dist-src/index.js
|
|
import { Octokit } from "@octokit/core";
|
|
|
|
// pkg/dist-src/error-request.js
|
|
async function errorRequest(state, octokit, error, options) {
|
|
if (!error.request || !error.request.request) {
|
|
throw error;
|
|
}
|
|
if (error.status >= 400 && !state.doNotRetry.includes(error.status)) {
|
|
const retries = options.request.retries != null ? options.request.retries : state.retries;
|
|
const retryAfter = Math.pow((options.request.retryCount || 0) + 1, 2);
|
|
throw octokit.retry.retryRequest(error, retries, retryAfter);
|
|
}
|
|
throw error;
|
|
}
|
|
|
|
// pkg/dist-src/wrap-request.js
|
|
import Bottleneck from "bottleneck/light";
|
|
import { RequestError } from "@octokit/request-error";
|
|
async function wrapRequest(state, octokit, request, options) {
|
|
const limiter = new Bottleneck();
|
|
limiter.on("failed", function(error, info) {
|
|
const maxRetries = ~~error.request.request.retries;
|
|
const after = ~~error.request.request.retryAfter;
|
|
options.request.retryCount = info.retryCount + 1;
|
|
if (maxRetries > info.retryCount) {
|
|
return after * state.retryAfterBaseValue;
|
|
}
|
|
});
|
|
return limiter.schedule(
|
|
requestWithGraphqlErrorHandling.bind(null, state, octokit, request),
|
|
options
|
|
);
|
|
}
|
|
async function requestWithGraphqlErrorHandling(state, octokit, request, options) {
|
|
const response = await request(request, options);
|
|
if (response.data && response.data.errors && response.data.errors.length > 0 && /Something went wrong while executing your query/.test(
|
|
response.data.errors[0].message
|
|
)) {
|
|
const error = new RequestError(response.data.errors[0].message, 500, {
|
|
request: options,
|
|
response
|
|
});
|
|
return errorRequest(state, octokit, error, options);
|
|
}
|
|
return response;
|
|
}
|
|
|
|
// pkg/dist-src/index.js
|
|
var VERSION = "6.1.0";
|
|
function retry(octokit, octokitOptions) {
|
|
const state = Object.assign(
|
|
{
|
|
enabled: true,
|
|
retryAfterBaseValue: 1e3,
|
|
doNotRetry: [400, 401, 403, 404, 422, 451],
|
|
retries: 3
|
|
},
|
|
octokitOptions.retry
|
|
);
|
|
if (state.enabled) {
|
|
octokit.hook.error("request", errorRequest.bind(null, state, octokit));
|
|
octokit.hook.wrap("request", wrapRequest.bind(null, state, octokit));
|
|
}
|
|
return {
|
|
retry: {
|
|
retryRequest: (error, retries, retryAfter) => {
|
|
error.request.request = Object.assign({}, error.request.request, {
|
|
retries,
|
|
retryAfter
|
|
});
|
|
return error;
|
|
}
|
|
}
|
|
};
|
|
}
|
|
retry.VERSION = VERSION;
|
|
export {
|
|
VERSION,
|
|
retry
|
|
};
|