-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
221 lines (164 loc) · 6.35 KB
/
main.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
const express = require('express');
const Helpers = require('./helpers');
const Backend = require('./data-analysis');
const app = express();
const port = process.env.PORT || 3000;
let AuctionHouseData = Backend.pullAHData(0);
let lastRequestTimestamp = Date.now();
app.get('/whitelist/username=*', async (req, res) => {
lastRequestTimestamp = Date.now();
let name = Helpers.getArgument(req.originalUrl, "username")
let response;
if (!name.length) {
response = {
status: 400,
error: "No username sent!"
}
}
else {
response = {
status: 200,
whitelisted: Helpers.isWhitelisted(name)
}
}
res.json(response)
});
app.get('/gettrades/minprofit=*&profitscale=*&username=*', async (req, res) => {
useLastAuctionHouse = (Date.now() - lastRequestTimestamp) < 300000;
lastRequestTimestamp = Date.now();
let minProfit = parseFloat(Helpers.getArgument(req.originalUrl, "minprofit"));
let profitScale = parseFloat(Helpers.getArgument(req.originalUrl, "profitscale"));
let username = Helpers.getArgument(req.originalUrl, "username");
let response;
if (!Helpers.isWhitelisted(username)) {
response = {
status: 400,
error: "Username not whitelisted!"
}
}
else if (!Backend.AH_INITIALIZED) {
response = {
status: 503,
error: "Auction House Data not populated yet, try again in ~10 seconds."
}
}
else {
let goodTrades = [];
let localAH = await AuctionHouseData;
if(Backend.FULLY_REFRESHED) {
localAH.binMap.forEach((auction, key) => {
if (auction.profit() > minProfit && auction.profit() > profitScale * Math.sqrt(auction.price())) {
goodTrades.push({
uuid: auction.flip.uuid,
price: auction.price(),
avg: Math.round(auction.getAverage()),
profit: Math.round(auction.profit()),
name: key
});
}
})
}
else if (useLastAuctionHouse) {
console.log()
console.log(Backend.potential_early_trades.length+"\n\n\n");
console.log()
Backend.potential_early_trades.forEach((auction) => {
const name = Helpers.getName(auction) + " (" + Helpers.niceCapitalize(auction.tier) + ")";
const persistent_data = AuctionHouseData.tradeMap.get(name);
const profit = Math.round(0.98 * persistent_data.prices[1] - auction.starting_bid);
console.log(name);
console.log(profit);
console.log(profit/ Math.sqrt(auction.starting_bid));
if (profit > minProfit && profit > profitScale * Math.sqrt(auction.starting_bid)) {
goodTrades.push({
uuid: auction.uuid,
price: auction.starting_bid,
avg: Math.round(persistent_data.getAverage()),
profit: Math.round(0.98 * persistent_data.prices[1] - auction.starting_bid),
name: name
});
}
})
}
goodTrades.sort((a, b) => { return b.profit - a.profit; });
response = {
status: 200,
timestamp: localAH.lastUpdated,
fully_parsed: Backend.FULLY_REFRESHED,
trades: goodTrades
}
}
res.json(response)
});
app.get('/status', async (req, res) => {
lastRequestTimestamp = Date.now();
res.json({
delay: Backend.AH_DELAY,
done: Backend.AH_PAGES_DONE,
needed: Backend.AH_PAGES_NEEDED,
log: Helpers.getLog()
})
});
app.get('/ping/time=*', async (req, res) => {
lastRequestTimestamp = Date.now();
let timestamp = parseFloat(Helpers.getArgument(req.originalUrl, "time"));
res.json({ timeSent: timestamp, timeRecieved: Date.now() })
});
app.get("/price/name=*×cale=*", async (req, res) => {
lastRequestTimestamp = Date.now();
let results = Backend.PRICE_TRACKER.search(Helpers.getArgument(req.originalUrl, "name").replaceAll("_", " "));
let data = [];
let time_matches = (["hour", "day", "week"].filter((a) => a.includes(Helpers.getArgument(req.originalUrl, "timescale"))));
let time_scale = time_matches.length > 0 ? time_matches[0] : "hour";
if(time_scale.includes("hour")) {
results.forEach((tag) => {
data.push(Backend.PRICE_TRACKER.items.get(tag).summarize_hour());
});
}
else if(time_scale.includes("day")) {
results.forEach((tag) => {
data.push(Backend.PRICE_TRACKER.items.get(tag).summarize_day());
});
}
else {
results.forEach((tag) => {
data.push(Backend.PRICE_TRACKER.items.get(tag).summarize_week());
});
}
res.json({
results: results,
data: data
})
});
let firstSelfUpdate = false;
let firstChecking = true;
let ALREADY_UPDATING = false;
let updateAH = async () => {
if (Backend.AH_INITIALIZED) {
if (firstChecking) {
Helpers.log("Checking time...");
firstChecking = false;
}
let timeStamp = await Backend.getAPITimeStamp();
let dataTimestamp = (await AuctionHouseData).lastUpdated;
if (timeStamp > dataTimestamp && !ALREADY_UPDATING) {
ALREADY_UPDATING = true;
Helpers.log("REFRESHING AUCTION HOUSE...")
setTimeout(updateAH, timeStamp + 59000 - Date.now());
localCopy = await Backend.pullAHData(timeStamp, AuctionHouseData);
Backend.PRICE_TRACKER.update(localCopy);
AuctionHouseData = localCopy;
firstSelfUpdate = true;
firstChecking = true;
ALREADY_UPDATING = false;
}
else {
setTimeout(updateAH, firstSelfUpdate ? 500 : 5000);
}
}
else {
setTimeout(updateAH, 5000);
}
}
updateAH();
app.listen(port, () => Helpers.log(`Skyblock API listening on port ${port}!`));