mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 17:20:10 +08:00
This allows users to specify a different token for retrieving the codeql config from a different repository. Fixes https://github.com/github/advanced-security-field/issues/185
71 lines
2.0 KiB
TypeScript
71 lines
2.0 KiB
TypeScript
import * as path from "path";
|
|
|
|
import * as githubUtils from "@actions/github/lib/utils";
|
|
import consoleLogLevel from "console-log-level";
|
|
|
|
import { getRequiredEnvParam, getRequiredInput } from "./actions-util";
|
|
import { isLocalRun } from "./util";
|
|
|
|
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,
|
|
{ allowLocalRun = false, allowExternal = false } = {}
|
|
) {
|
|
if (isLocalRun() && !allowLocalRun) {
|
|
throw new Error("Invalid API call in local run");
|
|
}
|
|
|
|
const auth =
|
|
(allowExternal && apiDetails.externalRepoAuth) || apiDetails.auth;
|
|
return new githubUtils.GitHub(
|
|
githubUtils.getOctokitOptions(auth, {
|
|
baseUrl: getApiUrl(apiDetails.url),
|
|
userAgent: "CodeQL Action",
|
|
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(allowLocalRun = false) {
|
|
const apiDetails = {
|
|
auth: getRequiredInput("token"),
|
|
url: getRequiredEnvParam("GITHUB_SERVER_URL"),
|
|
};
|
|
|
|
return getApiClient(apiDetails, { allowLocalRun });
|
|
}
|