Skip to content

Commit 777a48f

Browse files
committed
Change API methods to make use of generic 'options' argument
1 parent 72424bd commit 777a48f

File tree

4 files changed

+37
-39
lines changed

4 files changed

+37
-39
lines changed

src/Message.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ JsSIP.Message = function(ua) {
1818
JsSIP.Message.prototype = new JsSIP.EventEmitter();
1919

2020

21-
JsSIP.Message.prototype.send = function(target, body, contentType, options) {
22-
var request_sender, event, eventHandlers, extraHeaders,
21+
JsSIP.Message.prototype.send = function(target, body, options) {
22+
var request_sender, event, contentType, eventHandlers, extraHeaders,
2323
events = [
2424
'sending',
2525
'succeeded',
@@ -34,6 +34,7 @@ JsSIP.Message.prototype.send = function(target, body, contentType, options) {
3434
options = options || {};
3535
extraHeaders = options.extraHeaders || [];
3636
eventHandlers = options.eventHandlers || {};
37+
contentType = options.contentType || 'text/plain';
3738

3839
// Set event handlers
3940
for (event in eventHandlers) {
@@ -54,7 +55,7 @@ JsSIP.Message.prototype.send = function(target, body, contentType, options) {
5455
this.closed = false;
5556
this.ua.applicants[this] = this;
5657

57-
extraHeaders.push('Content-Type: '+ (contentType ? contentType : 'text/plain'));
58+
extraHeaders.push('Content-Type: '+ contentType);
5859

5960
this.request = new JsSIP.OutgoingRequest(JsSIP.C.MESSAGE, target, this.ua, null, extraHeaders);
6061

src/Registrator.js

+14-11
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,15 @@ JsSIP.Registrator = function(ua, transport) {
4747
};
4848

4949
JsSIP.Registrator.prototype = {
50-
register: function(extraHeaders) {
51-
var request_sender, cause,
50+
/**
51+
* @param {Object} [options]
52+
*/
53+
register: function(options) {
54+
var request_sender, cause, extraHeaders,
5255
self = this;
5356

54-
extraHeaders = extraHeaders || [];
57+
options = options || {};
58+
extraHeaders = options.extraHeaders || [];
5559
extraHeaders.push('Contact: '+ this.contact + ';expires=' + this.expires);
5660
extraHeaders.push('Allow: '+ JsSIP.Utils.getAllowedMethods(this.ua));
5761

@@ -164,26 +168,25 @@ JsSIP.Registrator.prototype = {
164168
},
165169

166170
/**
167-
* @param {Boolean} [all=false]
171+
* @param {Object} [options]
168172
*/
169-
unregister: function(all, extraHeaders) {
170-
/* Parameters:
171-
*
172-
* - all: If true, then perform a "unregister all" action ("Contact: *");
173-
*/
173+
unregister: function(options) {
174+
var extraHeaders;
175+
174176
if(!this.registered) {
175177
console.log(JsSIP.C.LOG_REGISTRATOR +"Already unregistered");
176178
return;
177179
}
178180

179-
extraHeaders = extraHeaders || [];
181+
options = options || {};
182+
extraHeaders = options.extraHeaders || [];
180183

181184
this.registered = false;
182185

183186
// Clear the registration timer.
184187
window.clearTimeout(this.registrationTimer);
185188

186-
if(all) {
189+
if(options.all) {
187190
extraHeaders.push('Contact: *');
188191
extraHeaders.push('Expires: 0');
189192

src/Session.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ JsSIP.Session.prototype.init_incoming = function(request) {
7272
this.receiveInitialRequest(this.ua, request);
7373
};
7474

75-
JsSIP.Session.prototype.connect = function(target, options) {
75+
JsSIP.Session.prototype.connect = function(target, views, options) {
7676
var event, eventHandlers, request, selfView, remoteView, mediaType, extraHeaders, requestParams;
7777

7878
// Check UA Status
@@ -89,10 +89,16 @@ JsSIP.Session.prototype.connect = function(target, options) {
8989
throw new JsSIP.Exceptions.InvalidStateError();
9090
}
9191

92+
// Check views
93+
if (!views || (views && !views.remoteView)) {
94+
console.log(JsSIP.C.LOG_INVITE_SESSION +'Missing "views" or "views.remoteView"');
95+
throw new JsSIP.Exceptions.InvalidValueError();
96+
}
97+
9298
// Get call options
9399
options = options || {};
94-
selfView = options.views ? options.views.selfView : null;
95-
remoteView = options.views ? options.views.remoteView : null;
100+
selfView = views.selfView || null;
101+
remoteView = views.remoteView || null;
96102
mediaType = options.mediaType || {audio: true, video: true};
97103
extraHeaders = options.extraHeaders || [];
98104
eventHandlers = options.eventHandlers || {};

src/UA.js

+10-22
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ JsSIP.UA.prototype = new JsSIP.EventEmitter();
6868
*
6969
* @throws {JsSIP.Exceptions.NotReadyError} If JsSIP.UA is not ready (see JsSIP.UA.status, JsSIP.UA.error parameters).
7070
*/
71-
JsSIP.UA.prototype.register = function(extraHeaders) {
71+
JsSIP.UA.prototype.register = function(options) {
7272
if(this.status === JsSIP.C.UA_STATUS_READY) {
7373
this.configuration.register = true;
74-
this.registrator.register(extraHeaders);
74+
this.registrator.register(options);
7575
} else {
7676
throw new JsSIP.Exceptions.NotReadyError();
7777
}
@@ -83,10 +83,10 @@ JsSIP.UA.prototype.register = function(extraHeaders) {
8383
*
8484
* @throws {JsSIP.Exceptions.NotReadyError} If JsSIP.UA is not ready (see JsSIP.UA.status, JsSIP.UA.error parameters).
8585
*/
86-
JsSIP.UA.prototype.unregister = function(all, extraHeaders) {
86+
JsSIP.UA.prototype.unregister = function(options) {
8787
if(this.status === JsSIP.C.UA_STATUS_READY) {
8888
this.configuration.register = false;
89-
this.registrator.unregister(all, extraHeaders);
89+
this.registrator.unregister(options);
9090
} else {
9191
throw new JsSIP.Exceptions.NotReadyError();
9292
}
@@ -130,18 +130,11 @@ JsSIP.UA.prototype.isConnected = function() {
130130
* @throws {JsSIP.Exceptions.InvalidTargetError} If the calling target is invalid.
131131
*
132132
*/
133-
JsSIP.UA.prototype.call = function(target, useAudio, useVideo, eventHandlers, videoViews) {
134-
var session, options;
135-
136-
// Call Options
137-
options = {
138-
views: videoViews,
139-
mediaType: {audio: useAudio, video: useVideo},
140-
eventHandlers: eventHandlers
141-
};
133+
JsSIP.UA.prototype.call = function(target, views, options) {
134+
var session;
142135

143136
session = new JsSIP.Session(this);
144-
session.connect(target, options);
137+
session.connect(target, views, options);
145138
};
146139

147140
/**
@@ -155,16 +148,11 @@ JsSIP.UA.prototype.call = function(target, useAudio, useVideo, eventHandlers, vi
155148
* @throws {JsSIP.Exceptions.InvalidTargetError} If the calling target is invalid.
156149
*
157150
*/
158-
JsSIP.UA.prototype.sendMessage = function(target, body, contentType, eventHandlers) {
159-
var message, options;
160-
161-
// Message Options
162-
options = {
163-
eventHandlers: eventHandlers
164-
};
151+
JsSIP.UA.prototype.sendMessage = function(target, body, options) {
152+
var message;
165153

166154
message = new JsSIP.Message(this);
167-
message.send(target, body, contentType, options);
155+
message.send(target, body, options);
168156
};
169157

170158
/**

0 commit comments

Comments
 (0)