Ssh-chat، حصو 2

هيلو، حبر. هي ٻيو مضمون آهي ssh-chat سيريز ۾.

اسان ڇا ڪنداسين:

  • اچو ته توهان جي پنهنجي ڊيزائن جي فنڪشن ٺاهڻ جي صلاحيت شامل ڪريو
  • اچو ته شامل ڪريو مارڪ ڊائون سپورٽ
  • اچو ته بوٽ سپورٽ شامل ڪريو
  • پاسورڊ سيڪيورٽي وڌايو (هيش ۽ لوڻ)
    معاف ڪجو، پر فائلن جي ڪا به موڪل نه هوندي.

ڪسٽم ڊيزائن خاصيتون

في الحال، هيٺين ڊيزائن جي ڪمن کي سپورٽ ڪري ٿو:

  • @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-chat، حصو 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-chat، حصو 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-chat، حصو 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]))

اسان user.json ۾ تازه ڪاري ڪريون ٿا ۽ lobby.js ۾ مقابلو ڪرڻ بدران چيڪ پاسورڊ استعمال ڪندا آهيون

نتيجو

نتيجي طور، اسان وٽ ssh ذريعي هڪ چيٽ آهي ڊيزائن جي صلاحيتن ۽ بوٽن سان.
آخري ذخيرو

جو ذريعو: www.habr.com

تبصرو شامل ڪريو