通过代理进行SIP重定向(SIP.js)

时间:2014-02-06 02:32:47

标签: node.js sip freeswitch sip-server

我正在尝试创建一个用于一个目的的最小SIP代理:将请求重定向到另一个域。 catch是我重定向到需要授权的域,因此我假设我需要重写一些SIP属性,因为SIP授权部分基于目标的域名。

我尝试过发布302重定向以及简单地代理和更改每个SIP请求的值,但似乎没有人放弃这样做。我正在使用node.js库(sip.js)并尝试了重定向和代理模块(https://github.com/kirm/sip.js/blob/master/doc/api.markdown)。

我是否需要修改SIP数据以将请求重定向到另一个域并启用针对该其他域的身份验证?

1 个答案:

答案 0 :(得分:8)

下面是我使用自己的SIP服务器的基本节点脚本。您需要替换自己测试的凭据和IP地址。

代理脚本不会向客户端发送重定向响应,而是代表客户端向服务器发起新事务。在此模式下运行的SIP服务器更准确地称为背靠背用户代理(B2BUA)。我没有添加所需的所有功能,例如匹配并将响应传递回原始客户端;这方面有相当多的工作。

var sip = require('sip');
var digest = require('sip/digest');
var util = require('util');
var os = require('os');
var proxy = require('sip/proxy');

var registry = {
  'user': { user: "user", password: "password", realm: "sipserver.com"},
};

function rstring() { return Math.floor(Math.random()*1e6).toString(); }

sip.start({
  address: "192.168.33.116", // If the IP is not specified here the proxy uses a hostname in the Via header which will causes an issue if it's not fully qualified.
  logger: { 
    send: function(message, address) { debugger; util.debug("send\n" + util.inspect(message, false, null)); },
    recv: function(message, address) { debugger; util.debug("recv\n" + util.inspect(message, false, null)); }
  }
},
function(rq) {
  try {
    if(rq.method === 'INVITE') {  

       proxy.send(sip.makeResponse(rq, 100, 'Trying'));

      //looking up user info
      var username = sip.parseUri(rq.headers.to.uri).user;    
      var creds = registry[username];

      if(!creds) {  
        proxy.send(sip.makeResponse(rq, 404, 'User not found'));
      }
      else {
        proxy.send(rq, function(rs) {

            if(rs.status === 401) {

                // Update the original request so that it's not treated as a duplicate.
                rq.headers['cseq'].seq++;
                rq.headers.via.shift ();
                rq.headers['call-id'] = rstring();

                digest.signRequest(creds, rq, rs, creds);

                proxy.send(rq);
            }
        });
      }
    }
    else {
      proxy.send(sip.makeResponse(rq, 405, 'Method Not Allowed'));
    }
  } catch(e) {
    util.debug(e);
    util.debug(e.stack);

   proxy.send(sip.makeResponse(rq, 500, "Server Internal Error"));
  }
});