Skip to content

Commit

Permalink
- RTCSession: instead of "started" emit "accepted" when 2XX and "conf…
Browse files Browse the repository at this point in the history
…irmed" when ACK (fixes #253).

- RTCSession: accept SDP renegotiation on incoming UPDATE requests.
  • Loading branch information
ibc committed Oct 10, 2014
1 parent 65805c6 commit f0cc4c1
Showing 1 changed file with 137 additions and 58 deletions.
195 changes: 137 additions & 58 deletions src/RTCSession.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ RTCSession = function(ua) {
'connecting',
'progress',
'failed',
'started',
'accepted',
'confirmed',
'ended',
'newDTMF',
'hold',
Expand Down Expand Up @@ -310,7 +311,7 @@ RTCSession.prototype.answer = function(options) {

self.setInvite2xxTimer(request, body);
self.setACKTimer();
self.started('local');
self.accepted('local');
},

// run for reply failure callback
Expand Down Expand Up @@ -1107,72 +1108,136 @@ RTCSession.prototype.receiveReinvite = function(request) {
contentType = request.getHeader('Content-Type'),
hold = true;

if (request.body) {
if (contentType !== 'application/sdp') {
this.logger.warn('invalid Content-Type');
request.reply(415);
return;
}
if (! request.body) {
this.logger.warn('re-INVITE without body not implemented');
request.reply(415, 're-INVITE Without Body Not Implemented');
return;
}

sdp = JsSIP.Parser.parseSDP(request.body);
if (contentType !== 'application/sdp') {
this.logger.warn('invalid Content-Type');
request.reply(415);
return;
}

for (idx=0; idx < sdp.media.length; idx++) {
direction = sdp.direction || sdp.media[idx].direction || 'sendrecv';
sdp = JsSIP.Parser.parseSDP(request.body);

if (direction !== 'sendonly' && direction !== 'inactive') {
hold = false;
}
for (idx=0; idx < sdp.media.length; idx++) {
direction = sdp.direction || sdp.media[idx].direction || 'sendrecv';

if (direction !== 'sendonly' && direction !== 'inactive') {
hold = false;
}
}

this.rtcMediaHandler.onMessage(
'offer',
request.body,
/*
* onSuccess
* SDP Offer is valid
*/
function() {
self.rtcMediaHandler.createAnswer(
function(body) {
request.reply(200, null, ['Contact: ' + self.contact], body,
function() {
self.status = C.STATUS_WAITING_FOR_ACK;
self.setInvite2xxTimer(request, body);
self.setACKTimer();

if (self.remote_hold === true && hold === false) {
self.onunhold('remote');
} else if (self.remote_hold === false && hold === true) {
self.onhold('remote');
}
this.rtcMediaHandler.onMessage(
'offer',
request.body,
/*
* onSuccess
* SDP Offer is valid
*/
function() {
self.rtcMediaHandler.createAnswer(
// onSuccess
function(body) {
request.reply(200, null, ['Contact: ' + self.contact], body,
function() {
self.status = C.STATUS_WAITING_FOR_ACK;
self.setInvite2xxTimer(request, body);
self.setACKTimer();

if (self.remote_hold === true && hold === false) {
self.onunhold('remote');
} else if (self.remote_hold === false && hold === true) {
self.onhold('remote');
}
);
},
function() {
request.reply(500);
}
);
},
/*
* onFailure
* Bad media description
*/
function(e) {
self.logger.error(e);
request.reply(488);
}
);
}
}
);
},
// onFailure
function() {
request.reply(500);
}
);
},
/*
* onFailure
* Bad media description
*/
function(e) {
self.logger.error(e);
request.reply(488);
}
);
};

/**
* In dialog UPDATE Reception
*/

RTCSession.prototype.receiveUpdate = function(request) {
// TODO:
var
sdp, idx, direction,
// self = this,
contentType = request.getHeader('Content-Type'),
hold = true;

request.reply(501, "TODO");
if (! request.body) {
request.reply(200);
return;
}

if (contentType !== 'application/sdp') {
this.logger.warn('invalid Content-Type');
request.reply(415);
return;
}

sdp = JsSIP.Parser.parseSDP(request.body);

for (idx=0; idx < sdp.media.length; idx++) {
direction = sdp.direction || sdp.media[idx].direction || 'sendrecv';

if (direction !== 'sendonly' && direction !== 'inactive') {
hold = false;
}
}

this.rtcMediaHandler.onMessage(
'offer',
request.body,
/*
* onSuccess
* SDP Offer is valid
*/
function() {
self.rtcMediaHandler.createAnswer(
function(body) {
request.reply(200, null, ['Contact: ' + self.contact], body,
function() {
if (self.remote_hold === true && hold === false) {
self.onunhold('remote');
} else if (self.remote_hold === false && hold === true) {
self.onhold('remote');
}
}
);
},
function() {
request.reply(500);
}
);
},
/*
* onFailure
* Bad media description
*/
function(e) {
self.logger.error(e);
request.reply(488);
}
);
};

/**
Expand Down Expand Up @@ -1206,6 +1271,7 @@ RTCSession.prototype.receiveRequest = function(request) {
window.clearTimeout(this.timers.ackTimer);
window.clearTimeout(this.timers.invite2xxTimer);
this.status = C.STATUS_CONFIRMED;
this.confirmed('remote', request);
}
break;
case JsSIP.C.BYE:
Expand Down Expand Up @@ -1531,8 +1597,11 @@ RTCSession.prototype.receiveInviteResponse = function(response) {
* SDP Answer fits with Offer. Media will start
*/
function() {
session.sendRequest(JsSIP.C.ACK);
session.started('remote', response);
var ack;

session.accepted('remote', response);
ack = session.sendRequest(JsSIP.C.ACK);
session.confirmed('local', null);
},
/*
* onFailure
Expand Down Expand Up @@ -1727,9 +1796,9 @@ RTCSession.prototype.progress = function(originator, response) {
});
};

RTCSession.prototype.started = function(originator, message) {
RTCSession.prototype.accepted = function(originator, message) {
var session = this,
event_name = 'started';
event_name = 'accepted';

session.start_time = new Date();

Expand All @@ -1739,6 +1808,16 @@ RTCSession.prototype.started = function(originator, message) {
});
};

RTCSession.prototype.confirmed = function(originator, ack) {
var session = this,
event_name = 'confirmed';

session.emit(event_name, session, {
originator: originator,
ack: ack || null
});
};

RTCSession.prototype.ended = function(originator, message, cause) {
var session = this,
event_name = 'ended';
Expand Down

0 comments on commit f0cc4c1

Please sign in to comment.