Hola, Habr. Este es el artículo 2 de la serie ssh-chat.
Lo que haremos:
- Añadiremos la posibilidad de crear nuestras propias funciones de formato
- Añadiremos soporte para markdown
- Añadiremos soporte para bots
- Aumentaremos la seguridad de las contraseñas (hash y sal)
Lamentablemente, no habrá envío de archivos
Funciones de formato personalizadas
Actualmente se ha implementado soporte para las siguientes funciones de formato:
@color@bold@underline@hex@box
Pero hay que añadir la posibilidad de crear sus propias funciones:
Todas las funciones se almacenan en
Así que basta con crear una funciónregisterMethod:
// parserExec.js at end
module.exports.registerMethod = function(name, func) {
methods[name] = func
}También necesitamos devolver este método después de crear el servidor
// index.js at require part
const { registerMethod } = require('./parserExec')
// index.js at end
module.exports.registerMethod = registerMethodAhora, al crear el servidor, podemos registrar métodos de formato. Ejemplo:
const chat = require('.')
const { formatNick } = require('./format')
chat({})
chat.registerMethod('hello', function(p, name){
return '¡Hola, ' + formatNick(name) + '!'
})
Soporte para markdown
Markdown es muy conveniente, así que lo añadiremos usando
// format.js near require
const marked = require('marked');
const TerminalRenderer = require('marked-terminal');
marked.setOptions({
renderer: new TerminalRenderer()
});
// format.js line 23
message = marked(message)
Bots
Cómo funcionará
let writeBotBob = chat.registerBot({
name: 'botBob',
onConnect(nick, write){
write('@hello{' + nick + '}')
},
onDisconnect(nick, write){},
onMessage(nick, message, write) {
if(message == 'botBob!') write('Estoy aquí')
},
onCommand(command, write) {
write('Haciendo ' + command)
}
})onCommand se puede invocar usando @bot(botBob){Command}
Todo lo relacionado con los bots está descrito en el archivo:
let bots = []; // Все боты
let onWrite = () => {};
function getWrite(bot) { // Генерирует метод отправки сообщения для бота
return msg => {
onWrite(bot.name, msg);
};
}
module.exports.message = function message(nick, message) { // index.js выполнит эту функцию после отправки сообщения
bots.forEach(bot => {
try {
bot.onMessage(nick, message, getWrite(bot));
} catch (e) {
console.error(e);
}
});
};
module.exports.connect = function message(nick) { // При соединении
bots.forEach(bot => {
try {
bot.onConnect(nick, getWrite(bot));
} catch (e) {
console.error(e);
}
});
};
module.exports.disConnect = function message(nick) { // При отсоединении
bots.forEach(bot => {
try {
bot.onDisconnect(nick, message, getWrite(bot));
} catch (e) {
console.error(e);
}
});
};
module.exports.command = function message(name, message) { // При выполнении команды
bots.forEach(bot => {
if (bot.name == name) {
try {
bot.onCommand(message, getWrite(bot));
} catch (e) {
console.error(e);
}
}
});
};
module.exports.registerBot = function(bot) {
bots.push(bot);
return getWrite(bot)
};
module.exports.onMessage = func => {
onWrite = func;
};

Lo que se puede hacer con los bots:
- Monitor de carga
- Desplegar
- Tablero de tareas
Hash y sal
¿Por qué no llaves ssh? Porque las llaves ssh serán diferentes en diferentes dispositivos
Crearemos un archivo que se encargará de verificar y crear contraseñas
// crypto.js
const crypto = require('crypto');
function genRandomString(length) {
return crypto
.randomBytes(Math.ceil(length / 2))
.toString('hex')
.slice(0, length);
}
function sha512(password, salt){
const hash = crypto.createHmac('sha512', salt); /** Hashing algorithm sha512 */
hash.update(password);
const value = hash.digest('hex');
return value
};
function checkPass(pass, obj){
return obj.password == sha512(pass, obj.salt)
}
function encodePass(pass){
const salt = genRandomString(16)
return JSON.stringify({
salt,
password: sha512(pass, salt)
})
}
module.exports.encodePass = encodePass
module.exports.checkPass = checkPassTambién un script para salado y hash de contraseñas
// To generate password run node ./encryptPassword password
const { encodePass } =require('./crypto')
console.log(encodePass(process.argv[2]))Actualizamos en users.json y en lugar de comparar en lobby.js usamos checkPassword
Summary
Como resultado, tenemos un chat por ssh con capacidades de formato y bots.
Fuente: habr.com
