mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-17 14:55:24 +00:00
* replace upsert with seperate create many and raw update many calls * add bulk repo status update and queue addition with priority * add support for managed redis * add note for changing raw sql on schema change * add error package and use BackendException in connection manager * handle connection failure display on web app * add warning banner for not found orgs/repos/users * add failure handling for gerrit * add gitea notfound warning support * add warning icon in connections list * style nits * add failed repo vis in connections list * added retry failed repo index buttons * move nav indicators to client with polling * fix indicator flash issue and truncate large list results * display error nav better * truncate failed repo list in connection list item * fix merge error * fix merge bug * add connection util file [wip] * refactor notfound fetch logic and add missing error package to dockerfile * move repeated logic to function and add zod schema for syncStatusMetadata
348 lines
No EOL
11 KiB
TypeScript
348 lines
No EOL
11 KiB
TypeScript
import { Octokit } from "@octokit/rest";
|
|
import { GithubConnectionConfig } from "@sourcebot/schemas/v3/github.type";
|
|
import { createLogger } from "./logger.js";
|
|
import { getTokenFromConfig, measure, fetchWithRetry } from "./utils.js";
|
|
import micromatch from "micromatch";
|
|
import { PrismaClient } from "@sourcebot/db";
|
|
import { FALLBACK_GITHUB_TOKEN } from "./environment.js";
|
|
import { BackendException, BackendError } from "@sourcebot/error";
|
|
import { processPromiseResults, throwIfAnyFailed } from "./connectionUtils.js";
|
|
const logger = createLogger("GitHub");
|
|
|
|
export type OctokitRepository = {
|
|
name: string,
|
|
id: number,
|
|
full_name: string,
|
|
fork: boolean,
|
|
private: boolean,
|
|
html_url: string,
|
|
clone_url?: string,
|
|
stargazers_count?: number,
|
|
watchers_count?: number,
|
|
subscribers_count?: number,
|
|
forks_count?: number,
|
|
archived?: boolean,
|
|
topics?: string[],
|
|
// @note: this is expressed in kilobytes.
|
|
size?: number,
|
|
owner: {
|
|
avatar_url: string,
|
|
}
|
|
}
|
|
|
|
const isHttpError = (error: unknown, status: number): boolean => {
|
|
return error !== null
|
|
&& typeof error === 'object'
|
|
&& 'status' in error
|
|
&& error.status === status;
|
|
}
|
|
|
|
export const getGitHubReposFromConfig = async (config: GithubConnectionConfig, orgId: number, db: PrismaClient, signal: AbortSignal) => {
|
|
const tokenResult = config.token ? await getTokenFromConfig(config.token, orgId, db) : undefined;
|
|
const token = tokenResult?.token;
|
|
const secretKey = tokenResult?.secretKey;
|
|
|
|
const octokit = new Octokit({
|
|
auth: token ?? FALLBACK_GITHUB_TOKEN,
|
|
...(config.url ? {
|
|
baseUrl: `${config.url}/api/v3`
|
|
} : {}),
|
|
});
|
|
|
|
if (token) {
|
|
try {
|
|
await octokit.rest.users.getAuthenticated();
|
|
} catch (error) {
|
|
if (isHttpError(error, 401)) {
|
|
throw new BackendException(BackendError.CONNECTION_SYNC_INVALID_TOKEN, {
|
|
secretKey,
|
|
});
|
|
}
|
|
|
|
throw new BackendException(BackendError.CONNECTION_SYNC_SYSTEM_ERROR, {
|
|
message: `Failed to authenticate with GitHub`,
|
|
});
|
|
}
|
|
}
|
|
|
|
let allRepos: OctokitRepository[] = [];
|
|
let notFound: {
|
|
users: string[],
|
|
orgs: string[],
|
|
repos: string[],
|
|
} = {
|
|
users: [],
|
|
orgs: [],
|
|
repos: [],
|
|
};
|
|
|
|
if (config.orgs) {
|
|
const { validRepos, notFoundOrgs } = await getReposForOrgs(config.orgs, octokit, signal);
|
|
allRepos = allRepos.concat(validRepos);
|
|
notFound.orgs = notFoundOrgs;
|
|
}
|
|
|
|
if (config.repos) {
|
|
const { validRepos, notFoundRepos } = await getRepos(config.repos, octokit, signal);
|
|
allRepos = allRepos.concat(validRepos);
|
|
notFound.repos = notFoundRepos;
|
|
}
|
|
|
|
if (config.users) {
|
|
const isAuthenticated = config.token !== undefined;
|
|
const { validRepos, notFoundUsers } = await getReposOwnedByUsers(config.users, isAuthenticated, octokit, signal);
|
|
allRepos = allRepos.concat(validRepos);
|
|
notFound.users = notFoundUsers;
|
|
}
|
|
|
|
let repos = allRepos
|
|
.filter((repo) => {
|
|
const isExcluded = shouldExcludeRepo({
|
|
repo,
|
|
include: {
|
|
topics: config.topics,
|
|
},
|
|
exclude: config.exclude,
|
|
});
|
|
|
|
return !isExcluded;
|
|
});
|
|
|
|
logger.debug(`Found ${repos.length} total repositories.`);
|
|
|
|
return {
|
|
validRepos: repos,
|
|
notFound,
|
|
};
|
|
}
|
|
|
|
export const shouldExcludeRepo = ({
|
|
repo,
|
|
include,
|
|
exclude
|
|
} : {
|
|
repo: OctokitRepository,
|
|
include?: {
|
|
topics?: GithubConnectionConfig['topics']
|
|
},
|
|
exclude?: GithubConnectionConfig['exclude']
|
|
}) => {
|
|
let reason = '';
|
|
const repoName = repo.full_name;
|
|
|
|
const shouldExclude = (() => {
|
|
if (!repo.clone_url) {
|
|
reason = 'clone_url is undefined';
|
|
return true;
|
|
}
|
|
|
|
if (!!exclude?.forks && repo.fork) {
|
|
reason = `\`exclude.forks\` is true`;
|
|
return true;
|
|
}
|
|
|
|
if (!!exclude?.archived && !!repo.archived) {
|
|
reason = `\`exclude.archived\` is true`;
|
|
return true;
|
|
}
|
|
|
|
if (exclude?.repos) {
|
|
if (micromatch.isMatch(repoName, exclude.repos)) {
|
|
reason = `\`exclude.repos\` contains ${repoName}`;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
if (exclude?.topics) {
|
|
const configTopics = exclude.topics.map(topic => topic.toLowerCase());
|
|
const repoTopics = repo.topics ?? [];
|
|
|
|
const matchingTopics = repoTopics.filter((topic) => micromatch.isMatch(topic, configTopics));
|
|
if (matchingTopics.length > 0) {
|
|
reason = `\`exclude.topics\` matches the following topics: ${matchingTopics.join(', ')}`;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
if (include?.topics) {
|
|
const configTopics = include.topics.map(topic => topic.toLowerCase());
|
|
const repoTopics = repo.topics ?? [];
|
|
|
|
const matchingTopics = repoTopics.filter((topic) => micromatch.isMatch(topic, configTopics));
|
|
if (matchingTopics.length === 0) {
|
|
reason = `\`include.topics\` does not match any of the following topics: ${configTopics.join(', ')}`;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
const repoSizeInBytes = repo.size ? repo.size * 1000 : undefined;
|
|
if (exclude?.size && repoSizeInBytes) {
|
|
const min = exclude.size.min;
|
|
const max = exclude.size.max;
|
|
|
|
if (min && repoSizeInBytes < min) {
|
|
reason = `repo is less than \`exclude.size.min\`=${min} bytes.`;
|
|
return true;
|
|
}
|
|
|
|
if (max && repoSizeInBytes > max) {
|
|
reason = `repo is greater than \`exclude.size.max\`=${max} bytes.`;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
})();
|
|
|
|
if (shouldExclude) {
|
|
logger.debug(`Excluding repo ${repoName}. Reason: ${reason}`);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
const getReposOwnedByUsers = async (users: string[], isAuthenticated: boolean, octokit: Octokit, signal: AbortSignal) => {
|
|
const results = await Promise.allSettled(users.map(async (user) => {
|
|
try {
|
|
logger.debug(`Fetching repository info for user ${user}...`);
|
|
|
|
const { durationMs, data } = await measure(async () => {
|
|
const fetchFn = async () => {
|
|
if (isAuthenticated) {
|
|
return octokit.paginate(octokit.repos.listForAuthenticatedUser, {
|
|
username: user,
|
|
visibility: 'all',
|
|
affiliation: 'owner',
|
|
per_page: 100,
|
|
request: {
|
|
signal,
|
|
},
|
|
});
|
|
} else {
|
|
return octokit.paginate(octokit.repos.listForUser, {
|
|
username: user,
|
|
per_page: 100,
|
|
request: {
|
|
signal,
|
|
},
|
|
});
|
|
}
|
|
};
|
|
|
|
return fetchWithRetry(fetchFn, `user ${user}`, logger);
|
|
});
|
|
|
|
logger.debug(`Found ${data.length} owned by user ${user} in ${durationMs}ms.`);
|
|
return {
|
|
type: 'valid' as const,
|
|
data
|
|
};
|
|
} catch (error) {
|
|
if (isHttpError(error, 404)) {
|
|
logger.error(`User ${user} not found or no access`);
|
|
return {
|
|
type: 'notFound' as const,
|
|
value: user
|
|
};
|
|
}
|
|
throw error;
|
|
}
|
|
}));
|
|
|
|
throwIfAnyFailed(results);
|
|
const { validItems: validRepos, notFoundItems: notFoundUsers } = processPromiseResults<OctokitRepository>(results);
|
|
|
|
return {
|
|
validRepos,
|
|
notFoundUsers,
|
|
};
|
|
}
|
|
|
|
const getReposForOrgs = async (orgs: string[], octokit: Octokit, signal: AbortSignal) => {
|
|
const results = await Promise.allSettled(orgs.map(async (org) => {
|
|
try {
|
|
logger.info(`Fetching repository info for org ${org}...`);
|
|
|
|
const { durationMs, data } = await measure(async () => {
|
|
const fetchFn = () => octokit.paginate(octokit.repos.listForOrg, {
|
|
org: org,
|
|
per_page: 100,
|
|
request: {
|
|
signal
|
|
}
|
|
});
|
|
|
|
return fetchWithRetry(fetchFn, `org ${org}`, logger);
|
|
});
|
|
|
|
logger.info(`Found ${data.length} in org ${org} in ${durationMs}ms.`);
|
|
return {
|
|
type: 'valid' as const,
|
|
data
|
|
};
|
|
} catch (error) {
|
|
if (isHttpError(error, 404)) {
|
|
logger.error(`Organization ${org} not found or no access`);
|
|
return {
|
|
type: 'notFound' as const,
|
|
value: org
|
|
};
|
|
}
|
|
throw error;
|
|
}
|
|
}));
|
|
|
|
throwIfAnyFailed(results);
|
|
const { validItems: validRepos, notFoundItems: notFoundOrgs } = processPromiseResults<OctokitRepository>(results);
|
|
|
|
return {
|
|
validRepos,
|
|
notFoundOrgs,
|
|
};
|
|
}
|
|
|
|
const getRepos = async (repoList: string[], octokit: Octokit, signal: AbortSignal) => {
|
|
const results = await Promise.allSettled(repoList.map(async (repo) => {
|
|
try {
|
|
const [owner, repoName] = repo.split('/');
|
|
logger.info(`Fetching repository info for ${repo}...`);
|
|
|
|
const { durationMs, data: result } = await measure(async () => {
|
|
const fetchFn = () => octokit.repos.get({
|
|
owner,
|
|
repo: repoName,
|
|
request: {
|
|
signal
|
|
}
|
|
});
|
|
|
|
return fetchWithRetry(fetchFn, repo, logger);
|
|
});
|
|
|
|
logger.info(`Found info for repository ${repo} in ${durationMs}ms`);
|
|
return {
|
|
type: 'valid' as const,
|
|
data: [result.data]
|
|
};
|
|
|
|
} catch (error) {
|
|
if (isHttpError(error, 404)) {
|
|
logger.error(`Repository ${repo} not found or no access`);
|
|
return {
|
|
type: 'notFound' as const,
|
|
value: repo
|
|
};
|
|
}
|
|
throw error;
|
|
}
|
|
}));
|
|
|
|
throwIfAnyFailed(results);
|
|
const { validItems: validRepos, notFoundItems: notFoundRepos } = processPromiseResults<OctokitRepository>(results);
|
|
|
|
return {
|
|
validRepos,
|
|
notFoundRepos,
|
|
};
|
|
} |