-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathsettingHandler.js
More file actions
460 lines (408 loc) · 14.9 KB
/
Copy pathsettingHandler.js
File metadata and controls
460 lines (408 loc) · 14.9 KB
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
import { callRobloxApiJson } from '../api.js';
import { getValidAccessToken } from '../oauth/oauth.js';
import { getAuthenticatedUserId } from '../user.js';
import {
syncDonatorTier,
} from '../settings/handlesettings.js';
import { getCurrentUserTier } from '../settings/handlesettings.js';
import {
TRUSTED_USER_IDS
} from '../configs/userIds.js';
import * as cache from '../storage/cacheHandler.js';
const BATCH_MAX_SIZE = 50;
const BATCH_DELAY_MS = 10;
let batchQueue = [];
let batchTimeout = null;
let batchInProgress = false;
const memoryCache = new Map();
const pendingResolvers = new Map();
function assertValidUserId(userId) {
if (
userId === null ||
userId === undefined ||
String(userId).trim() === '' ||
String(userId).toLowerCase() === 'null'
) {
throw new Error(
'RoValra: Cannot fetch user settings without a valid user ID.',
);
}
}
async function saveToCache(cacheKey, settings) {
const cacheData = {
data: settings,
timestamp: Date.now(),
};
memoryCache.set(cacheKey, cacheData);
await cache.set('user_settings', cacheKey, cacheData, 'local');
}
async function fetchAndProcessSettings(userId, options = {}) {
assertValidUserId(userId);
const authenticatedUserId = await getAuthenticatedUserId();
const isOwnProfile =
authenticatedUserId && String(authenticatedUserId) === String(userId);
let apiSettings = {};
let apiProvidedMeaningfulSettings = false;
try {
let data;
if (isOwnProfile) {
const token = await getValidAccessToken(false, false);
if (token) {
data = await callRobloxApiJson({
isRovalraApi: true,
subdomain: 'apis',
endpoint: '/v1/auth/settings',
method: 'GET',
noCache: true,
});
if (data.status === 'success' && data.setting) {
data.settings = {
[data.setting.key]: data.setting.value,
};
}
}
}
if (!data) {
data = await callRobloxApiJson({
isRovalraApi: true,
subdomain: 'apis',
endpoint: `/v1/users/${userId}/settings`,
method: 'GET',
noCache: isOwnProfile,
});
}
if (data.status === 'success' && data.settings) {
apiSettings = data.settings;
if (
(apiSettings.environment === 0 ||
apiSettings.environment === 1) &&
!apiSettings.status &&
!apiSettings.border &&
!apiSettings.gradient &&
Object.keys(apiSettings).length <= 4
) {
apiProvidedMeaningfulSettings = false;
} else {
apiProvidedMeaningfulSettings = true;
}
}
} catch (error) {
console.warn('RoValra: Failed to fetch settings from API.', error);
apiProvidedMeaningfulSettings = false;
}
let finalStatus = null;
let finalEnvironment = 1;
let finalGradient = null;
let finalBorder = null;
if (apiProvidedMeaningfulSettings) {
finalStatus = apiSettings.status;
finalEnvironment = apiSettings.environment;
finalGradient = apiSettings.gradient;
finalBorder = apiSettings.border ?? null;
}
if (
isOwnProfile &&
apiSettings &&
apiSettings.border &&
apiProvidedMeaningfulSettings
) {
document.dispatchEvent(
new CustomEvent('rovalra:syncAvatarBorder', {
detail: { borderUrl: apiSettings.border },
}),
);
}
return {
status: finalStatus,
environment: finalEnvironment || 1,
gradient: finalGradient,
border: finalBorder,
Views: Number(apiSettings.Views) || 0,
hide_views:
apiSettings.hide_views === 'true' || apiSettings.hide_views === true,
canUseApi: apiProvidedMeaningfulSettings,
anonymous_leaderboard:
apiSettings.anonymous_leaderboard === 'true' ||
apiSettings.anonymous_leaderboard === true,
};
}
async function processBatchQueue() {
if (batchInProgress || batchQueue.length === 0) return;
batchInProgress = true;
const currentBatch = [...batchQueue];
batchQueue = [];
clearTimeout(batchTimeout);
batchTimeout = null;
const processedKeys = new Set();
try {
const authedId = await getAuthenticatedUserId();
const authenticatedUserId = authedId ? String(authedId) : null;
const userIdsToFetch = currentBatch
.map((item) => item.userId)
.filter(
(id, index, self) =>
String(id) !== authenticatedUserId &&
self.indexOf(id) === index,
)
.slice(0, BATCH_MAX_SIZE);
const userIdsToFetchStrings = userIdsToFetch.map((id) => String(id));
if (userIdsToFetch.length > 0) {
// VALRA EDIT HERE: /v1/users/settings?user_ids=... GET should return
// `border` in each user's settings object alongside status, environment
// and gradient, so other users' borders can be displayed.
const data = await callRobloxApiJson({
isRovalraApi: true,
subdomain: 'apis',
endpoint: `/v1/users/settings?user_ids=${userIdsToFetchStrings.join(',')}`,
method: 'GET',
});
if (data.status === 'success' && data.settings) {
for (const [userId, apiSettings] of Object.entries(
data.settings,
)) {
const batchItems = currentBatch.filter(
(item) => String(item.userId) === String(userId),
);
for (const item of batchItems) {
const cacheKey = String(userId);
if (processedKeys.has(cacheKey)) continue;
const settings = await processApiSettings(
userId,
apiSettings,
item.options,
);
await saveToCache(cacheKey, settings);
processedKeys.add(cacheKey);
const resolvers = pendingResolvers.get(cacheKey);
if (resolvers) {
resolvers.forEach((r) => r.resolve(settings));
pendingResolvers.delete(cacheKey);
}
}
}
}
}
for (const batchItem of currentBatch) {
const cacheKey = String(batchItem.userId);
if (!processedKeys.has(cacheKey)) {
const settings = await fetchAndProcessSettings(
batchItem.userId,
batchItem.options,
);
await saveToCache(cacheKey, settings);
processedKeys.add(cacheKey);
const resolvers = pendingResolvers.get(cacheKey);
if (resolvers) {
resolvers.forEach((r) => r.resolve(settings));
pendingResolvers.delete(cacheKey);
}
}
}
} catch (error) {
console.warn(
'RoValra: Batch settings fetch failed, falling back to individual requests.',
error,
);
for (const batchItem of currentBatch) {
const cacheKey = String(batchItem.userId);
try {
const settings = await fetchAndProcessSettings(
batchItem.userId,
batchItem.options,
);
const resolvers = pendingResolvers.get(cacheKey);
if (resolvers) {
resolvers.forEach((r) => r.resolve(settings));
pendingResolvers.delete(cacheKey);
}
} catch (e) {
const resolvers = pendingResolvers.get(cacheKey);
if (resolvers) {
resolvers.forEach((r) => r.reject(e));
pendingResolvers.delete(cacheKey);
}
}
}
} finally {
batchInProgress = false;
if (batchQueue.length > 0) {
batchTimeout = setTimeout(processBatchQueue, BATCH_DELAY_MS);
}
}
}
async function processApiSettings(userId, apiSettings, options) {
assertValidUserId(userId);
const authenticatedUserId = await getAuthenticatedUserId();
const isOwnProfile =
authenticatedUserId && String(authenticatedUserId) === String(userId);
let apiProvidedMeaningfulSettings = false;
if (apiSettings && typeof apiSettings === 'object') {
if (
(apiSettings.environment === 0 || apiSettings.environment === 1) &&
!apiSettings.status &&
!apiSettings.border &&
!apiSettings.gradient &&
Object.keys(apiSettings).length <= 4
) {
apiProvidedMeaningfulSettings = false;
} else {
apiProvidedMeaningfulSettings = true;
}
}
let finalStatus = null;
let finalEnvironment = 1;
let finalGradient = null;
let finalBorder = null;
if (apiProvidedMeaningfulSettings) {
finalStatus = apiSettings.status;
finalEnvironment = apiSettings.environment;
finalGradient = apiSettings.gradient;
finalBorder = apiSettings.border ?? null;
}
if (
isOwnProfile &&
apiSettings &&
apiSettings.border &&
apiProvidedMeaningfulSettings
) {
document.dispatchEvent(
new CustomEvent('rovalra:syncAvatarBorder', {
detail: { borderUrl: apiSettings.border },
}),
);
}
return {
status: finalStatus,
environment: finalEnvironment || 1,
gradient: finalGradient,
border: finalBorder,
Views: Number(apiSettings.Views) || 0,
hide_views:
apiSettings.hide_views === 'true' || apiSettings.hide_views === true,
canUseApi: apiProvidedMeaningfulSettings,
anonymous_leaderboard:
apiSettings.anonymous_leaderboard === 'true' ||
apiSettings.anonymous_leaderboard === true,
};
}
export async function getUserSettings(userId, options = {}) {
assertValidUserId(userId);
const authedId = await getAuthenticatedUserId();
const authenticatedUserId = authedId ? String(authedId) : null;
const strUserId = String(userId);
const isOwnProfile =
authenticatedUserId && strUserId === authenticatedUserId;
const cacheKey = strUserId;
if (!options.noCache && !isOwnProfile) {
const memCached = memoryCache.get(cacheKey);
if (memCached) {
const staleThreshold = 300000;
const isStale =
Date.now() - (memCached.timestamp || 0) > staleThreshold;
if (isStale && !pendingResolvers.has(cacheKey)) {
if (options.disableBatch) {
fetchAndProcessSettings(userId, options).then((settings) =>
saveToCache(cacheKey, settings),
);
} else {
batchQueue.push({ userId, options });
pendingResolvers.set(cacheKey, [
{
resolve: () => {},
reject: () => {},
},
]);
if (!batchTimeout) {
batchTimeout = setTimeout(
processBatchQueue,
BATCH_DELAY_MS,
);
}
}
}
return memCached.data;
}
const cached = await cache.get('user_settings', cacheKey, 'local');
if (cached) {
memoryCache.set(cacheKey, cached);
const staleThreshold = 300000;
const isStale =
Date.now() - (cached.timestamp || 0) > staleThreshold;
if (isStale && !pendingResolvers.has(cacheKey)) {
if (options.disableBatch) {
fetchAndProcessSettings(userId, options).then((settings) =>
saveToCache(cacheKey, settings),
);
} else {
batchQueue.push({ userId, options });
pendingResolvers.set(cacheKey, [
{
resolve: () => {},
reject: () => {},
},
]);
if (!batchTimeout) {
batchTimeout = setTimeout(
processBatchQueue,
BATCH_DELAY_MS,
);
}
}
}
return cached.data;
}
}
if (pendingResolvers.has(cacheKey)) {
return new Promise((resolve, reject) => {
pendingResolvers.get(cacheKey).push({ resolve, reject });
});
}
if (options.disableBatch) {
const settings = await fetchAndProcessSettings(userId, options);
await saveToCache(cacheKey, settings);
return settings;
}
return new Promise((resolve, reject) => {
batchQueue.push({ userId, options });
pendingResolvers.set(cacheKey, [{ resolve, reject }]);
if (!batchTimeout) {
batchTimeout = setTimeout(processBatchQueue, BATCH_DELAY_MS);
}
});
}
/**
* Updates a user setting via the RoValra API.
* @param {string} key The setting key to update (e.g., 'environment', 'status').
* @param {any} value The new value for the setting.
* @returns {Promise<boolean>} True if the update was successful, false otherwise.
*/
export async function updateUserSettingViaApi(key, value) {
try {
const token = await getValidAccessToken(false, false);
if (!token) return false;
const apiValue = key === 'hide_views' ? Boolean(value) : String(value);
const response = await callRobloxApiJson({
isRovalraApi: true,
subdomain: 'apis',
endpoint: '/v1/auth/settings',
method: 'POST',
body: JSON.stringify({ key, value: apiValue }),
});
if (
response &&
response.status === 'success' &&
response.setting &&
response.setting.key === key &&
response.message === 'Updated successfully.'
) {
return response.setting.value;
}
return false;
} catch (error) {
console.error(
`RoValra: Failed to update setting '${key}' via API.`,
error,
);
return false;
}
}