Skip to content

Commit 80e16b9

Browse files
authored
Merge pull request #269 from the-hideout/archived-prices-groundwork
lay groundwork for archived prices
2 parents 240daa4 + 81d3397 commit 80e16b9

File tree

5 files changed

+70
-1
lines changed

5 files changed

+70
-1
lines changed

datasources/archived-prices.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
const WorkerKVSplit = require('../utils/worker-kv-split');
2+
3+
class ArchivedPricesAPI extends WorkerKVSplit {
4+
constructor(dataSource) {
5+
super('archived_price_data', dataSource);
6+
}
7+
8+
async getByItemId(context, itemId) {
9+
await this.init(context, itemId);
10+
const data = await this.getKVData(context, itemId);
11+
if (!data) {
12+
return Promise.reject(new Error('Archived prices data is empty'));
13+
}
14+
15+
let prices = data.ArchivedPrices[itemId];
16+
if (!prices) {
17+
return [];
18+
}
19+
return prices;
20+
}
21+
}
22+
23+
module.exports = ArchivedPricesAPI;

datasources/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ const BartersAPI = require('./barters');
22
const CraftsAPI = require('./crafts');
33
const HideoutAPI = require('./hideout');
44
const HistoricalPricesAPI = require('./historical-prices');
5+
const ArchivedPricesAPI = require('./archived-prices');
56
const ItemsAPI = require('./items');
67
const MapAPI = require('./maps');
78
const SchemaAPI = require('./schema');
@@ -16,6 +17,7 @@ class DataSource {
1617
this.craft = new CraftsAPI(this);
1718
this.hideout = new HideoutAPI(this);
1819
this.historicalPrice = new HistoricalPricesAPI(this);
20+
this.archivedPrice = new ArchivedPricesAPI(this);
1921
this.item = new ItemsAPI(this);
2022
this.map = new MapAPI(this);
2123
this.schema = new SchemaAPI(this);
@@ -34,6 +36,7 @@ class DataSource {
3436
craft: this.craft,
3537
hideout: this.hideout,
3638
historicalPrice: this.historicalPrice,
39+
archivedPrice: this.archivedPrice,
3740
item: this.item,
3841
map: this.map,
3942
schema: this.schema,

resolvers/itemResolver.js

+3
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ module.exports = {
7878
historicalItemPrices(obj, args, context, info) {
7979
return context.util.paginate(context.data.historicalPrice.getByItemId(context, args.id, args.days), args);
8080
},
81+
/*archivedItemPrices(obj, args, context, info) {
82+
return context.util.paginate(context.data.archivedPrice.getByItemId(context, args.id), args);
83+
},*/
8184
armorMaterials(obj, args, context) {
8285
return context.data.item.getArmorMaterials(context);
8386
},

schema.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1306,7 +1306,8 @@ interface Vendor {
13061306
#union Vendor = TraderOffer | FleaMarket
13071307
13081308
type Query {
1309-
ammo(lang: LanguageCode, limit: Int, offset: Int): [Ammo]
1309+
ammo(lang: LanguageCode, limit: Int, offset: Int): [Ammo]
1310+
#archivedItemPrices(id: ID!, limit: Int, offset: Int): [historicalPricePoint]!
13101311
barters(lang: LanguageCode, limit: Int, offset: Int): [Barter]
13111312
bosses(lang: LanguageCode, name: [String!], limit: Int, offset: Int): [MobInfo]
13121313
crafts(lang: LanguageCode, limit: Int, offset: Int): [Craft]

utils/worker-kv-split.js

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
const WorkerKV = require('./worker-kv');
2+
3+
class WorkerKVSplit {
4+
constructor(kvName, dataSource, idLength = 1) {
5+
this.dataExpires = false;
6+
this.kvs = {};
7+
this.idLength = idLength;
8+
const hexKeys = [];
9+
const maxDecimalValue = parseInt('f'.padEnd(idLength, 'f'), 16);
10+
for (let i = 0; i <= maxDecimalValue; i++) {
11+
const hexValue = i.toString(16).padStart(idLength, '0');
12+
hexKeys.push(hexValue);
13+
}
14+
for (const hexKey of hexKeys) {
15+
this.kvs[hexKey] = new WorkerKV(`${kvName}_${hexKey}`, dataSource);
16+
}
17+
}
18+
19+
getIdSuffix(id) {
20+
return id.substring(id.length-this.idLength, id.length);
21+
}
22+
23+
async init(context, id) {
24+
const kvId = this.getIdSuffix(id);
25+
return this.kvs[kvId].init(context).then(() => {
26+
if (this.kvs[kvId].cache?.expiration) {
27+
this.dataExpiress = new Date(this.kvs[kvId].cache.expiration).valueOf();
28+
}
29+
});
30+
}
31+
32+
async getKVData(context, id) {
33+
await this.init(context, id);
34+
const kvId = this.getIdSuffix(id);
35+
return this.kvs[kvId].cache;
36+
}
37+
}
38+
39+
module.exports = WorkerKVSplit;

0 commit comments

Comments
 (0)