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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
import typedHypixelApi from 'typed-hypixel-api'
import { cleanItemId } from './itemId.js'
export interface PlayerFarmingContestStats {
year: number
month: number
day: number
crops: {
item: string
amount: number
/** The position (1-indexed) that the user got on the contest. */
position: number | null
/** Whether the player has claimed their rewards. */
claimed: boolean | null
/**
* The number of people who participated in this contest.
*/
participants: number | null
}[]
}
export interface FarmingContests {
talkedToJacob: boolean
list: PlayerFarmingContestStats[]
}
export function cleanFarmingContests(data: typedHypixelApi.SkyBlockProfileMember): FarmingContests {
if (!data.jacob2) return {
talkedToJacob: false,
list: []
}
const contestsByDate: Record<string, PlayerFarmingContestStats['crops']> = {}
for (const [contestName, contestData] of Object.entries(data.jacob2?.contests ?? {})) {
const [year, monthDay, item] = contestName.split(':')
const [month, day] = monthDay.split('_')
const contestByDateKey = `${year}:${month}:${day}`
const cropData: PlayerFarmingContestStats['crops'][number] = {
item: cleanItemId(item),
amount: contestData.collected,
// the api returns the position 0-indexed, so we add 1
position: contestData.claimed_position !== undefined ? contestData.claimed_position + 1 : null,
claimed: contestData.claimed_rewards ?? null,
participants: contestData.claimed_participants ?? null
}
if (!(contestByDateKey in contestsByDate))
contestsByDate[contestByDateKey] = [cropData]
else
contestsByDate[contestByDateKey].push(cropData)
}
const contestsByDateEntries = Object.entries(contestsByDate)
// this is to sort by newest first
contestsByDateEntries.reverse()
const contests: PlayerFarmingContestStats[] = contestsByDateEntries.map(([contestDateKey, crops]) => {
const [year, month, day] = contestDateKey.split(':')
return {
year: parseInt(year),
month: parseInt(month),
day: parseInt(day),
crops
}
})
return {
talkedToJacob: data.jacob2?.talked ?? false,
list: contests
}
}
|