-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathaccount.js
622 lines (524 loc) · 13.1 KB
/
account.js
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
const AbstractEndpoint = require('../endpoint')
const CharactersEndpoint = require('./characters')
const PvpEndpoint = require('./pvp')
const CommerceEndpoint = require('./commerce')
const WizardsvaultEndpoint = require('./wizardsvault')
const accountBlob = require('./account-blob.js')
const resetTime = require('../helpers/resetTime')
class AccountEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
achievements () {
return new AchievementsEndpoint(this)
}
bank () {
return new BankEndpoint(this)
}
characters (name) {
return new CharactersEndpoint(this, name)
}
dailycrafting () {
return new DailycraftingEndpoint(this)
}
delivery () {
return new CommerceEndpoint(this).delivery()
}
dungeons () {
return new DungeonsEndpoint(this)
}
dyes () {
return new DyesEndpoint(this)
}
emotes () {
return new EmotesEndpoint(this)
}
finishers () {
return new FinishersEndpoint(this)
}
gliders () {
return new GlidersEndpoint(this)
}
home () {
return {
cats: () => new HomeCatsEndpoint(this),
nodes: () => new HomeNodesEndpoint(this)
}
}
homestead () {
return {
decorations: () => new HomesteadDecorationsEndpoint(this),
glyphs: () => new HomesteadGlyphsEndpoint(this)
}
}
inventory () {
return new InventoryEndpoint(this)
}
jadebots () {
return new JadebotsEndpoint(this)
}
legendaryarmory () {
return new LegendaryarmoryEndpoint(this)
}
luck () {
return new LuckEndpoint(this)
}
mailcarriers () {
return new MailcarriersEndpoint(this)
}
masteries () {
return new MasteriesEndpoint(this)
}
mapchests () {
return new MapchestsEndpoint(this)
}
mastery () {
return {
points: () => new MasteryPointsEndpoint(this)
}
}
materials () {
return new MaterialsEndpoint(this)
}
minis () {
return new MinisEndpoint(this)
}
mounts () {
return {
skins: () => new MountSkinsEndpoint(this),
types: () => new MountTypesEndpoint(this)
}
}
novelties () {
return new NoveltiesEndpoint(this)
}
outfits () {
return new OutfitsEndpoint(this)
}
pvp () {
return new PvpEndpoint(this, true)
}
raids () {
return new RaidsEndpoint(this)
}
recipes () {
return new RecipesEndpoint(this)
}
skiffs () {
return new SkiffsEndpoint(this)
}
skins () {
return new SkinsEndpoint(this)
}
titles () {
return new TitlesEndpoint(this)
}
transactions () {
return new CommerceEndpoint(this).transactions()
}
wallet () {
return new WalletEndpoint(this)
}
wizardsvault () {
return {
listings: () => new WizardsvaultListingsEndpoint(this),
daily: () => new WizardsvaultDailyEndpoint(this),
weekly: () => new WizardsvaultWeeklyEndpoint(this),
special: () => new WizardsvaultSpecialEndpoint(this)
}
}
worldbosses () {
return new WorldbossesEndpoint(this)
}
// All data available for the account in a single object
blob () {
return accountBlob(this)
}
}
class AchievementsEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/achievements'
this.isAuthenticated = true
this.isPaginated = true
this.isBulk = true
this.cacheTime = 5 * 60
}
ids () {
return Promise.reject(new Error('method not supported for this endpoint'))
}
get (id) {
if (id) {
return super.get(id)
}
// This endpoint returns all entries if the url gets requested
// without any parameters, analogue to the other account endpoints
return this.all()
}
all () {
return super.get('', true)
}
}
class BankEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/bank'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class DailycraftingEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/dailycrafting'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
async get () {
return await isStaleDailyData(this) ? [] : super.get()
}
}
class DungeonsEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/dungeons'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
async get () {
return await isStaleDailyData(this) ? [] : super.get()
}
}
class DyesEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/dyes'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class EmotesEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/emotes'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class FinishersEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/finishers'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class GlidersEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/gliders'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class HomeCatsEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/home/cats'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class HomeNodesEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/home/nodes'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class HomesteadDecorationsEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/homestead/decorations'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class HomesteadGlyphsEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/homestead/glyphs'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class InventoryEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/inventory'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class JadebotsEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/jadebots'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class LegendaryarmoryEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/legendaryarmory'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class LuckEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/luck'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
async get () {
const response = await super.get()
// [API PATCH #0] If the account does not have any luck, the API erroneously returns `[]`
if (response.length === 0) return 0
return response[0].value
}
}
class MailcarriersEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/mailcarriers'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class MapchestsEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/mapchests'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
async get () {
return await isStaleDailyData(this) ? [] : super.get()
}
}
class MasteriesEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/masteries'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class MasteryPointsEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/mastery/points'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class MaterialsEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/materials'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class MinisEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/minis'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class MountSkinsEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/mounts/skins'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class MountTypesEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/mounts/types'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class NoveltiesEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/novelties'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class OutfitsEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/outfits'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class RaidsEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/raids'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
async get () {
return await isStaleWeeklyData(this) ? [] : super.get()
}
}
class RecipesEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/recipes'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class SkiffsEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/skiffs'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class SkinsEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/skins'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class TitlesEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/titles'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class WalletEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/wallet'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class WorldbossesEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/worldbosses'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
async get () {
return await isStaleDailyData(this) ? [] : super.get()
}
}
class WizardsvaultListingsEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/wizardsvault/listings'
this.isAuthenticated = true
this.cacheTime = 5 * 60
}
}
class WizardsvaultDailyEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/wizardsvault/daily'
this.isAuthenticated = true
this.isLocalized = true
this.cacheTime = 5 * 60
}
async get () {
const [response, isStale] = await Promise.all([
super.get(),
isStaleDailyData(this)
])
if (isStale) {
response.meta_progress_current = 0
response.meta_reward_claimed = false
response.objectives = []
}
return response
}
}
class WizardsvaultWeeklyEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/wizardsvault/weekly'
this.isAuthenticated = true
this.isLocalized = true
this.cacheTime = 5 * 60
}
async get () {
const [response, isStale] = await Promise.all([
super.get(),
isStaleWeeklyData(this)
])
if (isStale) {
response.meta_progress_current = 0
response.meta_reward_claimed = false
response.objectives = []
}
return response
}
}
class WizardsvaultSpecialEndpoint extends AbstractEndpoint {
constructor (client) {
super(client)
this.url = '/v2/account/wizardsvault/special'
this.isAuthenticated = true
this.isLocalized = true
this.cacheTime = 5 * 60
}
async get () {
const season = await new WizardsvaultEndpoint(this).get()
const [response, isStale] = await Promise.all([
super.get(),
isStaleData(this, new Date(season.start))
])
if (isStale) {
response.objectives = []
}
return response
}
}
// Stale data can happen if the last account update was before the last daily reset
async function isStaleDailyData (endpointInstance) {
return isStaleData(endpointInstance, resetTime.getLastDailyReset())
}
// Stale data can happen if the last account update was before the last weekly reset
async function isStaleWeeklyData (endpointInstance) {
return isStaleData(endpointInstance, resetTime.getLastWeeklyReset())
}
async function isStaleData (endpointInstance, resetDate) {
const account = await new AccountEndpoint(endpointInstance).schema('2019-03-26').get()
return new Date(account.last_modified) < resetDate
}
module.exports = AccountEndpoint