type Cloudflare = {
token: string;
email: string;
key: string;
};
/**
* Search for locations, autonomous systems (AS) and reports.
* Lets you search for locations, autonomous systems (AS) and reports.
*/
export async function main(
auth: Cloudflare,
limit: string | undefined,
limitPerGroup: string | undefined,
query: string | undefined,
include: string | undefined,
exclude: string | undefined,
format: "JSON" | "CSV" | undefined
) {
const url = new URL(
`https://api.cloudflare.com/client/v4/radar/search/global`
);
for (const [k, v] of [
["limit", limit],
["limitPerGroup", limitPerGroup],
["query", query],
["include", include],
["exclude", exclude],
["format", format],
]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
"X-AUTH-EMAIL": auth.email,
"X-AUTH-KEY": auth.key,
Authorization: "Bearer " + auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 383 days ago
type Cloudflare = {
token: string;
email: string;
key: string;
};
/**
* Search for locations, autonomous systems (AS) and reports.
* Lets you search for locations, autonomous systems (AS) and reports.
*/
export async function main(
auth: Cloudflare,
limit: string | undefined,
limitPerGroup: string | undefined,
query: string | undefined,
include: string | undefined,
exclude: string | undefined,
format: "JSON" | "CSV" | undefined
) {
const url = new URL(
`https://api.cloudflare.com/client/v4/radar/search/global`
);
for (const [k, v] of [
["limit", limit],
["limitPerGroup", limitPerGroup],
["query", query],
["include", include],
["exclude", exclude],
["format", format],
]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
"X-AUTH-EMAIL": auth.email,
"X-AUTH-KEY": auth.key,
Authorization: "Bearer " + auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 920 days ago