SSH 聊天,第 2 部分

你好,哈布爾。 這是 ssh-chat 系列的第 2 篇文章。

我們將要做什麼:

  • 讓我們加入創建自己的設計功能的能力
  • 讓我們加入 Markdown 支持
  • 讓我們加入機器人支持
  • 提高密碼安全性(哈希和鹽)
    抱歉,不會發送文件。

客製化設計功能

目前支援以下設計功能:

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

創建伺服器後還需要返回此方法

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

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

現在,在建立伺服器時,我們可以註冊格式化方法。 例子:

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

chat({})

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

SSH 聊天,第 2 部分

支持降價

Markdown 非常方便,所以我們使用以下方式來添加它 端子標記

// 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 聊天,第 2 部分

機器人

它將如何運作

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 可以使用調用 @bot(botBob){Command}

文件中描述了與機器人一起工作的所有內容:

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 聊天,第 2 部分

您可以使用機器人做什麼:

  • 負載監控器
  • 部署
  • 任務板

哈希和鹽

為什麼不使用 ssh 金鑰? 因為ssh密鑰在不同裝置上會有所不同
讓我們建立一個文件來負責檢查和建立密碼

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

還有一個用於對密碼進行加鹽和散列處理的腳本

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

我們在 users.json 中進行更新,而不是在obby.js 中進行比較,我們使用 checkPassword

因此,我們可以透過 ssh 與設計功能和機器人進行聊天。
最終存儲庫

來源: www.habr.com

添加評論