type Cloudflare = {
token: string;
email: string;
key: string;
};
/**
* Get dashboard
* The dashboard view provides both totals and timeseries data for the given zone and time period across the entire Cloudflare network.
*/
export async function main(
auth: Cloudflare,
zone_identifier: string,
until: string | undefined,
since: string | undefined,
continuous: string | undefined
) {
const url = new URL(
`https://api.cloudflare.com/client/v4/zones/${zone_identifier}/analytics/dashboard`
);
for (const [k, v] of [
["until", until],
["since", since],
["continuous", continuous],
]) {
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 484 days ago