Ssh-chat, 2 dalis

Sveiki, Habr. Tai antrasis ssh-chat serijos straipsnis.

Ka mes darysime:

  • Pridėkime galimybę kurti savo dizaino funkcijas
  • Pridėkime sumažinimo palaikymą
  • Pridėkime roboto palaikymą
  • Padidinkite slaptažodžio saugumą (maišos ir druskos)
    Atsiprašome, bet failai nebus siunčiami.

Individualios dizaino ypatybės

Šiuo metu palaikomos šios dizaino funkcijos:

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

Sukūrę serverį taip pat turite grąžinti šį metodą

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

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

Dabar kurdami serverį galime registruoti formatavimo būdus. Pavyzdys:

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

chat({})

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

Ssh-chat, 2 dalis

Markdown palaikymas

Markdown yra labai patogu, todėl pridėkime jį naudodami pažymėtas terminalas

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

Botai

Kaip tai veiks

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 galima vadinti naudojant @bot(botBob){Command}

Viskas, kas reikalinga darbui su robotais, aprašyta faile:

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

Ką galite padaryti su robotais:

  • Apkrovos monitorius
  • Pasinaudokite
  • Užduočių lenta

Hašas ir druska

Kodėl ne ssh raktai? Kadangi ssh raktai skirtinguose įrenginiuose skirsis
Sukurkime failą, kuris bus atsakingas už slaptažodžių tikrinimą ir kūrimą

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

Taip pat slaptažodžio sūdymo ir maišos scenarijus

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

Mes atnaujiname user.json ir vietoj to, kad lygintume lobby.js, naudojame checkPassword

Visas

Dėl to mes kalbamės per ssh su dizaino galimybėmis ir robotais.
Galutinė saugykla

Šaltinis: www.habr.com

Добавить комментарий