Ciao, Habr. Questo è il secondo articolo di un ciclo su ssh-chat.
Cosa faremo:
- Aggiungeremo la possibilità di creare funzioni di formattazione personalizzate.
- Aggiungeremo supporto per markdown.
- Aggiungeremo il supporto per bot.
- Incrementeremo la sicurezza delle password (hash e sale).
Purtroppo, non sarà possibile inviare file.
Funzioni di formattazione personalizzate.
Al momento sono supportate le seguenti funzioni di formattazione:
@color@bold@underline@hex@box
Ma dobbiamo aggiungere la possibilità di creare le proprie funzioni:
Tutte le funzioni sono memorizzate in
Quindi sarà sufficiente creare una funzioneregisterMethod.:
// parserExec.js at end
module.exports.registerMethod = function(name, func) {
methods[name] = func
}Questo metodo deve essere restituito dopo la creazione del server.
// index.js at require part
const { registerMethod } = require('./parserExec')
// index.js at end
module.exports.registerMethod = registerMethodOra, durante la creazione del server, possiamo registrare le funzioni di formattazione. Esempio:
const chat = require('.')
const { formatNick } = require('./format')
chat({})
chat.registerMethod('hello', function(p, name){
return 'Ciao, ' + formatNick(name) + '!'
})
Supporto per markdown.
Markdown è molto comodo, quindi lo aggiungeremo con
// 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)
Bot.
Come funzionerà.
let writeBotBob = chat.registerBot({
name: 'botBob',
onConnect(nick, write){
write('@hello{' + nick + '}')
},
onDisconnect(nick, write){},
onMessage(nick, message, write) {
if(message == 'botBob!') write('Sono qui')
},
onCommand(command, write) {
write('Eseguendo ' + command)
}
})onCommand può essere chiamato con @bot(botBob){Command}
Tutto per lavorare con i bot è descritto nel file:
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;
};

Cosa si può fare con i bot:
- Monitoraggio del carico
- Deploy
- Board delle attività
Hash e sale
Perché non le chiavi SSH? Perché le chiavi SSH saranno diverse su dispositivi diversi
Creeremo un file responsabile per il controllo e la creazione delle password
// 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 = checkPassInoltre, uno script per salare e hashare la password
// To generate password run node ./encryptPassword password
const { encodePass } =require('./crypto')
console.log(encodePass(process.argv[2]))Aggiorniamo in users.json e invece di confrontare in lobby.js utilizziamo checkPassword
Risultato
Di conseguenza, abbiamo una chat SSH con funzionalità di formattazione e bot.
Fonte: habr.com
