Ssh-sgwrs, rhan 2

Helo, Habr. Dyma'r 2il erthygl yn y gyfres ssh-chat.

Beth fyddwn ni'n ei wneud:

  • Gadewch i ni ychwanegu'r gallu i greu eich swyddogaethau dylunio eich hun
  • Gadewch i ni ychwanegu cefnogaeth marcio i lawr
  • Gadewch i ni ychwanegu cefnogaeth bot
  • Cynyddu diogelwch cyfrinair (hash a halen)
    Mae'n ddrwg gennym, ond ni fydd unrhyw anfon ffeiliau.

Nodweddion dylunio personol

Ar hyn o bryd, cefnogir y swyddogaethau dylunio canlynol:

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

Mae angen i chi hefyd ddychwelyd y dull hwn ar Γ΄l creu'r gweinydd

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

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

Nawr, wrth greu gweinydd, gallwn gofrestru dulliau fformatio. Enghraifft:

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

chat({})

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

Ssh-sgwrs, rhan 2

Cefnogaeth Markdown

Mae Markdown yn gyfleus iawn, felly gadewch i ni ei ychwanegu gan ddefnyddio terfynell wedi'i marcio

// 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-sgwrs, rhan 2

Bots

Sut y bydd yn gweithio

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 gellir ei alw yn defnyddio @bot(botBob){Command}

Disgrifir popeth ar gyfer gweithio gyda bots yn y ffeil:

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-sgwrs, rhan 2

Beth allwch chi ei wneud gyda bots:

  • Llwytho monitor
  • defnyddio
  • Bwrdd tasg

Hash a halen

Beth am allweddi ssh? Oherwydd bydd allweddi ssh yn wahanol ar wahanol ddyfeisiau
Gadewch i ni greu ffeil a fydd yn gyfrifol am wirio a chreu cyfrineiriau

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

Hefyd sgript ar gyfer halltu a stwnsio'r cyfrinair

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

Rydym yn diweddaru yn users.json ac yn lle cymharu mewn lobby.js rydym yn defnyddio checkPassword

Cyfanswm

O ganlyniad, rydym yn cael sgwrs trwy ssh gyda galluoedd dylunio a bots.
Ystorfa derfynol

Ffynhonnell: hab.com

Ychwanegu sylw