type Bitbucket = {
username: string;
password: string;
};
/**
* List public repositories
* Returns a paginated list of all public repositories.
This endpoint also supports filtering and sorting of the results. See
filtering and sorting for more details.
*/
export async function main(
auth: Bitbucket,
after: string | undefined,
role: "admin" | "contributor" | "member" | "owner" | undefined,
q: string | undefined,
sort: string | undefined
) {
const url = new URL(`https://api.bitbucket.org/2.0/repositories`);
for (const [k, v] of [
["after", after],
["role", role],
["q", q],
["sort", sort],
]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 384 days ago
type Bitbucket = {
username: string;
password: string;
};
/**
* List public repositories
* Returns a paginated list of all public repositories.
This endpoint also supports filtering and sorting of the results. See
[filtering and sorting](/cloud/bitbucket/rest/intro/#filtering) for more details.
*/
export async function main(
auth: Bitbucket,
after: string | undefined,
role: "admin" | "contributor" | "member" | "owner" | undefined,
q: string | undefined,
sort: string | undefined
) {
const url = new URL(`https://api.bitbucket.org/2.0/repositories`);
for (const [k, v] of [
["after", after],
["role", role],
["q", q],
["sort", sort],
]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 439 days ago