|
import { extractNextPageFromLink } from "#/utils/extract-next-page-from-link";
|
|
import { openHands } from "./open-hands-axios";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const retrieveGitHubAppRepositories = async (
|
|
installationIndex: number,
|
|
installations: number[],
|
|
page = 1,
|
|
per_page = 30,
|
|
) => {
|
|
const installationId = installations[installationIndex];
|
|
const response = await openHands.get<GitHubAppRepository>(
|
|
"/api/github/repositories",
|
|
{
|
|
params: {
|
|
sort: "pushed",
|
|
page,
|
|
per_page,
|
|
installation_id: installationId,
|
|
},
|
|
},
|
|
);
|
|
|
|
const link = response.headers.link ?? "";
|
|
const nextPage = extractNextPageFromLink(link);
|
|
let nextInstallation: number | null;
|
|
|
|
if (nextPage) {
|
|
nextInstallation = installationIndex;
|
|
} else if (installationIndex + 1 < installations.length) {
|
|
nextInstallation = installationIndex + 1;
|
|
} else {
|
|
nextInstallation = null;
|
|
}
|
|
|
|
return {
|
|
data: response.data.repositories,
|
|
nextPage,
|
|
installationIndex: nextInstallation,
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const retrieveGitHubUserRepositories = async (
|
|
page = 1,
|
|
per_page = 30,
|
|
) => {
|
|
const response = await openHands.get<GitHubRepository[]>(
|
|
"/api/github/repositories",
|
|
{
|
|
params: {
|
|
sort: "pushed",
|
|
page,
|
|
per_page,
|
|
},
|
|
},
|
|
);
|
|
|
|
const link = response.headers.link ?? "";
|
|
const nextPage = extractNextPageFromLink(link);
|
|
|
|
return { data: response.data, nextPage };
|
|
};
|
|
|