Skip to content

Commit df04cb2

Browse files
committed
Created a new configuration entry to enable saving keychains charms to the local DB.
1 parent 8d9d682 commit df04cb2

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

config.example.js

+2
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,6 @@ module.exports = {
6868
'bulk_key': '',
6969
// OPTIONAL: Maximum queue size allowed before dropping requests
7070
'max_queue_size': -1,
71+
// OPTIONAL: Enable caching of charms to the local DB for quick retrieval
72+
'cache_charms': false,
7173
};

index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ const winston = require('winston'),
1414
InspectURL = require('./lib/inspect_url'),
1515
botController = new (require('./lib/bot_controller'))(),
1616
CONFIG = require(args.config),
17-
postgres = new (require('./lib/postgres'))(CONFIG.database_url, CONFIG.enable_bulk_inserts),
17+
postgres = new (require('./lib/postgres'))(CONFIG.database_url, CONFIG.enable_bulk_inserts, CONFIG.cache_charms),
1818
gameData = new (require('./lib/game_data'))(CONFIG.game_files_update_interval, CONFIG.enable_game_file_updates),
1919
errors = require('./errors'),
2020
Job = require('./lib/job');
21+
const {config} = require("winston");
2122

2223
if (CONFIG.max_simultaneous_requests === undefined) {
2324
CONFIG.max_simultaneous_requests = 1;

lib/postgres.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ function flatten(arr){
1010
}
1111

1212
class Postgres {
13-
constructor(url, enableBulkInserts) {
13+
constructor(url, enableBulkInserts, cacheCharms) {
1414
this.pool = new Pool({
1515
connectionString: url
1616
});
1717

1818
this.enableBulkInserts = enableBulkInserts || false;
19+
this.cacheCharms = cacheCharms || false;
1920

2021
if (enableBulkInserts) {
2122
this.queuedInserts = [];
@@ -210,7 +211,11 @@ class Postgres {
210211
buf.writeFloatBE(item.floatvalue, 0);
211212
item.paintwear = buf.readInt32BE(0);
212213

213-
if (item.floatvalue <= 0 && item.defindex !== 507) {
214+
if (item.defindex === 1355 && !this.cacheCharms) {
215+
// Charms (defindex 1355): skip the current item if cacheCharms is false.
216+
continue
217+
}
218+
if (item.floatvalue <= 0 && item.defindex !== 507 && item.defindex !== 1355) {
214219
// Only insert weapons, naive check
215220
// Special case for the 0 float Karambit
216221
continue;

0 commit comments

Comments
 (0)