-
Notifications
You must be signed in to change notification settings - Fork 3
/
auto-bazaar-pricer.user.js
535 lines (447 loc) · 16.7 KB
/
auto-bazaar-pricer.user.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
// ==UserScript==
// @name Torn - Bazaar Pricer
// @namespace https://github.com/danielgoodwin97/torn-bazaar-pricer
// @version 1.5.14
// @description Automatically price & add quantity to bazaar items.
// @author FATU [1482556]
// @match *.torn.com/bazaar.php*
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_addStyle
// @grant GM_getResourceText
// @resource styles https://github.com/danielgoodwin97/torn-bazaar-pricer/raw/master/css/styles.css
// @updateURL https://github.com/danielgoodwin97/torn-bazaar-pricer/raw/master/auto-bazaar-pricer.user.js
// @downloadURL https://github.com/danielgoodwin97/torn-bazaar-pricer/raw/master/auto-bazaar-pricer.user.js
// @supportURL https://www.torn.com/messages.php#/p=compose&XID=1482556
// ==/UserScript==
$(() => {
'use strict';
// Add stylesheet.
GM_addStyle(GM_getResourceText('styles'));
// Defaults for script.
var storage = 'auto-pricer',
defaults = {
key: {
value: null,
label: 'API Key',
type: 'text'
},
interval: {
value: 1000,
label: 'Interval between API calls',
type: 'number'
},
setPrices: {
value: true,
label: 'Automatically price items?',
type: 'checkbox'
},
setQuantities: {
value: false,
label: 'Automatically set quantity of items?',
type: 'checkbox'
},
priceModifier: {
value: -1,
label: 'Amount above or below market price',
type: 'number'
}
},
options = GM_getValue(storage) || defaults;
// Configuration methods.
var configuration = {
/**
* Check if configuration needs updating.
* @returns {boolean}
*/
shouldUpdate: function () {
return !_.isEqual(_.sortBy(_.keys(options)), _.sortBy(_.keys(defaults)));
},
/**
* Update configuration in storage.
* @param value
*/
update: function (value) {
var updatedConfiguration = _.pick(_.merge(_.defaults(options, defaults), value), _.keys(defaults));
// Update local options.
options = updatedConfiguration;
// Update storage options.
GM_setValue(storage, updatedConfiguration);
},
};
// Update configuration values if anything has changed with default values.
if (configuration.shouldUpdate()) {
configuration.update();
}
// Auto-pricer object.
var pricer = {
currentTab: null,
// Current items.
items: {},
/**
* Full page loader.
*/
loader: {
elements: {
image: null,
message: null
},
/**
* Create loader element and add to page.
*/
build: function () {
var wrapper = $('<div class="loader-wrap"></div>'),
loader = $('<img src="https://i.imgur.com/u3DrfHr.gif" />'),
message = $('<div class="loader-message"></div>');
// Add loader to document.
$('body').append(wrapper);
// Add loader elements to wrapper and hide.
wrapper.append(loader).append(message).hide();
// Set elements in loader object.
this.elements.image = wrapper;
this.elements.message = message;
return this;
},
/**
* Update loader message.
* @param text {string} | Message to display.
*/
update: function (text) {
this.elements.message.text(text);
return this;
},
/**
* Show loader.
* @returns {pricer}
*/
show: function () {
var {image, message} = this.elements;
image.show();
message.show();
return this;
},
/**
* Hide loader.
* @returns {pricer}
*/
hide: function () {
var {image, message} = this.elements;
image.hide();
message.hide();
return this;
}
},
/**
* Button to trigger scrape start.
*/
buttons: {
elements: {
start: null,
configure: null
},
/**
* Create element and add to page.
*/
build: function () {
const container = $('[class^="linksContainer_"'),
link = $('[class^="linkContainer_"'),
classes = link[0].className;
var buttons = [
$(`<a class="${classes} auto-pricer-configure">Configure</a>`),
$(`<a class="${classes} auto-pricer-start">Start FATU\'s Pricer</a>`)
];
container.prepend(buttons);
this.elements = {
start: buttons[1],
configure: buttons[0]
};
this.setupListeners();
},
/**
* Set up button event listener.
*/
setupListeners: function () {
var {start, configure} = this.elements;
start.on('click', function () {
pricer.gatherItems();
});
configure.on('click', function () {
pricer.popup.show();
});
}
},
/**
* Configuration popup.
*/
popup: {
elements: {
popup: null,
background: null
},
/**
* Build inputs with input information.
*/
inputs: _.mapValues(options, function (item, key) {
var {value, label, type} = item,
hasValue = !!value;
return $(`<label>${label} <input name="${key}" type="${type}" value="${hasValue ? value : ''}" ${hasValue ? 'checked' : ''} /></label>`);
}),
/**
* Create element and add to page.
* @returns {pricer}
*/
build: function () {
var self = this,
popup = $('<div class="settings-popup"></div>'),
background = $('<div class="settings-popup-background"></div>');
_.each(this.inputs, function (value, key) {
// Add input to popup.
popup.append(value);
// Set up listener for local storage options.
self.setupInputListener(key, value);
});
// Add popup & background to document.
$('body').append(popup).append(background);
// Set elements in elements object.
this.elements.popup = popup;
this.elements.background = background;
// Set up dismiss popup listeners.
this.setupDismissListener();
return this;
},
/**
* Set up dismiss listeners for popup.
*/
setupDismissListener: function () {
var self = this;
this.elements.background.on('click', function () {
self.hide();
});
},
/**
* Set up listeners for updating configuration options in storage.
* @param inputKey {string} | Storage key for configuration option.
* @param input {object} | Input element.
*/
setupInputListener: function (inputKey, input) {
var inputElement = input.find('input');
inputElement.on('change', function () {
var currentInput = $(this),
inputType = currentInput.attr('type'),
isCheckbox = inputType === 'checkbox';
configuration.update({
[inputKey]: {
value: isCheckbox ? currentInput.prop('checked') : currentInput.val()
}
});
});
},
/**
* Show popup.
*/
show: function () {
this.elements.popup.show();
this.elements.background.show();
},
/**
* Hide popup.
*/
hide: function () {
this.elements.popup.hide();
this.elements.background.hide();
}
},
/**
* Update current tab.
*/
getCurrentTab: function () {
var currentTab = $('.ui-tabs-nav').find('.ui-state-active'),
currentTabName = currentTab.find('a').attr('href').replace('#', '');
pricer.currentTab = currentTabName !== 'All' ? currentTabName : null;
},
/**
* Grab all user items from API.
*/
gatherItems: function () {
var self = this,
{currentTab} = self;
// Show configuration popup when there's no API key.
if (!options.key.value) {
self.popup.show();
return false;
}
// Show loader.
self.loader.show();
// Get inventory.
var inventory = fetch(`/inventory.php?rfcv=${unsafeWindow.getRFC()}`, {
headers: {
'content-type': 'application/x-www-form-urlencoded; charset=UTF-8',
'x-requested-with': 'XMLHttpRequest'
},
body: `step=getList&type=${currentTab ? currentTab : 'All'}&start=0`,
method: 'POST'
});
// Loop over all inventory items.
inventory.then(response => response.json()).then(({ list }) => {
// Loop over all items in players inventory.
list.forEach(function (value) {
var {name, itemID, type, Qty, averageprice, equiped, untradable} = value,
isMarketable = !!parseFloat(averageprice) || !parseInt(untradable),
isEquipped = !!parseInt(equiped) && Qty === 1;
// Only add item if it's tradeable.
if (isMarketable && !isEquipped) {
self.items[itemID] = {
name: name,
quantity: Qty
}
}
});
}).then(() => {
var i = 0;
// If there are no items, stop script.
if ($.isEmptyObject(self.items)) {
self.loader.hide();
console.log('No items were scraped. Please try again.');
}
self.loader.update('All items gathered.');
_.each(pricer.items, function (value, key) {
setTimeout(function () {
self.getPrice(value.name, key);
}, options.interval.value * i);
i++;
});
}).catch(() => {
self.loader.hide();
console.log('There was an error. Please try again.');
});
},
/**
* Get cheapest possible price of a given item.
* @param name {string} | Item name.
* @param id {number} | Item ID.
*/
getPrice: function (name, id) {
var self = this;
$.ajax({
url: 'https://api.torn.com/market/' + id,
data: {
selections: 'bazaar,itemmarket',
key: options.key.value
},
/**
* Update loader message with current item being scraped.
*/
beforeSend: function () {
self.loader.update('Scraping ' + name + '.');
},
/**
* Add listing price to items object.
* @param data {object} | Torn API response.
*/
success: function (data) {
var {bazaar, itemmarket} = data,
allPrices = _.without(_.concat(itemmarket, bazaar), null),
cheapestItem = _.min(_.toArray(_.mapValues(allPrices, function (value) {
return value.cost;
})));
// Set price to sell as a dollar lower.
self.items[id].price = cheapestItem + parseInt(options.priceModifier.value);
},
/**
* When all pricing is finished, hide the loader and add final prices to inputs.
*/
complete: function () {
if (self.isFinished()) {
self.loader.hide();
self.applyPricesAndQuantities();
}
}
});
},
/**
* Grab price inputs for inventory items.
* @param name {string} | Item name.
* @param id {number} | Item ID.
*/
getInputs: function (name, id) {
var self = this,
item = $('.items-cont li:visible');
// Rather than using IDs we now have to use item names due to the image canvas update which removed
// the ability to grab IDs from the URLs.
item.each(function () {
var currentItem = $(this),
itemName = currentItem.find('.name-wrap .t-overflow').text();
// Add inputs to item object.
if (name === itemName) {
self.items[id].inputs = {
price: currentItem.find('input[type="text"].input-money'),
quantity: currentItem.find('.amount input')
};
}
});
},
/**
* Check whether item scraping has finished.
* @returns {boolean}
*/
isFinished: function () {
var items = this.items,
lastItem = items[Object.keys(items)[Object.keys(items).length - 1]];
return !!lastItem.price;
},
/**
* Apply prices to price fields.
*/
applyPricesAndQuantities: function () {
var self = this;
_.each(this.items, function (value, key) {
self.getInputs(value.name, key);
var {price, quantity, inputs} = value,
{setPrices, setQuantities} = options;
// Cannot trigger this event with jquery for some reason?
// Has to be done in vanilla JS.
var event = new Event('input', {
bubbles: true,
cancelable: true,
});
// If prices are set to be automatically added.
if (setPrices.value) {
inputs.price.val(price);
}
// If quantities are set to be automatically added.
if (setQuantities.value) {
inputs.quantity.val(quantity);
if (inputs.quantity.attr('type') === 'checkbox') {
inputs.quantity.next('a').click();
}
}
// Trigger update event.
_.each(inputs, function (input) {
input[0].dispatchEvent(event);
});
});
}
};
// Update current tab.
$(document).on('click', '.ui-tabs-nav li', function () {
var {getCurrentTab} = pricer;
setTimeout(function () {
pricer.items = {};
getCurrentTab();
}, 100);
});
// Run script.
$(window).on('hashchange load', function () {
var isAddPage = window.location.hash === '#/p=add' || window.location.hash === '#/add',
{loader, popup, buttons, getCurrentTab} = pricer;
// Create all auto pricer elements & update current tab.
if (isAddPage) {
setTimeout(function () {
getCurrentTab();
loader.build();
popup.build();
buttons.build();
}, 500);
}
});
});