Class JsSIP.RTCSession
The class JsSIP.RTCSession represents a WebRTC media (audio/video) session. It can be initiated by the local user or by a remote peer.
Internally it holds a RTCPeerConnection instance, accessible via the connection attribute.
- Instance Attributes
- Instance Methods
- Events
- peerconnection
- connecting
- sending
- progress
- accepted
- confirmed
- ended
- failed
- newDTMF
- newInfo
- hold
- unhold
- muted
- unmuted
- reinvite
- update
- refer
- replaces
- sdp
- icecandidate
- getusermediafailed
- peerconnection:createofferfailed
- peerconnection:createanswerfailed
- peerconnection:setlocaldescriptionfailed
- peerconnection:setremotedescriptionfailed
Instance Attributes
connection
The underlying RTCPeerConnection instance associated to this session. Use it to set events related to WebRTC (such as onaddstream, onaddtrack, etc).
Note that, for outgoing calls, the RTCPeerConnection is set after calling ua.call(). However, for incoming calls the RTCPeerConnection is set after calling session.answer().
direction
String indicating who started the session. Possible values are ‘incoming’ when the session is started by the remote peer or ‘outgoing’ when the session is started by the local user.
local_identity
JsSIP.NameAddrHeader instance indicating the local identity. It corresponds with the INVITE From header value when the direction is ‘outgoing’, and with the To header value when the direction is ‘incoming’
remote_identity
JsSIP.NameAddrHeader instance indicating the remote identity. It corresponds with the INVITE To header value when the direction is ‘outgoing’, and with the From header value when the direction is ‘incoming’
start_time
Date object indicating the time when the session started. Takes its value at the moment when accepted event was fired.
end_time
Date object indicating the time when the session ended. Takes its value at the moment when ended event was fired.
data
An object for the application to store custom information associated to this session.
data
Custom session empty Object for application usage. The developer can add here custom attribute/value pairs.
Instance Methods
isInProgress()
Returns true if the session is in progress state (not established and not ended).
isEstablished()
Returns true if the session is established.
isEnded()
Returns true if the session is ended.
isReadyToReOffer()
Returns true if the session is ready for a SDP renegotiation (hold(), unhold() or renegotiate() methods).
answer(options)
Answer the incoming session. This method is available for incoming sessions only.
Parameters
options- Optional
Objectwith extra parameters (see below).
Fields in options Object
extraHeadersArrayofStringswith extra SIP headers for the 200 OK response.mediaConstraintsObjectwith two valid fields (audioandvideo) indicating whether the session is intended to use audio and/or video and the constraints to be used. Default value is set according to the received SDP offer.mediaStreamMediaStreamto transmit to the other end.pcConfigObjectrepresenting the RTCPeerConnectionRTCConfiguration.rtcConstraintsObjectrepresenting RTCPeerConnection constraints.rtcAnswerConstraintsObjectrepresenting constraints for RTCPeerConnectioncreateAnswer().rtcOfferConstraintsObjectrepresenting constraints for RTCPeerConnectioncreateOffer()(to be used for future incoming reINVITE without SDP offer).sessionTimersExpiresNumber(in seconds) for the default Session Timers interval (default value is 90, do not set a lower value).
Throws
terminate(options)
Terminate the current session regardless its direction or state.
Depending on the state of the session, this function may send a CANCEL request, a non-2xx final response, a BYE request, or even no request.
For incoming sessions, if the user has not answered the incoming INVITE, this function sends the non-2xx final response with the optionally specified status code and reason phrase. 480 Unavailvable is responded by default.
For outgoing sessions, if the original INVITE has not been already sent, it will never be sent. If the original INVITE has not been answered with a final response, the behavior depends on whether provisional response has been received. If provisional response has been received, a CANCEL request will be sent. If no provisional response has been received, the function will not send a CANCEL as per RFC 3261. If then a provisional response is received, the CANCEL request will be automatically sent.
For both incoming and outgoing, if the INVITE session has been answered with final response, a BYE request will be sent.
Parameters
options- Optional
Objectwith extra parameters (see below).
Fields in options Object
extraHeadersArrayofStringswith extra SIP headers for the MESSAGE request.status_codeNumberbetween 300 and 699 representing the SIP response code.reason_phraseStringrepresenting the SIP reason phrase.body- String representing the SIP message body (in case this parameter is set, a corresponding Content-Type header field must be set in
extraHeaderfield).
NOTE: When generating a CANCEL, status_code can take values from 200 to 699. The status_code and reason_phrase will form a Reason header field as specified in RFC3326. A CANCEL will not take the extraHeaders parameter nor the body paramter.
Throws
sendDTMF(tone, options=null)
Send one or multiple DTMF tones making use of SIP INFO method.
toneStringorNumbercomposed by one or multiple valid DTMF symbols.options- Optional
Objectwith extra parameters. See below.
Fields in options Object
duration- Positive decimal
Numberindicating the duration of the tone expressed in milliseconds. Default value is100. interToneGap- Positive decimal
Numberindicating the interval between two tones expressed in milliseconds. Default value is500. extraHeaders- Optional
ArrayofStringswith extra SIP headers for each INFO request. transportType- Optional
String‘INFO’ or ‘RFC2833’. Default value is ‘INFO’
Throws
Example 1
call.sendDTMF(1);
call.sendDTMF(4);
Example 2
var tones = '1234#';
var extraHeaders = [ 'X-Foo: foo', 'X-Bar: bar' ];
var options = {
'duration': 160,
'interToneGap': 1200,
'extraHeaders': extraHeaders
};
call.sendDTMF(tones, options);
Example 3
var options = {
'transportType': 'RFC2833'
};
call.sendDTMF(1, options);
sendInfo(contentType, body=null, options=null)
Send a SIP INFO message.
contentTypeStringrepresenting the SIP INFO message Content-Type header field value.body- Optional
Stringrepresenting the SIP INFO message body. options- Optional
Objectwith extra parameters. See below.
Fields in options Object
extraHeaders- Optional
ArrayofStringswith extra SIP headers for each INFO request.
Throws
hold(options=null, done=null)
Puts the call on hold by sending a Re-INVITE or UPDATE SIP request.
Returns false if the renegotiation is not possible at this time.
options- Optional
Objectwith extra parameters. See below. done- Optional
Functioncalled once the renegotiation has succeeded.
Fields in options Object
useUpdateBooleanSend UPDATE instead of re-INVITEextraHeadersArrayofStringswith extra SIP headers for the request.
unhold(options=null, done=null)
Resumes the call from hold by sending a Re-INVITE or UPDATE SIP request.
Returns false if the renegotiation is not possible at this time.
options- Optional
Objectwith extra parameters. See below. done- Optional
Functioncalled once the renegotiation has succeeded.
Fields in options Object
useUpdateBooleanSend UPDATE instead of re-INVITEextraHeadersArrayofStringswith extra SIP headers for the request.
renegotiate(options=null, done=null)
Forces a SDP renegotiation. Useful after modifying the local stream attached to the underlying RTCPeerConnection (via the connection attribute).
Returns false if the renegotiation is not possible at this time.
options- Optional
Objectwith extra parameters. See below. done- Optional
Functioncalled once the renegotiation has succeeded.
Fields in options Object
useUpdateBooleanSend UPDATE instead of re-INVITEextraHeadersArrayofStringswith extra SIP headers for the request.rtcOfferConstraintsObjectrepresenting constraints for RTCPeerConnectioncreateOffer().
isOnHold()
Returns an Object with the properties “local” and “remote” and a Boolean value asociated with each one. It represents whether the “local” and/or “remote” peer are on hold.
Example
rtcsession.isOnHold();
{
'local': true, // User has put the other peer on hold
'remote': false // Peer hasn't put user on hold
}
mute(options=null)
Mutes the local audio and/or video.
audioBooleanDetermines whether local audio must be mutedvideoBooleanDetermines whether local video must be muted
unmute(options=null)
Unmutes the local audio and/or video.
audioBooleanDetermines whether local audio must be unmutedvideoBooleanDetermines whether local video must be unmuted
isMuted()
Returns an Object with the properties “audio” and “video” and a Boolean value asociated with each one. It represents whether the local “audio” and/or “video” are on muted.
Example
rtcsession.isMuted();
{
'audio': true, // Local audio is muted
'video': false // Local audio is not muted
}
refer(target, options=null)
Sends an in-dialog REFER method with the given target as the Refer-To resource.
A REFER method implicitly generates a subscription to the state of the refer. The NOTIFY requests received from the peer are processed and presented in form of events by JsSIP.RTCSession.ReferSubscriber.
Parameters
target- Refer-To resource.
Stringrepresenting a destination username or a complete SIP URI, or aJsSIP.URIinstance. options- Optional
Objectwith extra parameters (see below).
Fields in options Object
extraHeaders- Optional
ArrayofStringswith extra SIP headers for the REFER request. If a “Referred-By” entry is present, it will be used on the outgoing REFER request. eventHandlers- Optional
Objectof event handlers to be registered for theJsSIP.RTCSession.ReferSubscriber. replaces- Optional
JsSIP.RTCSessioninstance which dialog is meant to be replaced at the refer target. This is a live session between this user agent and the one pointed by the Refer-To resource.
Throws
Events
JsSIP.RTCSession class defines a series of events. Each of them allow callback functions registration in order to let the user execute a function for each given stimulus.
peerconnection
Fired once the underlying RTCPeerConnection is created. The application has a chance here to alter the peerconnection by, for example, adding a RTCDataChannel on it, or to set the corresponding event listenters.
Event data fields in outgoing sessions
peerconnection- The
RTCPeerConnectioninstance.
Example
var datachannel;
session.on('peerconnection', function(data) {
datachannel = data.peerconnection.createDataChannel('chat');
});
connecting
Fired after the local media stream is added into RTCSession and before the ICE gathering starts for initial INVITE request or “200 OK” response transmission.
Event data fields in incoming sessions
requestJsSIP.IncomingRequestinstance representing the incoming INVITE SIP message.
Event data fields in outgoing sessions
requestJsSIP.OutgoingRequestinstance representing the outgoing INVITE SIP message.
sending
Fired just before the initial INVITE is sent (just for outgoing calls). It provides a chance for the app to mangle the SIP INVITE or its SDP.
Event data fields in outgoing sessions
requestJsSIP.OutgoingRequestinstance representing the outgoing INVITE SIP message.
progress
Fired when receiving or generating a 1XX SIP class response (>100) to the INVITE request.
The event is fired before the SDP processing, if present, giving the chance to fine tune it if required or even drop it by removing the body of the response parameter in the data object.
Event data fields in incoming sessions
originator- ‘local’
String.
Event data fields in outgoing sessions
originator- ‘remote’
String. responseJsSIP.IncomingResponseinstance of the received SIP 1XX response.
accepted
Fired when the call is accepted (2XX received/sent).
Event data fields in incoming sessions
originator- ‘local’
String.
Event data fields in outgoing sessions
originator- ‘remote’
String. responseJsSIP.IncomingResponseinstance of the received SIP 2XX response.
confirmed
Fired when the call is confirmed (ACK received/sent).
Event data fields in incoming sessions
originator- ‘local’
String.
Event data fields in outgoing sessions
originator- ‘remote’
String. responseJsSIP.IncomingResponseinstance of the received SIP 2XX response.
ended
Fired when an established call ends.
Event data fields
originator- ‘local’/‘remote’/‘system’
String. Where does the call termination come from. messageJsSIP.IncomingRequestorJsSIP.IncomingResponseinstance generating the call termination whenoriginatorvalue is ‘remote’,nullotherwise.cause- One value of Failure and End Causes.
failed
Fired when the session was unable to establish.
Event data fields
originator- ‘local’/‘remote’/‘system’
String. Where does the call failure come from. messageJsSIP.IncomingRequestorJsSIP.IncomingResponseinstance generating the call failure whenoriginatorvalue is ‘remote’,nullotherwise.cause- One value of Failure and End Causes.
newDTMF
Fired for an incoming or outgoing DTMF.
Event data fields for an incoming DTMF
originator- ‘remote’
String. The new DTMF is generated by the remote peer. dtmfJsSIP.RTCSession.DTMFinstance.requestJsSIP.IncomingRequestinstance of the received INFO request.
Event data fields for an outgoing DTMF
originator- ‘local’
String. The new DTMF is generated by the local user. dtmfJsSIP.RTCSession.DTMFinstance.requestJsSIP.OutgoingRequestinstance of the outgoing INFO request.
newInfo
Fired for an incoming or outgoing SIP INFO message.
Event data fields for an incoming SIP INFO message.
originator- ‘remote’
String. The new SIP INFO message is generated by the remote peer. infoJsSIP.RTCSession.Infoinstance.requestJsSIP.IncomingRequestinstance of the received INFO request.
Event data fields for an outgoing SIP INFO message.
originator- ‘local’
String. The new SIP INFO message. is generated by the local user. infoJsSIP.RTCSession.Infoinstance.requestJsSIP.OutgoingRequestinstance of the outgoing INFO request.
hold
Fired when the user or the peer puts the other side on hold.
Event data fields
originator- ‘remote’
Stringif the other peer has put the user on hold. ‘local’Stringif the user has put the other peer on hold.
unhold
Fired when the user or the peer resumes the other end from hold.
Event data fields
originator- ‘remote’
Stringif the other peer has resumed the user from hold. ‘local’Stringif the user has resumend the other peer from hold.
muted
Fired when the local media is muted.
Event data fields
audioBooleanDetermines whether the local audio is muted.videoBooleanDetermines whether the local video is muted.
unmuted
Fired when the local media is unmuted.
Event data fields
audioBooleanDetermines whether the local audio is muted.videoBooleanDetermines whether the local video is muted.
reinvite
Fired when an in-dialog reINVITE is received.
Event data fields
requestJsSIP.IncomingRequestinstance of the received reINVITE request.callback- Initially
undefined. If the user sets a function here it is executed once the reINVITE is processed. reject()- Denial
Methodto be executed if the re-INVITE is rejected. 403 response code is used by default.
Event data.reject() parameters
options- Optional
Objectwith extra parameters (see below).
Fields in options Object
extraHeadersArrayofStringswith extra SIP headers for the MESSAGE request.status_codeNumberbetween 300 and 699 representing the SIP response code.reason_phraseStringrepresenting the SIP reason phrase.
update
Fired when an in-dialog UPDATE is received.
Event data fields
requestJsSIP.IncomingRequestinstance of the received UPDATE request.callback- Initially
undefined. If the user sets a function here it is executed once the UPDATE is processed. reject()- Denial
Methodto be executed if the re-INVITE is rejected. 403 response code is used by default.
Event data.reject() parameters
options- Optional
Objectwith extra parameters (see below).
Fields in options Object
extraHeadersArrayofStringswith extra SIP headers for the MESSAGE request.status_codeNumberbetween 300 and 699 representing the SIP response code.reason_phraseStringrepresenting the SIP reason phrase.
refer
Fired when an in-dialog REFER is received.
If the refer aproval is granted, a new outgoing JsSIP.RTCSession is generated to the target indicated in the Refer-To header field.
The NOTIFY mechanism is used to inform the agent sending the REFER of the status of the reference as defined in RFC 3515.
NOTE: The Refer-To resource is accessible in the incoming JsSIP.IncomingRequest refer_to JsSIP.URI attribute.
Event data fields
requestJsSIP.IncomingRequestinstance of the received REFER request.accept()- Consent approval
Methodto be executed if the REFER is accepted. This generates an outgoingJsSIP.RTCSessionto the resource identified by the Refer-To URI. reject()- Consent denial
Methodto be executed if the REFER is rejected.
Event data.accept() parameters
newRTCSession(session)- Optional callback
Functionto be executed on behalf ofJsSIP.UAnewRTCSessionevent for the new outgoingRTCSession. If thisfunctionis not defined, the former event will be emitted. options- Optional
Objectproviding the options for the outgoingJsSIP.RTCSession. The semantic of this parameter corresponds to the optional parameter forJsSIP.UAcallmethod.
Event data.reject() parameters
This method does not require any parameter.
replaces
Fired when an out of dialog INVITE is received pointing to this RTCSession through the Replaces header field.
Granting approval makes the current JsSIP.RTCSession terminate when the new one is established.
Event data fields
requestJsSIP.IncomingRequestinstance of the received INVITE request.accept()- Consent approval
Methodto be executed if the INVITE is accepted. An incomingJsSIP.RTCSessionwill be generated. reject()- Consent denial
Methodto be executed if the INVITE is rejected.
Event data.accept() parameters
newRTCSession(session)- Optional callback
Functionto be executed on behalf ofJsSIP.UAnewRTCSessionevent for the new incomingRTCSession. If thisfunctionis not defined, the former event will be emitted.
Event data.reject() parameters
This method does not require any parameter.
sdp
Fired before passing a remote SDP to the RTC engine, and before sending out a local SDP.
This event provides the mechanism to modify incoming and outgoing SDP.
Event data fields
originatorStringindicating whether the SDP is locally generated or was remotely received. Possible values arelocalorremoterespectively.typeStringindicating whether the SDP is anofferor ananswer.sdpStringrepresenting the SDP. Modifications must be done directly on this parameter.
icecandidate
Fired for each gathered local ICE candidate while requesting RTCPeerConnection for the local description.
This event provides the mechanism to stop waiting for more ICE candidates to be gathered so that the local description can be sent out (as an SDP offer or answer) before the whole ICE gathering process finishes.
NOTE: See RTCIceCandidate specification for detailed info on the event data type candidate
Event data fields
candidateRTCIceCandidateinstance as described in the W3C specification.readyFunctionto be executed by the event callback if candidate is the last one to be gathered prior to retrieve the local description.
getusermediafailed
Fired when an internal call to getUserMedia() fails. It provides the DOMException as argument.
peerconnection:createofferfailed
Fired when an internal call to createOffer() fails. It provides the DOMException as argument.
peerconnection:createanswerfailed
Fired when an internal call to createAnswer() fails. It provides the DOMException as argument.
peerconnection:setlocaldescriptionfailed
Fired when an internal call to setLocalDescription() fails. It provides the DOMException as argument.
peerconnection:setremotedescriptionfailed
Fired when an internal call to setRemoteDescription() fails. It provides the DOMException as argument.