aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/hypixelApi.ts5
-rw-r--r--src/util.ts2
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]]