1
0
Fork 0
master
Matthew 2021-08-09 14:36:39 -04:00
parent 96d47a040c
commit 406ba69637
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
3 changed files with 2 additions and 6 deletions

View File

@ -80,11 +80,9 @@ export default class CSCLI {
const parsed: { Username: string, Type: string, Message?: string, Data?: any, HMAC: string } = JSON.parse(args[0]);
// FINISH VERIFICATION CHECKS
const handler: Handler = this.handlers.get(parsed.Type);
console.log(handler);
if (!handler) return socket.destroy();
const context = new Context(socket, args[0], this.client);
console.log(context);
await handler.handle(context);
if (!context.socket.destroyed) {
socket.destroy();

View File

@ -29,8 +29,8 @@ export default class Context {
}
public send(v: string) {
console.log('writing or whateva');
this.socket.write(`${v.toString()}\n`, (err) => this.client.signale.error(`Error occurred while writing: ${err}`));
console.log(this.socket);
this.socket.write(`${v.toString()}\n`, (err) => err || this.client.signale.error(`Error occurred while writing: ${err}`));
this.socket.destroy();
}
}

View File

@ -8,9 +8,7 @@ export default class RAM extends Handler {
}
public async handle(ctx: Context) {
console.log('1');
const memoryConversion = dataConversion(Number(await ctx.client.util.exec(`memory ${ctx.data.username}`)) * 1000);
console.log(memoryConversion);
return ctx.send(memoryConversion);
}
}