真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用NodeJs怎么模仿SIP話機(jī)注冊(cè)-創(chuàng)新互聯(lián)

這篇文章將為大家詳細(xì)講解有關(guān)使用NodeJs怎么模仿SIP話機(jī)注冊(cè),文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

鐘樓ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書未來(lái)市場(chǎng)廣闊!成為成都創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!

項(xiàng)目依賴模塊:

  • NodeJs

  • readline:命令行輸入

  • ws:與服務(wù)端建立websocket連接

  • superagent:與服務(wù)端建立請(qǐng)求連接,效果類似ajax請(qǐng)求

  • tsk_md5:項(xiàng)目登錄密碼使用MD5加密

項(xiàng)目需求

模擬SIP話機(jī)頻繁向服務(wù)器發(fā)起注冊(cè)請(qǐng)求,以得到服務(wù)器大SIP注冊(cè)數(shù)

項(xiàng)目實(shí)現(xiàn)概述

  1. 終端輸入連續(xù)注冊(cè)分機(jī)的開始分機(jī)號(hào)和結(jié)束分機(jī)號(hào)

  2. 終端輸入統(tǒng)一的SIP注冊(cè)密碼

  3. 終端輸入服務(wù)器地址

  4. 先進(jìn)行用戶登錄鑒權(quán),用戶登錄鑒權(quán)通過(guò)后再發(fā)起SIP注冊(cè)

代碼分析

1. 引入項(xiàng)目所需模塊

var WebSocket = require('ws'),
 superagent = require('superagent'),
 tskMD5 = require('./tsk_md5')
 const readline = require('readline');

2. 創(chuàng)建readline 接口實(shí)例

const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout,
    prompt: 'OHAI> '
 });

3. 定義所需變量

var obj = {}, httpHeader = {}, baseUrl ='', pass = '', ip = '', websocketUrl = ''
var keepWsAlive, readyState

4. 讀取readline 輸入信息函數(shù)

function getReadline() {
 const lines = []; // 用于保存所有輸入信息。
 console.log('Please input the range of extensions(eg: 1001,1010):\n')
 rl.on("line", function(line) {
  if (line ==='') {
   console.log('The input is empty, please input again:\n')
  } else {
   lines.push(line);
   if (lines.length === 1) {
    obj.extensionsArr = line.split(',');
    console.log('Please input the password(eg:1234aa):\n')
   } else if (lines.length === 2) {
    obj.password = line;
    pass = line;
    console.log('Please input the ip(eg:192.168.124.125):\n')
   } else if (lines.length === 3) {
    websocketUrl = 'ws://' + line + ':8089/ws';
    obj.websocketUrl = websocketUrl;
    obj.ip = line;
    ip = line;
    console.log('Starting register...\n');
    // 開始注冊(cè)事件
    loopRegister(obj) 
   }
  }
 });
 
 // close事件監(jiān)聽
 rl.on("close", function(){
  // 結(jié)束程序
  process.exit(0);
 });
 }

終端運(yùn)行截圖

使用NodeJs怎么模仿SIP話機(jī)注冊(cè) 

5.注冊(cè)事件中包含幾個(gè)動(dòng)作

1)設(shè)置httpHeader:瀏覽器與服務(wù)器ajax請(qǐng)求有固定的請(qǐng)求頭信息,此處模擬瀏覽器的請(qǐng)求頭信息。

用于后續(xù)發(fā)送請(qǐng)求進(jìn)行用戶登錄鑒權(quán)。

function setHttpHeader(username) {
  httpHeader = {
   Accept:'application/json, text/javascript, */*; q=0.01',
   'Accept-Encoding': 'gzip, deflate',
   'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8,pt;q=0.7',
   'Cache-Control': 'no-cache',
   Connection: 'keep-alive',
   'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
   Cookie: 'TRACKID='+trackid+'; session-identify=sid121076289-1520217430; username=admin; user_id=0',
   Host: ip +':8089',
   Origin: 'http://'+ip+':8089',
   Pragma: 'no-cache',
   Referer: 'http://'+ip+':8089/gswave/',
   'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 Safari/537.36 SE 2.X MetaSr 1.0',
   'X-Requested-With':'XMLHttpRequest'
  }
  var accountData = {
   action:'challenge',
   user:username
  }
  baseUrl = 'http://'+ip+':8089/webrtccgi?';
  getChanllenge(accountData, username) // 用戶鑒權(quán)函數(shù)
 }

2)用戶登錄鑒權(quán)(本項(xiàng)目中與服務(wù)器交互需要使用,具體使用看服務(wù)器端設(shè)置)


function getChanllenge(accountData, username) {
  console.log('start getChangllenge')
  var challenge = ''
  //獲取challenge
   superagent
    .post(baseUrl)
    .set(httpHeader)
    .type('form')
    .send(accountData)
    .redirects(0)
    .end(function(err, result) {
     if (typeof(result) == 'undefined') {
      console.error("get challenge is error, result is undefined");
     } else {
      var responce = result.body
      if(responce && responce.status === 0) {
       challenge = responce.response.challenge
       getCookie(challenge, username)
      } else {
       console.error('get challenge is error, result.body.status is not 0')
      }
     }
    });
 }

 
 
 function getCookie(challenge, username) {
  var md5key = tskMD5.MD5.hexdigest(challenge + pass) // MD5加密用戶登錄密碼
  var subData={
   token: md5key,
   action: 'login',
   user: username
  }
  // 開始請(qǐng)求進(jìn)行用戶登錄密碼鑒權(quán),類似ajax請(qǐng)求
  superagent
   .post(baseUrl)
   .set(httpHeader)
   .type('form')
   .send(subData)
   .redirects(0)
   .end(function(err, res) {
    if (typeof(res) == 'undefined') {
     console.log("get cookie is error, result is undefined");
    } else {
     var responce = res.body
     if(responce && responce.status === 0) {
     // 登錄鑒權(quán)通過(guò),開始執(zhí)行SIP注冊(cè)
      var cookie = responce.response.cookie
      // 注冊(cè)函數(shù)
      startSocket(username)
     } else {
      console.log('get cookie is error, result.body.status is not 0')
     }
    }
   })
 }

與服務(wù)器建立websocket連接

項(xiàng)目中信令交互信息均通過(guò)websocket發(fā)送

var ws = new WebSocket(websocketUrl, "sip"); # 注意建立的是sip類型的websocket

 ws.on('open', function open() {
  console.log('ws open message1' + message1)
  readyState = WebSocket.OPEN
  // 發(fā)送相關(guān)信息
  ws.send(message); 
 });
 
 ws.on('message', function incoming(data) {
  a++;
  var dataArr = data.split('\r\n')
  if (dataArr[0].indexOf('401') > -1 && a === 1) {
   // 發(fā)送注冊(cè)信令函數(shù)(其中發(fā)送信令信息,均參考瀏覽器的發(fā)送頭進(jìn)行拼接)
   startRegister(ws, dataArr, username)
  } else if (dataArr[0].indexOf('200')) {
   // ws.close()
   // console.log('register sucess...')
  } else {
  }
 });

關(guān)于使用NodeJs怎么模仿SIP話機(jī)注冊(cè)就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。


文章標(biāo)題:使用NodeJs怎么模仿SIP話機(jī)注冊(cè)-創(chuàng)新互聯(lián)
URL鏈接:http://weahome.cn/article/dohcoo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部