blob: 83b77a806a5c933b8db0ad6a19fb5e2b6a7b0ea0 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
import typedHypixelApi from 'typed-hypixel-api'
import { cleanInventory, Item } from './inventory.js'
import * as cached from '../../hypixelCached.js'
import { CleanPlayer } from '../player.js'
export interface Auction {
id: string
sellerUuid: string
sellerProfileUuid: string
buyer: CleanPlayer | null
creationTimestamp: number
boughtTimestamp: number
coins: number
bin: boolean
item: Item
}
export async function cleanAuctions(data: typedHypixelApi.SkyBlockRequestAuctionResponse): Promise<Auction[]> {
const auctionPromises: Promise<Auction>[] = []
for (const auction of data.auctions) {
auctionPromises.push(cleanAuction(auction))
}
const auctions = await Promise.all(auctionPromises)
// sort by newer first
auctions.sort((a, b) => b.creationTimestamp - a.creationTimestamp)
return auctions
}
async function cleanAuction(auction: typedHypixelApi.SkyBlockRequestAuctionResponse['auctions'][number]): Promise<Auction> {
const buyerUuid = auction.end ? auction.bids[auction.bids.length - 1].bidder : null
const buyer = buyerUuid ? await cached.fetchPlayer(buyerUuid, false) : null
return {
id: auction.uuid,
sellerUuid: auction.auctioneer,
sellerProfileUuid: auction.profile_id,
creationTimestamp: auction.start,
buyer,
boughtTimestamp: auction.end,
coins: auction.highest_bid_amount,
bin: auction.bin ?? false,
item: (await cleanInventory(typeof auction.item_bytes === 'string' ? auction.item_bytes : auction.item_bytes.data))[0]
}
}
|