Updated debug logging for VRChatAPI

This commit is contained in:
2023-04-23 17:52:01 +07:00
parent 247c4cab40
commit cecbafd9f0
+27 -13
View File
@@ -3,6 +3,7 @@ import Environment from './Environment';
import Logger from '../libs/Logger'; import Logger from '../libs/Logger';
import App from './App'; import App from './App';
const LOGGING_TAG = '[VRChatAPI]';
const VRC_CACHE_DURATION = 5 * 60 * 1000; // 5 minutes const VRC_CACHE_DURATION = 5 * 60 * 1000; // 5 minutes
interface VRChatAPIs { interface VRChatAPIs {
@@ -29,6 +30,7 @@ interface Cache {
class VRChatAPI { class VRChatAPI {
public client: VRChatAPIs | null; public client: VRChatAPIs | null;
public configuration: VRChat.Configuration | null; public configuration: VRChat.Configuration | null;
private ready = false; private ready = false;
private cache: Cache; private cache: Cache;
private useragent: string | null = null; private useragent: string | null = null;
@@ -46,7 +48,8 @@ class VRChatAPI {
this.useragent = `Yumi/${App.version.replaceAll('/', '').replaceAll(' ', '-').replaceAll('--', '-')} ${ this.useragent = `Yumi/${App.version.replaceAll('/', '').replaceAll(' ', '-').replaceAll('--', '-')} ${
Environment.get().VRC_CONTACT_EMAIL Environment.get().VRC_CONTACT_EMAIL
}`; }`;
Logger.debug(`[VRChat] Using user agent ${this.useragent}`);
Logger.debug(LOGGING_TAG, `Using user agent ${this.useragent}`);
this.configuration = new VRChat.Configuration({ this.configuration = new VRChat.Configuration({
//username: Environment.get().VRC_USERNAME, //username: Environment.get().VRC_USERNAME,
//;password: Environment.get().VRC_PASSWORD, //;password: Environment.get().VRC_PASSWORD,
@@ -66,31 +69,41 @@ class VRChatAPI {
WorldsApi: new VRChat.WorldsApi(this.configuration) WorldsApi: new VRChat.WorldsApi(this.configuration)
}; };
Logger.info('Logging in to VRChat'); Logger.info(LOGGING_TAG, 'Logging in to VRChat');
let res; let res;
try { try {
res = await this.client.AuthenticationApi.getCurrentUser(); res = await this.client.AuthenticationApi.getCurrentUser();
} catch (err: any) { } catch (err: any) {
if (err.response?.status === 401) { if (err.response?.status === 401) {
Logger.error('Unable to log in to VRChat, check your credentials'); Logger.error(LOGGING_TAG, 'Unable to log in, check your credentials');
return; return;
} else throw err; } else throw err;
} }
if ((res.data as any).requiresTwoFactorAuth) {
Logger.error(
LOGGING_TAG,
'Two factor authentication is required, please authenticate',
(res.data as any).requiresTwoFactorAuth
);
Logger.info(LOGGING_TAG, `Auth Cookie: ${this.configuration.baseOptions.headers.Cookie}`);
return;
}
this.ready = true; this.ready = true;
Logger.info('Logged in to VRChat as ' + res.data.displayName); Logger.info(LOGGING_TAG, 'Logged in to VRChat as ' + res.data.displayName);
setInterval(() => { setInterval(() => {
for (let key in this.cache.Users) { for (let key in this.cache.Users) {
if (this.cache.Users[key].expires < new Date()) { if (this.cache.Users[key].expires < new Date()) {
Logger.debug('[VRChat] [Cache] Removing user ' + key + ' from cache'); Logger.debug(LOGGING_TAG, `Removing user ${key} from cache (expired)`);
delete this.cache.Users[key]; delete this.cache.Users[key];
} }
} }
for (let key in this.cache.Worlds) { for (let key in this.cache.Worlds) {
if (this.cache.Worlds[key].expires < new Date()) { if (this.cache.Worlds[key].expires < new Date()) {
Logger.debug('[VRChat] [Cache] Removing world ' + key + ' from cache'); Logger.debug(LOGGING_TAG, `Removing world ${key} from cache (expired)`);
delete this.cache.Worlds[key]; delete this.cache.Worlds[key];
} }
} }
@@ -129,13 +142,14 @@ class VRChatAPI {
public async getCachedUserById(id: string) { public async getCachedUserById(id: string) {
if (typeof this.cache.Users[id] !== 'undefined') { if (typeof this.cache.Users[id] !== 'undefined') {
Logger.debug('[VRChat] [Cache] Cache hit for user ' + id);
if (this.cache.Users[id].expires > new Date()) { if (this.cache.Users[id].expires > new Date()) {
Logger.debug(LOGGING_TAG, `Cache hit for user ${id}`);
return this.cache.Users[id].user; return this.cache.Users[id].user;
} }
Logger.debug(LOGGING_TAG, `Cache hit for user ${id} but expired, refreshing`);
} }
Logger.debug('[VRChat] [Cache] Cache miss for ' + id); Logger.debug(LOGGING_TAG, `Looking up user ${id} in VRChat API`);
let user; let user;
try { try {
user = await this.client!.UsersApi.getUser(id); user = await this.client!.UsersApi.getUser(id);
@@ -148,7 +162,7 @@ class VRChatAPI {
return null; return null;
} }
Logger.debug('[VRChat] [Cache] Caching user ' + id); Logger.debug(LOGGING_TAG, `Caching user ${id}`);
this.cache.Users[id] = { this.cache.Users[id] = {
user: user.data, user: user.data,
expires: new Date(Date.now() + VRC_CACHE_DURATION) expires: new Date(Date.now() + VRC_CACHE_DURATION)
@@ -158,13 +172,14 @@ class VRChatAPI {
public async getCachedWorldById(id: string) { public async getCachedWorldById(id: string) {
if (typeof this.cache.Worlds[id] !== 'undefined') { if (typeof this.cache.Worlds[id] !== 'undefined') {
Logger.debug('[VRChat] [Cache] Cache hit for world ' + id);
if (this.cache.Worlds[id].expires > new Date()) { if (this.cache.Worlds[id].expires > new Date()) {
Logger.debug(LOGGING_TAG, `Cache hit for world ${id}`);
return this.cache.Worlds[id].world; return this.cache.Worlds[id].world;
} }
Logger.debug(LOGGING_TAG, `Cache hit for world ${id} but expired, refreshing`);
} }
Logger.debug('[VRChat] [Cache] Cache miss for ' + id); Logger.debug(LOGGING_TAG, `Looking up world ${id} in VRChat API`);
let world; let world;
try { try {
world = await this.client!.WorldsApi.getWorld(id); world = await this.client!.WorldsApi.getWorld(id);
@@ -177,12 +192,11 @@ class VRChatAPI {
return null; return null;
} }
Logger.debug('[VRChat] [Cache] Caching world ' + id); Logger.debug(LOGGING_TAG, `Caching world ${id}`);
this.cache.Worlds[id] = { this.cache.Worlds[id] = {
world: world.data, world: world.data,
expires: new Date(Date.now() + VRC_CACHE_DURATION) expires: new Date(Date.now() + VRC_CACHE_DURATION)
}; };
return world.data; return world.data;
} }