ssh-ቻት ክፍል 2

ሰላም ሀብር ይህ በssh-ቻት ተከታታይ ውስጥ 2ኛው መጣጥፍ ነው።

ምን እናደርጋለን፡-

  • የእራስዎን የንድፍ ተግባራትን የመፍጠር ችሎታን እንጨምር
  • የማርክ ማድረጊያ ድጋፍን እንጨምር
  • የቦት ድጋፍን እንጨምር
  • የይለፍ ቃል ደህንነትን ይጨምሩ (ሃሽ እና ጨው)
    ይቅርታ፣ ነገር ግን ፋይሎችን መላክ አይኖርም።

ብጁ ንድፍ ባህሪያት

በአሁኑ ጊዜ የሚከተሉት የንድፍ ተግባራት ይደገፋሉ:

  • @color
  • @bold
  • @underline
  • @hex
  • @box
    ግን የራስዎን ተግባራት የመፍጠር ችሎታ ማከል ጠቃሚ ነው-
    ሁሉም ተግባራት በ ውስጥ ተከማችተዋል объекте под названием methods
    ስለዚህ ተግባር ለመፍጠር በቂ ይሆናል registerMethod:

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

በተጠቃሚዎች.json ውስጥ እናዘምነዋለን እና በ lobby.js ውስጥ ከማነፃፀር ይልቅ የቼክ የይለፍ ቃል እንጠቀማለን።

ውጤቱ

በውጤቱም፣ ከዲዛይን አቅም እና ቦቶች ጋር በssh በኩል ውይይት አለን።
የመጨረሻ ማከማቻ

ምንጭ: hab.com

አስተያየት ያክሉ