Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/src/api-client.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
71 lines (58 sloc)
2.01 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as path from "path"; | |
import * as githubUtils from "@actions/github/lib/utils"; | |
import * as retry from "@octokit/plugin-retry"; | |
import consoleLogLevel from "console-log-level"; | |
import { getRequiredInput } from "./actions-util"; | |
import { getMode, getRequiredEnvParam } from "./util"; | |
// eslint-disable-next-line import/no-commonjs | |
const pkg = require("../package.json"); | |
export enum DisallowedAPIVersionReason { | |
ACTION_TOO_OLD, | |
ACTION_TOO_NEW, | |
} | |
export type GitHubApiCombinedDetails = GitHubApiDetails & | |
GitHubApiExternalRepoDetails; | |
export interface GitHubApiDetails { | |
auth: string; | |
url: string; | |
} | |
export interface GitHubApiExternalRepoDetails { | |
externalRepoAuth?: string; | |
url: string; | |
} | |
export const getApiClient = function ( | |
apiDetails: GitHubApiCombinedDetails, | |
{ allowExternal = false } = {} | |
) { | |
const auth = | |
(allowExternal && apiDetails.externalRepoAuth) || apiDetails.auth; | |
const retryingOctokit = githubUtils.GitHub.plugin(retry.retry); | |
return new retryingOctokit( | |
githubUtils.getOctokitOptions(auth, { | |
baseUrl: getApiUrl(apiDetails.url), | |
userAgent: `CodeQL-${getMode()}/${pkg.version}`, | |
log: consoleLogLevel({ level: "debug" }), | |
}) | |
); | |
}; | |
function getApiUrl(githubUrl: string): string { | |
const url = new URL(githubUrl); | |
// If we detect this is trying to connect to github.com | |
// then return with a fixed canonical URL. | |
if (url.hostname === "github.com" || url.hostname === "api.github.com") { | |
return "https://api.github.com"; | |
} | |
// Add the /api/v3 API prefix | |
url.pathname = path.join(url.pathname, "api", "v3"); | |
return url.toString(); | |
} | |
// Temporary function to aid in the transition to running on and off of github actions. | |
// Once all code has been converted this function should be removed or made canonical | |
// and called only from the action entrypoints. | |
export function getActionsApiClient() { | |
const apiDetails = { | |
auth: getRequiredInput("token"), | |
url: getRequiredEnvParam("GITHUB_SERVER_URL"), | |
}; | |
return getApiClient(apiDetails); | |
} |