Ssh-chat, parte 2

Salutami, Habr. Questu hè u 2u articulu in a serie ssh-chat.

Cosa faremu:

  • Aghjunghjemu a capacità di creà e vostre funzioni di cuncepimentu
  • Aghjunghjemu u supportu di markdown
  • Aghjunghjemu u supportu di bot
  • Aumentà a sicurità di password (hash è sal)
    Scusate, ma ùn ci sarà micca mandatu di schedari.

Funzioni di cuncepimentu persunalizata

Attualmente, e seguenti funzioni di disignu sò supportate:

  • @color
  • @bold
  • @underline
  • @hex
  • @box
    Ma vale a pena aghjunghje a capacità di creà e vostre propiu funzioni:
    Tutte e funzioni sò almacenate in объекте под названием methods
    Allora serà abbastanza per creà una funzione registerMethod:

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

Avete ancu bisognu di rinvià stu metudu dopu à creà u servitore

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

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

Avà, quandu creanu un servitore, pudemu registrà metudi di furmatu. Esempiu:

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

chat({})

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

Ssh-chat, parte 2

Supportu di Markdown

Markdown hè assai còmuda, allora aghjunghjemu l'usu terminal marcatu

// 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, parte 2

Bots

Cumu hà da travaglià

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 pò esse chjamatu usendu @bot(botBob){Command}

Tuttu u travagliu cù i bots hè descrittu in u schedariu:

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, parte 2

Ciò chì pudete fà cù i bots:

  • Monitor di carica
  • Implantar
  • Task board

Hash è sali

Perchè micca e chjave ssh? Perchè i chjavi ssh seranu diffirenti nantu à i dispusitivi diffirenti
Creemu un schedariu chì serà rispunsevule per verificà è creà 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 = checkPass

Ancu un script per saltà è hashing a password

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

Avemu aghjurnatu in users.json è invece di paragunà in lobby.js usemu checkPassword

U risultatu

In u risultatu, avemu un chat via ssh cù capacità di cuncepimentu è bots.
Repositoriu finale

Source: www.habr.com

Add a comment