Skip to content

Commit 8cb6963

Browse files
committed
In case null, emptry string, undefined or NaN is passed as parameter value then its default value is applied.
Also print to console the processed value of all the parameters after validating them.
1 parent f306d3c commit 8cb6963

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

src/UA.js

+15-4
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ JsSIP.UA.prototype.recoverTransport = function(ua) {
599599
*/
600600
JsSIP.UA.prototype.loadConfig = function(configuration) {
601601
// Settings and default values
602-
var parameter, attribute, idx, uri, ws_uri, contact,
602+
var parameter, attribute, idx, uri, ws_uri, contact, value,
603603
settings = {
604604
/* Host address
605605
* Value to be set in Via sent_by and host part of Contact FQDN
@@ -677,10 +677,18 @@ JsSIP.UA.prototype.loadConfig = function(configuration) {
677677
// Check Optional parameters
678678
for(parameter in JsSIP.UA.configuration_check.optional) {
679679
if(configuration.hasOwnProperty(parameter)) {
680-
if(JsSIP.UA.configuration_check.optional[parameter](configuration[parameter])) {
681-
settings[parameter] = configuration[parameter];
680+
value = configuration[parameter];
681+
682+
// If the parameter value is null, empty string or undefined then apply its default value.
683+
if(value === null || value === "" || value === undefined) { continue; }
684+
// If it's a number with NaN value then also apply its default value.
685+
// NOTE: JS does not allow "value === NaN", the following does the work:
686+
else if(typeof(value) === 'number' && window.isNaN(value)) { continue; }
687+
688+
if(JsSIP.UA.configuration_check.optional[parameter](value)) {
689+
settings[parameter] = value;
682690
} else {
683-
console.error('Bad configuration parameter: ' + parameter);
691+
console.error('Bad configuration parameter ' + parameter + ' with value ' + window.String(value));
684692
return false;
685693
}
686694
}
@@ -751,7 +759,10 @@ JsSIP.UA.prototype.loadConfig = function(configuration) {
751759
}
752760

753761
// Fill the value of the configuration_skeleton
762+
console.log('configuration parameters after validation:');
754763
for(attribute in settings) {
764+
value = settings[attribute];
765+
console.log('· ' + attribute + ': ' + window.String(settings[attribute]));
755766
JsSIP.UA.configuration_skeleton[attribute].value = settings[attribute];
756767
}
757768

0 commit comments

Comments
 (0)