UNPKG

aws-delivlib

Version:

A fabulous library for defining continuous pipelines for building, testing and releasing code libraries.

138 lines (136 loc) 6.36 kB
// @ts-expect-error import BottleneckLight from "bottleneck/light"; import { VERSION } from "./version"; import { wrapRequest } from "./wrap-request"; import triggersNotificationPaths from "./generated/triggers-notification-paths"; import { routeMatcher } from "./route-matcher"; // Workaround to allow tests to directly access the triggersNotification function. const regex = routeMatcher(triggersNotificationPaths); const triggersNotification = regex.test.bind(regex); const groups = {}; // @ts-expect-error const createGroups = function (Bottleneck, common) { groups.global = new Bottleneck.Group({ id: "octokit-global", maxConcurrent: 10, ...common, }); groups.search = new Bottleneck.Group({ id: "octokit-search", maxConcurrent: 1, minTime: 2000, ...common, }); groups.write = new Bottleneck.Group({ id: "octokit-write", maxConcurrent: 1, minTime: 1000, ...common, }); groups.notifications = new Bottleneck.Group({ id: "octokit-notifications", maxConcurrent: 1, minTime: 3000, ...common, }); }; export function throttling(octokit, octokitOptions) { const { enabled = true, Bottleneck = BottleneckLight, id = "no-id", timeout = 1000 * 60 * 2, // Redis TTL: 2 minutes connection, } = octokitOptions.throttle || {}; if (!enabled) { return {}; } const common = { connection, timeout }; if (groups.global == null) { createGroups(Bottleneck, common); } if (octokitOptions.throttle && octokitOptions.throttle.minimalSecondaryRateRetryAfter) { octokit.log.warn("[@octokit/plugin-throttling] `options.throttle.minimalSecondaryRateRetryAfter` is deprecated, please use `options.throttle.fallbackSecondaryRateRetryAfter` instead"); octokitOptions.throttle.fallbackSecondaryRateRetryAfter = octokitOptions.throttle.minimalSecondaryRateRetryAfter; delete octokitOptions.throttle.minimalSecondaryRateRetryAfter; } if (octokitOptions.throttle && octokitOptions.throttle.onAbuseLimit) { octokit.log.warn("[@octokit/plugin-throttling] `onAbuseLimit()` is deprecated and will be removed in a future release of `@octokit/plugin-throttling`, please use the `onSecondaryRateLimit` handler instead"); // @ts-ignore types don't allow for both properties to be set octokitOptions.throttle.onSecondaryRateLimit = octokitOptions.throttle.onAbuseLimit; // @ts-ignore delete octokitOptions.throttle.onAbuseLimit; } const state = Object.assign({ clustering: connection != null, triggersNotification, fallbackSecondaryRateRetryAfter: 60, retryAfterBaseValue: 1000, retryLimiter: new Bottleneck(), id, ...groups, }, octokitOptions.throttle); if (typeof state.onSecondaryRateLimit !== "function" || typeof state.onRateLimit !== "function") { throw new Error(`octokit/plugin-throttling error: You must pass the onSecondaryRateLimit and onRateLimit error handlers. See https://octokit.github.io/rest.js/#throttling const octokit = new Octokit({ throttle: { onSecondaryRateLimit: (retryAfter, options) => {/* ... */}, onRateLimit: (retryAfter, options) => {/* ... */} } }) `); } const events = {}; const emitter = new Bottleneck.Events(events); // @ts-expect-error events.on("secondary-limit", state.onSecondaryRateLimit); // @ts-expect-error events.on("rate-limit", state.onRateLimit); // @ts-expect-error events.on("error", (e) => octokit.log.warn("Error in throttling-plugin limit handler", e)); // @ts-expect-error state.retryLimiter.on("failed", async function (error, info) { const [state, request, options] = info.args; const { pathname } = new URL(options.url, "http://github.test"); const shouldRetryGraphQL = pathname.startsWith("/graphql") && error.status !== 401; if (!(shouldRetryGraphQL || error.status === 403)) { return; } const retryCount = ~~request.retryCount; request.retryCount = retryCount; // backward compatibility options.request.retryCount = retryCount; const { wantRetry, retryAfter = 0 } = await (async function () { if (/\bsecondary rate\b/i.test(error.message)) { // The user has hit the secondary rate limit. (REST and GraphQL) // https://docs.github.com/en/rest/overview/resources-in-the-rest-api#secondary-rate-limits // The Retry-After header can sometimes be blank when hitting a secondary rate limit, // but is always present after 2-3s, so make sure to set `retryAfter` to at least 5s by default. const retryAfter = Number(error.response.headers["retry-after"]) || state.fallbackSecondaryRateRetryAfter; const wantRetry = await emitter.trigger("secondary-limit", retryAfter, options, octokit, retryCount); return { wantRetry, retryAfter }; } if (error.response.headers != null && error.response.headers["x-ratelimit-remaining"] === "0") { // The user has used all their allowed calls for the current time period (REST and GraphQL) // https://docs.github.com/en/rest/reference/rate-limit (REST) // https://docs.github.com/en/graphql/overview/resource-limitations#rate-limit (GraphQL) const rateLimitReset = new Date(~~error.response.headers["x-ratelimit-reset"] * 1000).getTime(); const retryAfter = Math.max(Math.ceil((rateLimitReset - Date.now()) / 1000), 0); const wantRetry = await emitter.trigger("rate-limit", retryAfter, options, octokit, retryCount); return { wantRetry, retryAfter }; } return {}; })(); if (wantRetry) { request.retryCount++; return retryAfter * state.retryAfterBaseValue; } }); octokit.hook.wrap("request", wrapRequest.bind(null, state)); return {}; } throttling.VERSION = VERSION; throttling.triggersNotification = triggersNotification;