ssh-chat part 2

Hola, Habr. Aquest és el segon article de la sèrie ssh-chat.

Què farem:

  • Afegim la possibilitat de crear les teves pròpies funcions de disseny
  • Afegim suport de reducció
  • Afegim suport de bot
  • Augmentar la seguretat de la contrasenya (hash i sal)
    Ho sentim, però no hi haurà cap enviament de fitxers.

Característiques de disseny personalitzat

Actualment, s'admeten les funcions de disseny següents:

  • @color
  • @bold
  • @underline
  • @hex
  • @box
    Però val la pena afegir la possibilitat de crear les vostres pròpies funcions:
    Totes les funcions s'emmagatzemen a объекте под названием methods
    Per tant, n'hi haurà prou amb crear una funció registerMethod:

// parserExec.js at end
module.exports.registerMethod  =  function(name, func) {
  methods[name] =  func
}

També heu de tornar aquest mètode després de crear el servidor

// index.js at require part
const { registerMethod } = require('./parserExec')

// index.js at end
module.exports.registerMethod  =  registerMethod

Ara, en crear un servidor, podem registrar mètodes de format. Exemple:

const  chat  =  require('.')
const { formatNick } =  require('./format')

chat({})

chat.registerMethod('hello', function(p, name){
  return  'Hi, '  +  formatNick(name) +  '!'
})

ssh-chat part 2

Suport de reducció

Markdown és molt convenient, així que l'afegim utilitzant terminal marcat

// 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)

ssh-chat part 2

Bots

Com funcionarà

let writeBotBob = chat.registerBot({
  name: 'botBob',

  onConnect(nick, write){
    write('@hello{' + nick + '}')
  },

  onDisconnect(nick, write){},

  onMessage(nick, message, write) {
    if(message == 'botBob!') write('I'm here')
  },

  onCommand(command, write) {
    write('Doing ' + command)
  }
})

onCommand es pot cridar utilitzant @bot(botBob){Command}

Tot per treballar amb bots es descriu al fitxer:

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;
};

ssh-chat part 2

Què pots fer amb els robots:

  • Monitor de càrrega
  • desplegar
  • Tauler de tasques

Haixí i sal

Per què no tecles ssh? Perquè les claus ssh seran diferents en diferents dispositius
Creem un fitxer que s'encarregarà de comprovar i crear contrasenyes

// 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 = checkPass

També un script per a la sala i l'hashing de la contrasenya

// To generate password run node ./encryptPassword password
const { encodePass } =require('./crypto')
console.log(encodePass(process.argv[2]))

Actualitzem a users.json i en comptes de comparar a lobby.js fem servir checkPassword

Total

Com a resultat, tenim un xat via ssh amb capacitats de disseny i bots.
Repositori final

Font: www.habr.com

Afegeix comentari