diff options
author | mat <27899617+mat-1@users.noreply.github.com> | 2021-03-24 22:09:31 -0500 |
---|---|---|
committer | mat <27899617+mat-1@users.noreply.github.com> | 2021-03-24 22:09:31 -0500 |
commit | af8096ea8ab7c5570929608bb5662f938c0b65c0 (patch) | |
tree | fa4733e6a57ea0fed89d07d8472ef6a965dc4c39 /src | |
parent | d45eb4378f32abc6e35d8a3f1a29b5fe3289c391 (diff) | |
download | skyblock-api-af8096ea8ab7c5570929608bb5662f938c0b65c0.tar.gz skyblock-api-af8096ea8ab7c5570929608bb5662f938c0b65c0.tar.bz2 skyblock-api-af8096ea8ab7c5570929608bb5662f938c0b65c0.zip |
improve mojang api to be much much faster
Diffstat (limited to 'src')
-rw-r--r-- | src/hypixelCached.ts | 5 | ||||
-rw-r--r-- | src/mojang.ts | 84 | ||||
-rw-r--r-- | src/util.ts | 5 |
3 files changed, 58 insertions, 36 deletions
diff --git a/src/hypixelCached.ts b/src/hypixelCached.ts index 4e3316e..82f3eaa 100644 --- a/src/hypixelCached.ts +++ b/src/hypixelCached.ts @@ -6,11 +6,12 @@ import NodeCache from 'node-cache' import * as mojang from './mojang' import * as hypixel from './hypixel' import { CleanPlayer } from './cleaners/player' -import { undashUuid } from './util' +import { isUuid, undashUuid } from './util' import { CleanProfile, CleanFullProfile, CleanBasicProfile } from './cleaners/skyblock/profile' import { debug } from '.' // cache usernames for 4 hours +/** uuid: username */ const usernameCache = new NodeCache({ stdTTL: 60 * 60 * 4, checkperiod: 60, @@ -77,7 +78,7 @@ function waitForCacheSet(cache: NodeCache, key?: string, value?: string): Promis */ export async function uuidFromUser(user: string): Promise<string> { // if the user is 32 characters long, it has to be a uuid - if (undashUuid(user).length === 32) + if (isUuid(user)) return undashUuid(user) if (usernameCache.has(undashUuid(user))) { diff --git a/src/mojang.ts b/src/mojang.ts index a340ae0..7efc4ae 100644 --- a/src/mojang.ts +++ b/src/mojang.ts @@ -4,59 +4,75 @@ import fetch from 'node-fetch' import { Agent } from 'https' +import { isUuid, undashUuid } from './util' // We need to create an agent to prevent memory leaks const httpsAgent = new Agent({ keepAlive: true }) -interface AshconHistoryItem { - username: string - changed_at?: string -} - -interface AshconTextures { - custom: boolean - slim: boolean - skin: { url: string, data: string } - raw: { value: string, signature: string } -} - -interface AshconV2Response { +interface MojangApiResponse { + /** These uuids are already undashed */ uuid: string - username: string - username_history: AshconHistoryItem[] - textures: AshconTextures - created_at?: string -} -interface AshconV1Response { - uuid: string username: string - username_history: AshconHistoryItem[] - textures: AshconTextures - cached_at?: string } /** - * Get mojang api data from ashcon.app + * Get mojang api data from the session server */ -export async function mojangDataFromUser(user: string): Promise<AshconV1Response> { - const fetchResponse = await fetch( - // we use v1 rather than v2 since its more stable - `https://api.ashcon.app/mojang/v1/user/${user}`, +export async function mojangDataFromUuid(uuid: string): Promise<MojangApiResponse> { + console.log('mojangDataFromUuid', uuid) + const fetchResponse = await fetch( + // using mojang directly is faster than ashcon lol, also mojang removed the ratelimits from here + `https://sessionserver.mojang.com/session/minecraft/profile/${undashUuid(uuid)}`, { agent: () => httpsAgent } ) - return await fetchResponse.json() + const data = await fetchResponse.json() + return { + uuid: data.id, + username: data.name + } } + +export async function uuidFromUsername(username: string): Promise<string> { + console.log('uuidFromUsername', username) + // since we don't care about anything other than the uuid, we can use /uuid/ instead of /user/ + const fetchResponse = await fetch( + `https://api.ashcon.app/mojang/v2/uuid/${username}`, + { agent: () => httpsAgent } + ) + const userUuid = await fetchResponse.text() + return userUuid.replace(/-/g, '') +} + +export async function usernameFromUuid(uuid: string): Promise<string> { + const userJson = await mojangDataFromUuid(uuid) + return userJson.username +} + + + + /** * Fetch the uuid from a user * @param user A user can be either a uuid or a username */ export async function uuidFromUser(user: string): Promise<string> { - const fetchJSON = await mojangDataFromUser(user) - return fetchJSON.uuid.replace(/-/g, '') + if (isUuid(user)) + // already a uuid, just return it undashed + return undashUuid(user) + else + return await uuidFromUsername(user) +} + + +export async function mojangDataFromUser(user: string): Promise<MojangApiResponse> { + if (!isUuid(user)) + return await mojangDataFromUuid(await uuidFromUsername(user)) + else + return await mojangDataFromUuid(user) } /** @@ -64,8 +80,8 @@ export async function uuidFromUser(user: string): Promise<string> { * @param user A user can be either a uuid or a username */ export async function usernameFromUser(user: string): Promise<string> { - // get a minecraft uuid from a username, using ashcon.app's mojang api - const fetchJSON = await mojangDataFromUser(user) - return fetchJSON.username + // we do this to fix the capitalization + const data = await mojangDataFromUser(user) + return data.username } diff --git a/src/util.ts b/src/util.ts index cc9cffb..facc425 100644 --- a/src/util.ts +++ b/src/util.ts @@ -82,4 +82,9 @@ export function colorCodeFromName(colorName: string): string { export async function sleep(ms: number): Promise<void> { await new Promise(resolve => setTimeout(resolve, ms)) +} + +/** Returns whether a string is a UUID4 (Minecraft uuid) */ +export function isUuid(string: string) { + return undashUuid(string).length === 32 }
\ No newline at end of file |