aboutsummaryrefslogtreecommitdiff
path: root/src/cleaners/skyblock/profiles.ts
blob: a44fe481d263c907994e79f5d20bd9719706b455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { HypixelPlayerStatsSkyBlockProfiles } from '../../hypixelApi'
import {
    CleanBasicProfile,
    CleanFullProfile,
    CleanProfile,
    cleanSkyblockProfileResponse
} from './profile'

export function cleanPlayerSkyblockProfiles(rawProfiles: HypixelPlayerStatsSkyBlockProfiles): CleanBasicProfile[] {
    let profiles: CleanBasicProfile[] = []
    for (const profile of Object.values(rawProfiles ?? {})) {
        profiles.push({
            uuid: profile.profile_id,
            name: profile.cute_name
        })
    }
    return profiles
}

/** Convert an array of raw profiles into clean profiles */
export async function cleanSkyblockProfilesResponse(data: any[]): Promise<CleanProfile[]> {
    const promises: Promise<CleanProfile | CleanFullProfile>[] = []
    for (const profile of data ?? []) {
        // let cleanedProfile = await cleanSkyblockProfileResponseLighter(profile)
        promises.push(cleanSkyblockProfileResponse(profile))
    }
    const cleanedProfiles: CleanProfile[] = await Promise.all(promises)
    return cleanedProfiles
}