Implemented most MRC server calls
This commit is contained in:
parent
9c2b3be0b1
commit
67ecad4e1a
Binary file not shown.
177
core/mrc.js
177
core/mrc.js
|
@ -6,10 +6,10 @@ const Log = require('./logger.js').log;
|
||||||
const { MenuModule } = require('./menu_module.js');
|
const { MenuModule } = require('./menu_module.js');
|
||||||
const { Errors } = require('./enig_error.js');
|
const { Errors } = require('./enig_error.js');
|
||||||
const {
|
const {
|
||||||
pipeToAnsi,
|
pipeToAnsi
|
||||||
stripMciColorCodes
|
|
||||||
} = require('./color_codes.js');
|
} = require('./color_codes.js');
|
||||||
const stringFormat = require('./string_format.js');
|
const stringFormat = require('./string_format.js');
|
||||||
|
const StringUtil = require('./string_util.js')
|
||||||
const { getThemeArt } = require('./theme.js');
|
const { getThemeArt } = require('./theme.js');
|
||||||
|
|
||||||
|
|
||||||
|
@ -24,8 +24,13 @@ exports.moduleInfo = {
|
||||||
desc : 'Connects to an MRC chat server',
|
desc : 'Connects to an MRC chat server',
|
||||||
author : 'RiPuk',
|
author : 'RiPuk',
|
||||||
packageName : 'codes.l33t.enigma.mrc.client',
|
packageName : 'codes.l33t.enigma.mrc.client',
|
||||||
|
|
||||||
|
// Whilst this module was put together by me (RiPuk), it should be noted that a lot of the ideas (and even some code snippets) were
|
||||||
|
// borrowed from the Synchronet implementation of MRC by echicken. So...thanks, your code was very helpful in putting this together.
|
||||||
|
// Source at http://cvs.synchro.net/cgi-bin/viewcvs.cgi/xtrn/mrc/.
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
const FormIds = {
|
const FormIds = {
|
||||||
mrcChat : 0,
|
mrcChat : 0,
|
||||||
};
|
};
|
||||||
|
@ -36,7 +41,8 @@ var MciViewIds = {
|
||||||
inputArea : 2,
|
inputArea : 2,
|
||||||
roomName : 3,
|
roomName : 3,
|
||||||
roomTopic : 4,
|
roomTopic : 4,
|
||||||
|
mrcUsers : 5,
|
||||||
|
mrcBbses : 6,
|
||||||
customRangeStart : 10, // 10+ = customs
|
customRangeStart : 10, // 10+ = customs
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -61,29 +67,31 @@ exports.getModule = class mrcModule extends MenuModule {
|
||||||
|
|
||||||
|
|
||||||
this.menuMethods = {
|
this.menuMethods = {
|
||||||
|
|
||||||
sendChatMessage : (formData, extraArgs, cb) => {
|
sendChatMessage : (formData, extraArgs, cb) => {
|
||||||
// const message = _.get(formData.value, 'inputArea', '').trim();
|
|
||||||
|
|
||||||
const inputAreaView = this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.inputArea);
|
const inputAreaView = this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.inputArea);
|
||||||
const inputData = inputAreaView.getData();
|
const inputData = inputAreaView.getData();
|
||||||
const textFormatObj = {
|
|
||||||
fromUserName : state.alias,
|
|
||||||
message : inputData
|
|
||||||
};
|
|
||||||
|
|
||||||
const messageFormat =
|
this.processSentMessage(inputData);
|
||||||
this.config.messageFormat ||
|
|
||||||
'|00|10<|02{fromUserName}|10>|00 |03{message}|00';
|
|
||||||
|
|
||||||
try {
|
|
||||||
sendChat(stringFormat(messageFormat, textFormatObj));
|
|
||||||
} catch(e) {
|
|
||||||
self.client.log.warn( { error : e.message }, 'MRC error');
|
|
||||||
}
|
|
||||||
inputAreaView.clearText();
|
inputAreaView.clearText();
|
||||||
|
|
||||||
return cb(null);
|
return cb(null);
|
||||||
|
},
|
||||||
|
|
||||||
|
movementKeyPressed : (formData, extraArgs, cb) => {
|
||||||
|
const bodyView = this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.chatLog); // :TODO: use const here vs magic #
|
||||||
|
console.log("got arrow key");
|
||||||
|
switch(formData.key.name) {
|
||||||
|
case 'down arrow' : bodyView.scrollDocumentUp(); break;
|
||||||
|
case 'up arrow' : bodyView.scrollDocumentDown(); break;
|
||||||
|
case 'page up' : bodyView.keyPressPageUp(); break;
|
||||||
|
case 'page down' : bodyView.keyPressPageDown(); break;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.viewControllers.mrcChat.switchFocus(MciViewIds.mrcChat.inputArea);
|
||||||
|
|
||||||
|
return cb(null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -118,12 +126,12 @@ exports.getModule = class mrcModule extends MenuModule {
|
||||||
// handshake with multiplexer
|
// handshake with multiplexer
|
||||||
state.socket.write(`--DUDE-ITS--|${state.alias}\n`);
|
state.socket.write(`--DUDE-ITS--|${state.alias}\n`);
|
||||||
|
|
||||||
|
|
||||||
sendClientConnect()
|
sendClientConnect()
|
||||||
|
|
||||||
// send register to central MRC every 60s
|
// send register to central MRC and get stats every 60s
|
||||||
setInterval(function () {
|
setInterval(function () {
|
||||||
sendHeartbeat(state.socket)
|
sendHeartbeat(state.socket)
|
||||||
|
sendServerCommand('STATS')
|
||||||
}, 60000);
|
}, 60000);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -131,7 +139,6 @@ exports.getModule = class mrcModule extends MenuModule {
|
||||||
state.socket.on('data', data => {
|
state.socket.on('data', data => {
|
||||||
data = data.toString();
|
data = data.toString();
|
||||||
this.processReceivedMessage(data);
|
this.processReceivedMessage(data);
|
||||||
this.viewControllers.mrcChat.switchFocus(MciViewIds.mrcChat.inputArea);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
return(callback);
|
return(callback);
|
||||||
|
@ -153,36 +160,145 @@ exports.getModule = class mrcModule extends MenuModule {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const chatMessageView = this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.chatLog);
|
||||||
|
|
||||||
if (message.from_user == 'SERVER') {
|
if (message.from_user == 'SERVER') {
|
||||||
const params = message.body.split(':');
|
const params = message.body.split(':');
|
||||||
|
|
||||||
switch (params[0]) {
|
switch (params[0]) {
|
||||||
case 'BANNER':
|
case 'BANNER':
|
||||||
const chatMessageView = this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.chatLog);
|
|
||||||
chatMessageView.addText(pipeToAnsi(params[1].replace(/^\s+/, '')));
|
chatMessageView.addText(pipeToAnsi(params[1].replace(/^\s+/, '')));
|
||||||
chatMessageView.redraw();
|
chatMessageView.redraw();
|
||||||
|
break;
|
||||||
|
|
||||||
case 'ROOMTOPIC':
|
case 'ROOMTOPIC':
|
||||||
this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.roomName).setText(params[1]);
|
this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.roomName).setText(`#${params[1]}`);
|
||||||
this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.roomTopic).setText(params[2]);
|
this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.roomTopic).setText(pipeToAnsi(params[2]));
|
||||||
|
state.room = params[1]
|
||||||
|
break;
|
||||||
|
|
||||||
case 'USERLIST':
|
case 'USERLIST':
|
||||||
state.nicks = params[1].split(',');
|
state.nicks = params[1].split(',');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'STATS':
|
||||||
|
const stats = params[1].split(' ');
|
||||||
|
this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.mrcUsers).setText(stats[2]);
|
||||||
|
this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.mrcBbses).setText(stats[0]);
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
chatMessageView.addText(pipeToAnsi(message.body));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
if (message.from_user == state.alias && message.to_user == "NOTME") {
|
||||||
|
// don't deliver NOTME messages
|
||||||
|
return;
|
||||||
} else {
|
} else {
|
||||||
// if we're here then we want to show it to the user
|
// if we're here then we want to show it to the user
|
||||||
const chatMessageView = this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.chatLog);
|
|
||||||
const currentTime = moment().format(this.client.currentTheme.helpers.getTimeFormat());
|
const currentTime = moment().format(this.client.currentTheme.helpers.getTimeFormat());
|
||||||
chatMessageView.addText(pipeToAnsi("|08" + currentTime + "|00 " + message.body));
|
chatMessageView.addText(pipeToAnsi("|08" + currentTime + "|00 " + message.body + "|00"));
|
||||||
chatMessageView.redraw();
|
chatMessageView.redraw();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.viewControllers.mrcChat.switchFocus(MciViewIds.mrcChat.inputArea);
|
||||||
|
return;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
processSentMessage(message) {
|
||||||
|
|
||||||
|
if (message.startsWith('/')) {
|
||||||
|
const cmd = message.split(' ');
|
||||||
|
cmd[0] = cmd[0].substr(1).toLowerCase();
|
||||||
|
|
||||||
|
switch (cmd[0]) {
|
||||||
|
case 'rainbow':
|
||||||
|
const line = message.replace(/^\/rainbow\s/, '').split(' ').reduce(function (a, c) {
|
||||||
|
var cc = Math.floor((Math.random() * 31) + 1).toString().padStart(2, '0');
|
||||||
|
a += `|${cc}${c}|00 `
|
||||||
|
return a;
|
||||||
|
}, '').substr(0, 140).replace(/\\s\|\d*$/, '');
|
||||||
|
|
||||||
|
this.processSentMessage(line)
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'l33t':
|
||||||
|
this.processSentMessage(StringUtil.stylizeString(message.substr(5), 'l33t'));
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'kewl':
|
||||||
|
const text_modes = Array('f','v','V','i','M');
|
||||||
|
const mode = text_modes[Math.floor(Math.random() * text_modes.length)];
|
||||||
|
this.processSentMessage(StringUtil.stylizeString(message.substr(5), mode));
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'whoon':
|
||||||
|
sendServerCommand('WHOON');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'motd':
|
||||||
|
sendServerCommand('MOTD');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'meetups':
|
||||||
|
sendServerCommand('MEETUPS');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'bbses':
|
||||||
|
sendServerCommand('CONNECTED');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'topic':
|
||||||
|
sendServerCommand(`NEWTOPIC:${state.room}:${message.substr(7)}`)
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'join':
|
||||||
|
joinRoom(cmd[1]);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'chatters':
|
||||||
|
sendServerCommand('CHATTERS');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'rooms':
|
||||||
|
sendServerCommand('LIST');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'clear':
|
||||||
|
const chatLogView = this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.chatLog)
|
||||||
|
chatLogView.setText('');
|
||||||
|
sendServerCommand('STATS');
|
||||||
|
// chatLogView.redraw();
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
// just format and send
|
||||||
|
const textFormatObj = {
|
||||||
|
fromUserName : state.alias,
|
||||||
|
message : message
|
||||||
|
};
|
||||||
|
|
||||||
|
const messageFormat =
|
||||||
|
this.config.messageFormat ||
|
||||||
|
'|00|10<|02{fromUserName}|10>|00 |03{message}|00';
|
||||||
|
|
||||||
|
try {
|
||||||
|
sendChat(stringFormat(messageFormat, textFormatObj));
|
||||||
|
} catch(e) {
|
||||||
|
self.client.log.warn( { error : e.message }, 'MRC error');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -222,12 +338,15 @@ function sendHeartbeat() {
|
||||||
|
|
||||||
function sendClientConnect() {
|
function sendClientConnect() {
|
||||||
sendHeartbeat();
|
sendHeartbeat();
|
||||||
joinRoom('lobby');
|
|
||||||
sendServerCommand('BANNERS');
|
|
||||||
sendServerCommand('MOTD');
|
sendServerCommand('MOTD');
|
||||||
|
sendServerCommand('STATS');
|
||||||
|
joinRoom('lobby');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
function joinRoom(room) {
|
function joinRoom(room) {
|
||||||
|
// room names are displayed with a # but referred to without. confusing.
|
||||||
|
room = room.replace(/^#/, '');
|
||||||
sendServerCommand(`NEWROOM:${state.room}:${room}`);
|
sendServerCommand(`NEWROOM:${state.room}:${room}`);
|
||||||
|
sendServerCommand('USERLIST')
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,7 +46,7 @@ exports.getModule = class MrcModule extends ServerModule {
|
||||||
const enigmaVersion = "ENiGMA-BBS_" + require('../../../package.json').version
|
const enigmaVersion = "ENiGMA-BBS_" + require('../../../package.json').version
|
||||||
|
|
||||||
const mrcConnectOpts = {
|
const mrcConnectOpts = {
|
||||||
port : 5000,
|
port : 50000,
|
||||||
host : "mrc.bottomlessabyss.net"
|
host : "mrc.bottomlessabyss.net"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -65,6 +65,9 @@ exports.getModule = class MrcModule extends ServerModule {
|
||||||
// split on \n to deal with getting messages in batches
|
// split on \n to deal with getting messages in batches
|
||||||
data.toString().split('\n').forEach( item => {
|
data.toString().split('\n').forEach( item => {
|
||||||
if (item == '') return;
|
if (item == '') return;
|
||||||
|
console.log('start')
|
||||||
|
console.log(item)
|
||||||
|
console.log('end')
|
||||||
|
|
||||||
this.log.debug( { data : item } , `Received data`);
|
this.log.debug( { data : item } , `Received data`);
|
||||||
let message = this.parseMessage(item);
|
let message = this.parseMessage(item);
|
||||||
|
|
Loading…
Reference in New Issue