Ssh-chat, pàirt 2

Halò, Habr. Seo an dàrna artaigil san t-sreath ssh-chat.

Dè nì sinn:

  • Nach cuir sinn ris a’ chomas na gnìomhan dealbhaidh agad fhèin a chruthachadh
  • Nach cuir sinn taic markdown ris
  • Nach cuir sinn taic bot ris
  • Meudaich tèarainteachd facal-faire (hash agus salann)
    Duilich, ach cha tèid faidhlichean a chuir.

Feartan dealbhaidh gnàthaichte

An-dràsta, tha na gnìomhan dealbhaidh a leanas a’ faighinn taic:

  • @color
  • @bold
  • @underline
  • @hex
  • @box
    Ach is fhiach an comas a chuir ris na gnìomhan agad fhèin a chruthachadh:
    Tha a h-uile gnìomh air a stòradh a-steach объекте под названием methods
    Mar sin bidh e gu leòr airson gnìomh a chruthachadh registerMethod:

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

Feumaidh tu cuideachd am modh seo a thilleadh às deidh dhut am frithealaiche a chruthachadh

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

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

A-nis, nuair a chruthaicheas sinn frithealaiche, is urrainn dhuinn dòighean cruth a chlàradh. Eisimpleir:

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

chat({})

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

Ssh-chat, pàirt 2

Taic Markdown

Tha Markdown gu math goireasach, mar sin leig dhuinn a chuir ris a’ cleachdadh terminal comharraichte

// 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, pàirt 2

Bots

Ciamar a bhios e ag obair

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 faodar a ghairm cleachdadh @bot(botBob){Command}

Tha a h-uile dad airson obrachadh le botaichean air a mhìneachadh san fhaidhle:

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, pàirt 2

Dè as urrainn dhut a dhèanamh le botaichean:

  • Luchdaich a-nuas monitor
  • a 'cleachdadh
  • Bòrd gnìomh

Hash agus salann

Carson nach iuchraichean ssh? Leis gum bi iuchraichean ssh eadar-dhealaichte air diofar innealan
Nach cruthaich sinn faidhle a bhios an urra ri sgrùdadh agus cruthachadh faclan-faire

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

Cuideachd sgriobt airson sailleadh agus hashing am facal-faire

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

Bidh sinn ag ùrachadh ann an luchd-cleachdaidh.json agus an àite coimeas a dhèanamh ann an lobby.js bidh sinn a’ cleachdadh checkPassword

An toradh

Mar thoradh air an sin, bidh còmhradh againn tro ssh le comasan dealbhaidh agus botaichean.
Stòr-tasgaidh deireannach

Source: www.habr.com

Cuir beachd ann