diff options
author | mat <github@matdoes.dev> | 2021-06-24 16:04:41 -0500 |
---|---|---|
committer | mat <github@matdoes.dev> | 2021-06-24 16:04:41 -0500 |
commit | d5445483f1dbbeb4048da5e3ff4a606ce7355bc1 (patch) | |
tree | 9b8f64bcf2902c6b64028b04b2c32a2c728eaba2 /src | |
parent | 84291991d685dbc83942f226406cf7c09a700189 (diff) | |
download | skyblock-api-d5445483f1dbbeb4048da5e3ff4a606ce7355bc1.tar.gz skyblock-api-d5445483f1dbbeb4048da5e3ff4a606ce7355bc1.tar.bz2 skyblock-api-d5445483f1dbbeb4048da5e3ff4a606ce7355bc1.zip |
log api keys
Diffstat (limited to 'src')
-rw-r--r-- | src/hypixelApi.ts | 5 | ||||
-rw-r--r-- | src/util.ts | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/hypixelApi.ts b/src/hypixelApi.ts index 0987ab5..9ce167f 100644 --- a/src/hypixelApi.ts +++ b/src/hypixelApi.ts @@ -19,6 +19,8 @@ const httpsAgent = new Agent({ /** This array should only ever contain one item because using multiple hypixel api keys isn't allowed :) */ const apiKeys = process.env?.hypixel_keys?.split(' ') ?? [] +console.log(apiKeys) + interface KeyUsage { remaining: number limit: number @@ -36,7 +38,7 @@ export function chooseApiKey(): string { // find the api key with the lowest amount of uses let bestKeyUsage: KeyUsage = null let bestKey: string = null - for (let key of shuffle(apiKeys)) { + for (let key of shuffle(apiKeys.slice())) { const keyUsage = apiKeyUsage[key] // if the key has never been used before, use it @@ -158,7 +160,6 @@ export async function sendApiRequest({ path, key, args }): Promise<HypixelRespon { agent: () => httpsAgent } ) fetchJsonParsed = await fetchResponse.json() - console.log('gotten api response', fetchJsonParsed, key) } catch { // if there's an error, wait a second and try again await new Promise((resolve) => setTimeout(resolve, 1000)) diff --git a/src/util.ts b/src/util.ts index 43bb2d8..67cf4b5 100644 --- a/src/util.ts +++ b/src/util.ts @@ -11,7 +11,7 @@ export function jsonToQuery(data): string { return Object.entries(data || {}).map(e => e.join('=')).join('&') } -export function shuffle(a): string { +export function shuffle<T>(a: T[]): T[] { for (let i = a.length - 1; i > 0; i--) { const j = Math.floor(Math.random() * (i + 1)) ;[a[i], a[j]] = [a[j], a[i]] |