12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202 |
- <!DOCTYPE html>
- <!--
- * Copyright (C) 2012 Doubango Telecom <http://www.doubango.org>
- * License: BSD
- * This file is part of Open Source sipML5 solution <http://www.sipml5.org>
- -->
- <html>
- <!-- head -->
- <head>
- <meta charset="utf-8" />
- <title>sipML5 live demo</title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta name="Keywords" content="doubango, sipML5, VoIP, HTML5, WebRTC, RTCWeb, SIP, IMS, Video chat, VP8, live demo " />
- <meta name="Description" content="HTML5 SIP client using WebRTC framework" />
- <meta name="author" content="Doubango Telecom" />
- <!-- SIPML5 API:
- DEBUG VERSION: 'SIPml-api.js'
- RELEASE VERSION: 'release/SIPml-api.js'
- -->
- <script src="SIPml-api.js?svn=179" type="text/javascript"> </script>
- <!-- Styles -->
- <link href="./assets/css/bootstrap.css" rel="stylesheet" />
- <style type="text/css">
- body{
- padding-top: 80px;
- padding-bottom: 40px;
- }
- .navbar-inner-red {
- background-color: #600000;
- background-image: none;
- background-repeat: no-repeat;
- filter: none;
- }
- .full-screen{
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- .normal-screen{
- position: relative;
- }
- .call-options {
- padding: 5px;
- background-color: #f0f0f0;
- border: 1px solid #eee;
- border: 1px solid rgba(0, 0, 0, 0.08);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
- -webkit-transition-property: opacity;
- -moz-transition-property: opacity;
- -o-transition-property: opacity;
- -webkit-transition-duration: 2s;
- -moz-transition-duration: 2s;
- -o-transition-duration: 2s;
- }
- .tab-video,
- .div-video{
- width: 100%;
- height: 0px;
- -webkit-transition-property: height;
- -moz-transition-property: height;
- -o-transition-property: height;
- -webkit-transition-duration: 2s;
- -moz-transition-duration: 2s;
- -o-transition-duration: 2s;
- }
- .label-align {
- display: block;
- padding-left: 15px;
- text-indent: -15px;
- }
- .input-align {
- width: 13px;
- height: 13px;
- padding: 0;
- margin:0;
- vertical-align: bottom;
- position: relative;
- top: -1px;
- *overflow: hidden;
- }
- .glass-panel{
- z-index: 99;
- position: fixed;
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- top: 0;
- left: 0;
- opacity: 0.8;
- background-color: Gray;
- }
- .div-keypad {
- z-index: 100;
- position: fixed;
- -moz-transition-property: left top;
- -o-transition-property: left top;
- -webkit-transition-duration: 2s;
- -moz-transition-duration: 2s;
- -o-transition-duration: 2s;
- }
-
- </style>
- <link href="./assets/css/bootstrap-responsive.css" rel="stylesheet" />
- <!-- Le fav and touch icons -->
- <link rel="shortcut icon" href="./assets/ico/favicon.ico" />
- <link rel="apple-touch-icon-precomposed" sizes="114x114" href="./assets/ico/apple-touch-icon-114-precomposed.png" />
- <link rel="apple-touch-icon-precomposed" sizes="72x72" href="./assets/ico/apple-touch-icon-72-precomposed.png" />
- <link rel="apple-touch-icon-precomposed" href="./assets/ico/apple-touch-icon-57-precomposed.png" />
- </head>
- <!-- Javascript code -->
- <script type="text/javascript">
- // to avoid caching
- //if (window.location.href.indexOf("svn=") == -1) {
- // window.location.href += (window.location.href.indexOf("?") == -1 ? "?svn=13" : "&svn=13");
- //}
- var sTransferNumber;
- var oRingTone, oRingbackTone;
- var oSipStack, oSipSessionRegister, oSipSessionCall, oSipSessionTransferCall;
- var videoRemote, videoLocal, audioRemote;
- var bFullScreen = false;
- var oNotifICall;
- var oReadyStateTimer;
- var bDisableVideo = false;
- var viewVideoLocal, viewVideoRemote; // <video> (webrtc) or <div> (webrtc4all)
- C =
- {
- divKeyPadWidth: 220
- };
- window.onload = function () {
- videoLocal = document.getElementById("video_local");
- videoRemote = document.getElementById("video_remote");
- audioRemote = document.getElementById("audio_remote");
- document.onkeyup = onKeyUp;
- document.body.onkeyup = onKeyUp;
- divCallCtrl.onmousemove = onDivCallCtrlMouseMove;
- loadCredentials();
- loadCallOptions();
- oReadyStateTimer = setInterval(function () {
- if (document.readyState === "complete") {
- clearInterval(oReadyStateTimer);
- // initialize SIPML5
- SIPml.init(postInit);
- }
- },
- 500);
- };
- function postInit() {
- // check webrtc4all version
- if (SIPml.isWebRtc4AllSupported() && SIPml.isWebRtc4AllPluginOutdated()) {
- if (confirm("Your WebRtc4all extension is outdated. A new version(" +SIPml.getWebRtc4AllVersion()+") with critical bug fix is available. Do you want to install it?\nIMPORTANT: You must restart your browser after the installation.")) {
- window.location = 'http://code.google.com/p/webrtc4all/downloads/list';
- return;
- }
- }
- // check for WebRTC support
- if (!SIPml.isWebRtcSupported()) {
- // is it chrome?
- if (SIPml.getNavigatorFriendlyName() == 'chrome') {
- if (confirm("You're using an old Chrome version or WebRTC is not enabled.\nDo you want to see how to enable WebRTC?")) {
- window.location = 'http://www.webrtc.org/running-the-demos';
- }
- else {
- window.location = "index.html";
- }
- return;
- }
-
- // for now the plugins (WebRTC4all only works on Windows)
- if (SIPml.getSystemFriendlyName() == 'windows') {
- // Internet explorer
- if (SIPml.getNavigatorFriendlyName() == 'ie') {
- // Check for IE version
- if (parseFloat(SIPml.getNavigatorVersion()) < 9.0) {
- if (confirm("You are using an old IE version. You need at least version 9. Would you like to update IE?")) {
- window.location = 'http://windows.microsoft.com/en-us/internet-explorer/products/ie/home';
- }
- else {
- window.location = "index.html";
- }
- }
- // check for WebRTC4all extension
- if (!SIPml.isWebRtc4AllSupported()) {
- if (confirm("webrtc4all extension is not installed. Do you want to install it?\nIMPORTANT: You must restart your browser after the installation.")) {
- window.location = 'http://code.google.com/p/webrtc4all/downloads/list';
- }
- else {
- // Must do nothing: give the user the chance to accept the extension
- // window.location = "index.html";
- }
- }
- // break page loading ('window.location' won't stop JS execution)
- if (!SIPml.isWebRtc4AllSupported()) {
- return;
- }
- }
- else if (SIPml.getNavigatorFriendlyName() == "safari" || SIPml.getNavigatorFriendlyName() == "firefox" || SIPml.getNavigatorFriendlyName() == "opera") {
- if (confirm("Your browser don't support WebRTC.\nDo you want to install WebRTC4all extension to enjoy audio/video calls?\nIMPORTANT: You must restart your browser after the installation.")) {
- window.location = 'http://code.google.com/p/webrtc4all/downloads/list';
- }
- else {
- window.location = "index.html";
- }
- return;
- }
- }
- // OSX, Unix, Android, iOS...
- else {
- if (confirm('WebRTC not supported on your browser.\nDo you want to download a WebRTC-capable browser?')) {
- window.location = 'https://www.google.com/intl/en/chrome/browser/';
- }
- else {
- window.location = "index.html";
- }
- return;
- }
- }
- // checks for WebSocket support
- if (!SIPml.isWebSocketSupported() && !SIPml.isWebRtc4AllSupported()) {
- if (confirm('Your browser don\'t support WebSockets.\nDo you want to download a WebSocket-capable browser?')) {
- window.location = 'https://www.google.com/intl/en/chrome/browser/';
- }
- else {
- window.location = "index.html";
- }
- return;
- }
- // FIXME: displays must be per session
- // attachs video displays
- if (SIPml.isWebRtc4AllSupported()) {
- viewVideoLocal = document.getElementById("divVideoLocal");
- viewVideoRemote = document.getElementById("divVideoRemote");
- WebRtc4all_SetDisplays(viewVideoLocal, viewVideoRemote); // FIXME: move to SIPml.* API
- }
- else{
- viewVideoLocal = videoLocal;
- viewVideoRemote = videoRemote;
- }
- if (!SIPml.isWebRtc4AllSupported() && !SIPml.isWebRtcSupported()) {
- if (confirm('Your browser don\'t support WebRTC.\naudio/video calls will be disabled.\nDo you want to download a WebRTC-capable browser?')) {
- window.location = 'https://www.google.com/intl/en/chrome/browser/';
- }
- }
- btnRegister.disabled = false;
- document.body.style.cursor = 'default';
- }
- function loadCallOptions() {
- if (window.localStorage) {
- var s_value;
- if ((s_value = window.localStorage.getItem('org.doubango.call.phone_number'))) txtPhoneNumber.value = s_value;
- bDisableVideo = (window.localStorage.getItem('org.doubango.expert.disable_video') == "true");
- txtCallStatus.innerHTML = '<i>Video ' + (bDisableVideo ? 'disabled' : 'enabled') + '</i>';
- }
- }
- function saveCallOptions() {
- if (window.localStorage) {
- window.localStorage.setItem('org.doubango.call.phone_number', txtPhoneNumber.value);
- window.localStorage.setItem('org.doubango.expert.disable_video', bDisableVideo ? "true" : "false");
- }
- }
- function loadCredentials() {
- if (window.localStorage) {
- // IE retuns 'null' if not defined
- var s_value;
- if ((s_value = window.localStorage.getItem('org.doubango.identity.display_name'))) txtDisplayName.value = s_value;
- if ((s_value = window.localStorage.getItem('org.doubango.identity.impi'))) txtPrivateIdentity.value = s_value;
- if ((s_value = window.localStorage.getItem('org.doubango.identity.impu'))) txtPublicIdentity.value = s_value;
- if ((s_value = window.localStorage.getItem('org.doubango.identity.password'))) txtPassword.value = s_value;
- if ((s_value = window.localStorage.getItem('org.doubango.identity.realm'))) txtRealm.value = s_value;
- }
- else {
- /*txtDisplayName.value = "005";
- txtPrivateIdentity.value = "005";
- txtPublicIdentity.value = "sip:[email protected]";
- txtPassword.value = "005";
- txtRealm.value = "192.168.0.42";
- txtPhoneNumber.value = "005";*/
- }
- };
- function saveCredentials() {
- if (window.localStorage) {
- window.localStorage.setItem('org.doubango.identity.display_name', txtDisplayName.value);
- window.localStorage.setItem('org.doubango.identity.impi', txtPrivateIdentity.value);
- window.localStorage.setItem('org.doubango.identity.impu', txtPublicIdentity.value);
- window.localStorage.setItem('org.doubango.identity.password', txtPassword.value);
- window.localStorage.setItem('org.doubango.identity.realm', txtRealm.value);
- }
- };
- // sends SIP REGISTER request to login
- function sipRegister() {
- // catch exception for IE (DOM not ready)
- try {
- btnRegister.disabled = true;
- if (!txtRealm.value || !txtPrivateIdentity.value || !txtPublicIdentity.value) {
- txtRegStatus.innerHTML = '<b>Please fill madatory fields (*)</b>';
- btnRegister.disabled = false;
- return;
- }
- var o_impu = tsip_uri.prototype.Parse(txtPublicIdentity.value);
- if (!o_impu || !o_impu.s_user_name || !o_impu.s_host) {
- txtRegStatus.innerHTML = "<b>[" + txtPublicIdentity.value + "] is not a valid Public identity</b>";
- btnRegister.disabled = false;
- return;
- }
- // enable notifications if not already done
- if (window.webkitNotifications && window.webkitNotifications.checkPermission() != 0) {
- window.webkitNotifications.requestPermission();
- }
- // save credentials
- saveCredentials();
- // create SIP stack
- oSipStack = new SIPml.Stack({
- realm: txtRealm.value,
- impi: txtPrivateIdentity.value,
- impu: txtPublicIdentity.value,
- password: txtPassword.value,
- display_name: txtDisplayName.value,
- websocket_proxy_url: (window.localStorage ? window.localStorage.getItem('org.doubango.expert.websocket_server_url') : null),
- outbound_proxy_url: (window.localStorage ? window.localStorage.getItem('org.doubango.expert.sip_outboundproxy_url') : null),
- ice_servers: (window.localStorage ? window.localStorage.getItem('org.doubango.expert.ice_servers') : null),
- enable_rtcweb_breaker: (window.localStorage ? window.localStorage.getItem('org.doubango.expert.enable_rtcweb_breaker') == "true" : false),
- events_listener: { events: '*', listener: onSipEventStack },
- sip_headers: [
- { name: 'User-Agent', value: 'IM-client/OMA1.0 sipML5-v1.2013.05.24' },
- { name: 'Organization', value: 'Doubango Telecom' }
- ]
- }
- );
- if (oSipStack.start() != 0) {
- txtRegStatus.innerHTML = '<b>Failed to start the SIP stack</b>';
- }
- else return;
- }
- catch (e) {
- txtRegStatus.innerHTML = "<b>2:" + e + "</b>";
- }
- btnRegister.disabled = false;
- }
- // sends SIP REGISTER (expires=0) to logout
- function sipUnRegister() {
- if (oSipStack) {
- oSipStack.stop(); // shutdown all sessions
- }
- }
- // makes a call (SIP INVITE)
- function sipCall() {
- // call configuration
- var oConf = {
- audio_remote: audioRemote,
- video_local: viewVideoLocal,
- video_remote: viewVideoRemote,
- events_listener: { events: '*', listener: onSipEventSession },
- sip_caps: [
- { name: '+g.oma.sip-im' },
- { name: '+sip.ice' },
- { name: 'language', value: '\"en,fr\"' }
- ]
- };
- if (oSipStack && !oSipSessionCall && !tsk_string_is_null_or_empty(txtPhoneNumber.value)) {
- btnCall.disabled = true;
- btnHangUp.disabled = false;
- // check whether video is disabled or not
- bDisableVideo = (window.localStorage && window.localStorage.getItem('org.doubango.expert.disable_video') == "true");
- // create call session
- oSipSessionCall = oSipStack.newSession(bDisableVideo ? 'call-audio' : 'call-audiovideo', oConf);
- // make call
- if (oSipSessionCall.call(txtPhoneNumber.value) != 0) {
- oSipSessionCall = null;
- txtCallStatus.value = 'Failed to make call';
- btnCall.disabled = false;
- btnHangUp.disabled = true;
- return;
- }
- saveCallOptions();
- }
- else if (oSipSessionCall) {
- txtCallStatus.innerHTML = '<i>Connecting...</i>';
- oSipSessionCall.accept(oConf);
- }
- }
- // transfers the call
- function sipTransfer() {
- if (oSipSessionCall) {
- var s_destination = prompt('Enter destination number', '');
- if (!tsk_string_is_null_or_empty(s_destination)) {
- btnTransfer.disabled = true;
- if (oSipSessionCall.transfer(s_destination) != 0) {
- txtCallStatus.innerHTML = '<i>Call transfer failed</i>';
- btnTransfer.disabled = false;
- return;
- }
- txtCallStatus.innerHTML = '<i>Transfering the call...</i>';
- }
- }
- }
-
- // holds or resumes the call
- function sipToggleHoldResume() {
- if (oSipSessionCall) {
- var i_ret;
- btnHoldResume.disabled = true;
- txtCallStatus.innerHTML = oSipSessionCall.bHeld ? '<i>Resuming the call...</i>' : '<i>Holding the call...</i>';
- i_ret = oSipSessionCall.bHeld ? oSipSessionCall.resume() : oSipSessionCall.hold();
- if (i_ret != 0) {
- txtCallStatus.innerHTML = '<i>Hold / Resume failed</i>';
- btnHoldResume.disabled = false;
- return;
- }
- }
- }
- // terminates the call (SIP BYE or CANCEL)
- function sipHangUp() {
- if (oSipSessionCall) {
- txtCallStatus.innerHTML = '<i>Terminating the call...</i>';
- oSipSessionCall.hangup({events_listener: { events: '*', listener: onSipEventSession }});
- }
- }
- function sipSendDTMF(c){
- if(oSipSessionCall && c){
- if(oSipSessionCall.dtmf(c) == 0){
- try { dtmfTone.play(); } catch(e){ }
- }
- }
- }
- function startRingTone() {
- try { ringtone.play(); }
- catch (e) { }
- }
- function stopRingTone() {
- try { ringtone.pause(); }
- catch (e) { }
- }
- function startRingbackTone() {
- try { ringbacktone.play(); }
- catch (e) { }
- }
- function stopRingbackTone() {
- try { ringbacktone.pause(); }
- catch (e) { }
- }
- function toggleFullScreen() {
- if (videoRemote.webkitSupportsFullscreen) {
- fullScreen(!videoRemote.webkitDisplayingFullscreen);
- }
- else {
- fullScreen(!bFullScreen);
- }
- }
- function openKeyPad(){
- divKeyPad.style.visibility = 'visible';
- divKeyPad.style.left = ((document.body.clientWidth - C.divKeyPadWidth) >> 1) + 'px';
- divKeyPad.style.top = '70px';
- divGlassPanel.style.visibility = 'visible';
- }
- function closeKeyPad(){
- divKeyPad.style.left = '0px';
- divKeyPad.style.top = '0px';
- divKeyPad.style.visibility = 'hidden';
- divGlassPanel.style.visibility = 'hidden';
- }
- function fullScreen(b_fs) {
- bFullScreen = b_fs;
- if (tsk_utils_have_webrtc4native() && bFullScreen && videoRemote.webkitSupportsFullscreen) {
- if (bFullScreen) {
- videoRemote.webkitEnterFullScreen();
- }
- else {
- videoRemote.webkitExitFullscreen();
- }
- }
- else {
- if (tsk_utils_have_webrtc4npapi()) {
- try { if(window.__o_display_remote) window.__o_display_remote.setFullScreen(b_fs); }
- catch (e) { divVideo.setAttribute("class", b_fs ? "full-screen" : "normal-screen"); }
- }
- else {
- divVideo.setAttribute("class", b_fs ? "full-screen" : "normal-screen");
- }
- }
- }
- function showNotifICall(s_number) {
- // permission already asked when we registered
- if (window.webkitNotifications && window.webkitNotifications.checkPermission() == 0) {
- if (oNotifICall) {
- oNotifICall.cancel();
- }
- oNotifICall = window.webkitNotifications.createNotification('images/sipml-34x39.png', 'Incaming call', 'Incoming call from ' + s_number);
- oNotifICall.onclose = function () { oNotifICall = null; };
- oNotifICall.show();
- }
- }
- function onKeyUp(evt) {
- evt = (evt || window.event);
- if (evt.keyCode == 27) {
- fullScreen(false);
- }
- else if (evt.ctrlKey && evt.shiftKey) { // CTRL + SHIFT
- if (evt.keyCode == 65 || evt.keyCode == 86) { // A (65) or V (86)
- bDisableVideo = (evt.keyCode == 65);
- txtCallStatus.innerHTML = '<i>Video ' + (bDisableVideo ? 'disabled' : 'enabled') + '</i>';
- window.localStorage.setItem('org.doubango.expert.disable_video', bDisableVideo);
- }
- }
- }
- function onDivCallCtrlMouseMove(evt) {
- try { // IE: DOM not ready
- if (tsk_utils_have_stream()) {
- btnCall.disabled = (!tsk_utils_have_stream() || !oSipSessionRegister || !oSipSessionRegister.is_connected());
- document.getElementById("divCallCtrl").onmousemove = null; // unsubscribe
- }
- }
- catch (e) { }
- }
- function uiOnConnectionEvent(b_connected, b_connecting) { // should be enum: connecting, connected, terminating, terminated
- btnRegister.disabled = b_connected || b_connecting;
- btnUnRegister.disabled = !b_connected && !b_connecting;
- btnCall.disabled = !(b_connected && tsk_utils_have_webrtc() && tsk_utils_have_stream());
- btnHangUp.disabled = !oSipSessionCall;
- }
- function uiVideoDisplayEvent(b_local, b_added) {
- //if (!bDisableVideo) {
- var o_elt_video = b_local ? videoLocal : videoRemote;
- if (b_added) {
- if (SIPml.isWebRtc4AllSupported()) {
- if (b_local){ if(window.__o_display_local) window.__o_display_local.style.visibility = "visible"; }
- else { if(window.__o_display_remote) window.__o_display_remote.style.visibility = "visible"; }
-
- }
- else {
- o_elt_video.style.opacity = 1;
- }
- uiVideoDisplayShowHide(true);
- }
- else {
- if (SIPml.isWebRtc4AllSupported()) {
- if (b_local){ if(window.__o_display_local) window.__o_display_local.style.visibility = "hidden"; }
- else { if(window.__o_display_remote) window.__o_display_remote.style.visibility = "hidden"; }
- }
- else{
- o_elt_video.style.opacity = 0;
- }
- fullScreen(false);
- }
- //}
- }
- function uiVideoDisplayShowHide(b_show) {
- if (b_show) {
- tdVideo.style.height = '340px';
- divVideo.style.height = navigator.appName == 'Microsoft Internet Explorer' ? '100%' : '340px';
- }
- else {
- tdVideo.style.height = '0px';
- divVideo.style.height = '0px';
- }
- btnFullScreen.disabled = !b_show;
- }
- function uiCallTerminated(s_description){
- btnCall.value = 'Call';
- btnHangUp.value = 'HangUp';
- btnHoldResume.value = 'hold';
- btnCall.disabled = false;
- btnHangUp.disabled = true;
- oSipSessionCall = null;
- stopRingbackTone();
- stopRingTone();
- txtCallStatus.innerHTML = "<i>" + s_description + "</i>";
- uiVideoDisplayShowHide(false);
- divCallOptions.style.opacity = 0;
- if (oNotifICall) {
- oNotifICall.cancel();
- oNotifICall = null;
- }
- uiVideoDisplayEvent(true, false);
- uiVideoDisplayEvent(false, false);
- setTimeout(function () { if (!oSipSessionCall) txtCallStatus.innerHTML = ''; }, 2500);
- }
- // Callback function for SIP Stacks
- function onSipEventStack(e /*SIPml.Stack.Event*/) {
- tsk_utils_log_info('==stack event = ' + e.type);
- switch (e.type) {
- case 'started':
- {
- // catch exception for IE (DOM not ready)
- try {
- // LogIn (REGISTER) as soon as the stack finish starting
- oSipSessionRegister = this.newSession('register', {
- expires: 200,
- events_listener: { events: '*', listener: onSipEventSession },
- sip_caps: [
- { name: '+g.oma.sip-im', value: null },
- { name: '+audio', value: null },
- { name: 'language', value: '\"en,fr\"' }
- ]
- });
- oSipSessionRegister.register();
- }
- catch (e) {
- txtRegStatus.value = txtRegStatus.innerHTML = "<b>1:" + e + "</b>";
- btnRegister.disabled = false;
- }
- break;
- }
- case 'stopping': case 'stopped': case 'failed_to_start': case 'failed_to_stop':
- {
- var bFailure = (e.type == 'failed_to_start') || (e.type == 'failed_to_stop');
- oSipStack = null;
- oSipSessionRegister = null;
- oSipSessionCall = null;
- uiOnConnectionEvent(false, false);
- stopRingbackTone();
- stopRingTone();
- uiVideoDisplayShowHide(false);
- divCallOptions.style.opacity = 0;
- txtCallStatus.innerHTML = '';
- txtRegStatus.innerHTML = bFailure ? "<i>Disconnected: <b>" + e.description + "</b></i>" : "<i>Disconnected</i>";
- break;
- }
- case 'i_new_call':
- {
- if (oSipSessionCall) {
- // do not accept the incoming call if we're already 'in call'
- e.newSession.hangup(); // comment this line for multi-line support
- }
- else {
- oSipSessionCall = e.newSession;
- btnCall.value = 'Answer';
- btnHangUp.value = 'Reject';
- btnCall.disabled = false;
- btnHangUp.disabled = false;
- startRingTone();
- var sRemoteNumber = (oSipSessionCall.getRemoteFriendlyName() || 'unknown');
- txtCallStatus.innerHTML = "<i>Incoming call from [<b>" + sRemoteNumber + "</b>]</i>";
- showNotifICall(sRemoteNumber);
- }
- break;
- }
- case 'm_permission_requested':
- {
- divGlassPanel.style.visibility = 'visible';
- break;
- }
- case 'm_permission_accepted':
- case 'm_permission_refused':
- {
- divGlassPanel.style.visibility = 'hidden';
- if(e.type == 'm_permission_refused'){
- uiCallTerminated('Media stream permission denied');
- }
- break;
- }
- case 'starting': default: break;
- }
- };
- // Callback function for SIP sessions (INVITE, REGISTER, MESSAGE...)
- function onSipEventSession(e /* SIPml.Session.Event */) {
- tsk_utils_log_info('==session event = ' + e.type);
- switch (e.type) {
- case 'connecting': case 'connected':
- {
- var bConnected = (e.type == 'connected');
- if (e.session == oSipSessionRegister) {
- uiOnConnectionEvent(bConnected, !bConnected);
- txtRegStatus.innerHTML = "<i>" + e.description + "</i>";
- }
- else if (e.session == oSipSessionCall) {
- btnHangUp.value = 'HangUp';
- btnCall.disabled = true;
- btnHangUp.disabled = false;
- btnTransfer.disabled = false;
- if (bConnected) {
- stopRingbackTone();
- stopRingTone();
- if (oNotifICall) {
- oNotifICall.cancel();
- oNotifICall = null;
- }
- }
- txtCallStatus.innerHTML = "<i>" + e.description + "</i>";
- divCallOptions.style.opacity = bConnected ? 1 : 0;
- if (SIPml.isWebRtc4AllSupported()) { // IE don't provide stream callback
- uiVideoDisplayEvent(true, true);
- uiVideoDisplayEvent(false, true);
- }
- }
- break;
- } // 'connecting' | 'connected'
- case 'terminating': case 'terminated':
- {
- if (e.session == oSipSessionRegister) {
- uiOnConnectionEvent(false, false);
- oSipSessionCall = null;
- oSipSessionRegister = null;
- txtRegStatus.innerHTML = "<i>" + e.description + "</i>";
- }
- else if (e.session == oSipSessionCall) {
- uiCallTerminated(e.description);
- }
- break;
- } // 'terminating' | 'terminated'
- case 'm_stream_video_local_added':
- {
- if (e.session == oSipSessionCall) {
- uiVideoDisplayEvent(true, true);
- }
- break;
- }
- case 'm_stream_video_local_removed':
- {
- if (e.session == oSipSessionCall) {
- uiVideoDisplayEvent(true, false);
- }
- break;
- }
- case 'm_stream_video_remote_added':
- {
- if (e.session == oSipSessionCall) {
- uiVideoDisplayEvent(false, true);
- }
- break;
- }
- case 'm_stream_video_remote_removed':
- {
- if (e.session == oSipSessionCall) {
- uiVideoDisplayEvent(false, false);
- }
- break;
- }
- case 'm_stream_audio_local_added':
- case 'm_stream_audio_local_removed':
- case 'm_stream_audio_remote_added':
- case 'm_stream_audio_remote_removed':
- {
- break;
- }
- case 'i_ect_new_call':
- {
- oSipSessionTransferCall = e.session;
- break;
- }
- case 'i_ao_request':
- {
- if(e.session == oSipSessionCall){
- var iSipResponseCode = e.getSipResponseCode();
- if (iSipResponseCode == 180 || iSipResponseCode == 183) {
- startRingbackTone();
- txtCallStatus.innerHTML = '<i>Remote ringing...</i>';
- }
- }
- break;
- }
- case 'm_early_media':
- {
- if(e.session == oSipSessionCall){
- stopRingbackTone();
- stopRingTone();
- txtCallStatus.innerHTML = '<i>Early media started</i>';
- }
- break;
- }
- case 'm_local_hold_ok':
- {
- if(e.session == oSipSessionCall){
- if (oSipSessionCall.bTransfering) {
- oSipSessionCall.bTransfering = false;
- // this.AVSession.TransferCall(this.transferUri);
- }
- btnHoldResume.value = 'Resume';
- btnHoldResume.disabled = false;
- txtCallStatus.innerHTML = '<i>Call placed on hold</i>';
- oSipSessionCall.bHeld = true;
- }
- break;
- }
- case 'm_local_hold_nok':
- {
- if(e.session == oSipSessionCall){
- oSipSessionCall.bTransfering = false;
- btnHoldResume.value = 'Hold';
- btnHoldResume.disabled = false;
- txtCallStatus.innerHTML = '<i>Failed to place remote party on hold</i>';
- }
- break;
- }
- case 'm_local_resume_ok':
- {
- if(e.session == oSipSessionCall){
- oSipSessionCall.bTransfering = false;
- btnHoldResume.value = 'Hold';
- btnHoldResume.disabled = false;
- txtCallStatus.innerHTML = '<i>Call taken off hold</i>';
- oSipSessionCall.bHeld = false;
- if (SIPml.isWebRtc4AllSupported()) { // IE don't provide stream callback yet
- uiVideoDisplayEvent(true, true);
- uiVideoDisplayEvent(false, true);
- }
- }
- break;
- }
- case 'm_local_resume_nok':
- {
- if(e.session == oSipSessionCall){
- oSipSessionCall.bTransfering = false;
- btnHoldResume.disabled = false;
- txtCallStatus.innerHTML = '<i>Failed to unhold call</i>';
- }
- break;
- }
- case 'm_remote_hold':
- {
- if(e.session == oSipSessionCall){
- txtCallStatus.innerHTML = '<i>Placed on hold by remote party</i>';
- }
- break;
- }
- case 'm_remote_resume':
- {
- if(e.session == oSipSessionCall){
- txtCallStatus.innerHTML = '<i>Taken off hold by remote party</i>';
- }
- break;
- }
- case 'o_ect_trying':
- {
- if(e.session == oSipSessionCall){
- txtCallStatus.innerHTML = '<i>Call transfer in progress...</i>';
- }
- break;
- }
- case 'o_ect_accepted':
- {
- if(e.session == oSipSessionCall){
- txtCallStatus.innerHTML = '<i>Call transfer accepted</i>';
- }
- break;
- }
- case 'o_ect_completed':
- case 'i_ect_completed':
- {
- if(e.session == oSipSessionCall){
- txtCallStatus.innerHTML = '<i>Call transfer completed</i>';
- btnTransfer.disabled = false;
- if (oSipSessionTransferCall) {
- oSipSessionCall = oSipSessionTransferCall;
- }
- oSipSessionTransferCall = null;
- }
- break;
- }
- case 'o_ect_failed':
- case 'i_ect_failed':
- {
- if(e.session == oSipSessionCall){
- txtCallStatus.innerHTML = '<i>Call transfer failed</i>';
- btnTransfer.disabled = false;
- }
- break;
- }
- case 'o_ect_notify':
- case 'i_ect_notify':
- {
- if(e.session == oSipSessionCall){
- txtCallStatus.innerHTML = "<i>Call Transfer: <b>" + e.getSipResponseCode() + " " + e.description + "</b></i>";
- if (e.getSipResponseCode() >= 300) {
- if (oSipSessionCall.bHeld) {
- oSipSessionCall.resume();
- }
- btnTransfer.disabled = false;
- }
- }
- break;
- }
- case 'i_ect_requested':
- {
- if(e.session == oSipSessionCall){
- var s_message = "Do you accept call transfer to [" + e.getTransferDestinationFriendlyName() + "]?";//FIXME
- if (confirm(s_message)) {
- txtCallStatus.innerHTML = "<i>Call transfer in progress...</i>";
- oSipSessionCall.acceptTransfer();
- break;
- }
- oSipSessionCall.rejectTransfer();
- }
- break;
- }
- }
- }
- </script>
- <body style="cursor:wait">
- <div class="navbar navbar-fixed-top">
- <div id="divNavbarInner" class="navbar-inner">
- <div class="container">
- <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"><span
- class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span>
- </a>
- <img alt="sipML5" class="brand" src="./images/sipml-34x39.png" />
- <div class="nav-collapse">
- <ul class="nav">
- <li class="active"><a href="index.html?svn=179">Home</a></li>
- </ul>
- </div>
- <!--/.nav-collapse -->
- </div>
- </div>
- </div>
- <div class="container">
- <div class="row-fluid">
- <div class="span4 well">
- <label style="width: 100%;" align="center" id="txtRegStatus">
- </label>
- <h2>
- Registration</h2>
- <br />
- <table style='width: 100%'>
- <tr>
- <td>
- <label style="height: 100%">
- Display Name:</label>
- </td>
- <td>
- <input type="text" style="width: 100%; height: 100%" id="txtDisplayName" value=""
- placeholder="e.g. John Doe" />
- </td>
- </tr>
- <tr>
- <td>
- <label style="height: 100%">
- Private Identity<sup>*</sup>:</label>
- </td>
- <td>
- <input type="text" style="width: 100%; height: 100%" id="txtPrivateIdentity" value=""
- placeholder="e.g. +33600000000" />
- </td>
- </tr>
- <tr>
- <td>
- <label style="height: 100%">
- Public Identity<sup>*</sup>:</label>
- </td>
- <td>
- <input type="text" style="width: 100%; height: 100%" id="txtPublicIdentity" value=""
- placeholder="e.g. sip:[email protected]" />
- </td>
- </tr>
- <tr>
- <td>
- <label style="height: 100%">Password:</label>
- </td>
- <td>
- <input type="password" style="width: 100%; height: 100%" id="txtPassword" value="" />
- </td>
- </tr>
- <tr>
- <td>
- <label style="height: 100%">Realm<sup>*</sup>:</label>
- </td>
- <td>
- <input type="text" style="width: 100%; height: 100%" id="txtRealm" value="" placeholder="e.g. doubango.org" />
- </td>
- </tr>
- <tr>
- <td colspan="2" align="right">
- <input type="button" class="btn-success" id="btnRegister" value="LogIn" disabled onclick='sipRegister();' />
-
- <input type="button" class="btn-danger" id="btnUnRegister" value="LogOut" disabled onclick='sipUnRegister();' />
- </td>
- </tr>
- <tr>
- <td colspan="3">
- <p class="small"><sup>*</sup> <i>Mandatory Field</i></p>
- </td>
- </tr>
- <tr>
- <td colspan="3">
- <a class="btn" href="http://code.google.com/p/sipml5/wiki/Public_SIP_Servers" target="_blank">Need SIP account?</a>
- </td>
- </tr>
- <tr>
- <td colspan="3">
- <a class="btn" href="./expert.htm" target="_blank">Expert mode?</a>
- </td>
- </tr>
- </table>
- </div>
- <div id="divCallCtrl" class="span7 well" style='display:table-cell; vertical-align:middle'>
- <label style="width: 100%;" align="center" id="txtCallStatus">
- </label>
- <h2>
- Call control
- </h2>
- <br />
- <table style='width: 100%;'>
- <tr>
- <td style="white-space:nowrap;">
- <input type="text" style="width: 100%; height:100%" id="txtPhoneNumber" value="" placeholder="Enter phone number to call" />
- </td>
- </tr>
- <tr>
- <td colspan="1" align="right">
- <input type="button" class="btn-primary" style="" id="btnCall" value="Call" onclick='sipCall();' disabled />
- <input type="button" class="btn-primary" style="" id="btnHangUp" value="HangUp" onclick='sipHangUp();' disabled />
- </td>
- </tr>
- <tr>
- <td id="tdVideo" class='tab-video'>
- <div id="divVideo" class='div-video'>
- <div id="divVideoRemote" style='border:1px solid #000; height:100%; width:100%'>
- <video class="video" width="100%" height="100%" id="video_remote" autoplay="autoplay" style="opacity: 0;
- background-color: #000000; -webkit-transition-property: opacity; -webkit-transition-duration: 2s;">
- </video>
- </div>
- <div id="divVideoLocal" style='border:0px solid #000'>
- <video class="video" width="88px" height="72px" id="video_local" autoplay="autoplay" muted="true" style="opacity: 0;
- margin-top: -80px; margin-left: 5px; background-color: #000000; -webkit-transition-property: opacity;
- -webkit-transition-duration: 2s;">
- </video>
- </div>
- </div>
- </td>
- </tr>
- <tr>
- <td align='center'>
- <div id='divCallOptions' class='call-options' style='opacity: 0; margin-top: 3px'>
- <input type="button" class="btn" style="" id="btnFullScreen" value="FullScreen" disabled onclick='toggleFullScreen();' />
- <input type="button" class="btn" style="" id="btnHoldResume" value="Hold" onclick='sipToggleHoldResume();' />
- <input type="button" class="btn" style="" id="btnTransfer" value="Transfer" onclick='sipTransfer();' />
- <input type="button" class="btn" style="" id="btnKeyPad" value="KeyPad" onclick='openKeyPad();' />
- </div>
- </td>
- </tr>
- </table>
- </div>
- </div>
-
- <br />
- <footer>
- <p>© Doubango Telecom 2012-2013 <br />
- <i>Inspiring the future</i>
- </p>
- <!-- Creates all ATL/COM objects right now
- Will open confirmation dialogs if not already done
- -->
- <object id="fakeVideoDisplay" classid="clsid:5C2C407B-09D9-449B-BB83-C39B7802A684" style="visibility:hidden;"> </object>
- <object id="fakeLooper" classid="clsid:7082C446-54A8-4280-A18D-54143846211A" style="visibility:hidden;"> </object>
- <object id="fakeSessionDescription" classid="clsid:DBA9F8E2-F9FB-47CF-8797-986A69A1CA9C" style="visibility:hidden;"> </object>
- <object id="fakeNetTransport" classid="clsid:5A7D84EC-382C-4844-AB3A-9825DBE30DAE" style="visibility:hidden;"> </object>
- <object id="fakePeerConnection" classid="clsid:56D10AD3-8F52-4AA4-854B-41F4D6F9CEA3" style="visibility:hidden;"> </object>
- <!--
- NPAPI browsers: Safari, Opera and Firefox
- -->
- <!--embed id="WebRtc4npapi" type="application/w4a" width='1' height='1' style='visibility:hidden;' /-->
- </footer>
- </div>
- <!-- /container -->
- <!-- Glass Panel -->
- <div id='divGlassPanel' class='glass-panel' style='visibility:hidden'></div>
- <!-- KeyPad Div -->
- <div id='divKeyPad' class='span2 well div-keypad' style="left:0px; top:0px; width:250; height:240; visibility:hidden">
- <table style="width: 100%; height: 100%">
- <tr><td><input type="button" style="width: 33%" class="btn" value="1" onclick="sipSendDTMF('1');"/><input type="button" style="width: 33%" class="btn" value="2" onclick="sipSendDTMF('2');"/><input type="button" style="width: 33%" class="btn" value="3" onclick="sipSendDTMF('3');"/></td></tr>
- <tr><td><input type="button" style="width: 33%" class="btn" value="4" onclick="sipSendDTMF('4');"/><input type="button" style="width: 33%" class="btn" value="5" onclick="sipSendDTMF('5');"/><input type="button" style="width: 33%" class="btn" value="6" onclick="sipSendDTMF('6');"/></td></tr>
- <tr><td><input type="button" style="width: 33%" class="btn" value="7" onclick="sipSendDTMF('7');"/><input type="button" style="width: 33%" class="btn" value="8" onclick="sipSendDTMF('8');"/><input type="button" style="width: 33%" class="btn" value="9" onclick="sipSendDTMF('9');"/></td></tr>
- <tr><td><input type="button" style="width: 33%" class="btn" value="*" onclick="sipSendDTMF('*');"/><input type="button" style="width: 33%" class="btn" value="0" onclick="sipSendDTMF('0');"/><input type="button" style="width: 33%" class="btn" value="#" onclick="sipSendDTMF('#');"/></td></tr>
- <tr><td colspan=3><input type="button" style="width: 100%" class="btn btn-medium btn-danger" value="close" onclick="closeKeyPad();" /></td></tr>
- </table>
- </div>
- <!-- Le javascript
- ================================================== -->
- <!-- Placed at the end of the document so the pages load faster -->
- <script type="text/javascript" src="./assets/js/jquery.js"></script>
- <script type="text/javascript" src="./assets/js/bootstrap-transition.js"></script>
- <script type="text/javascript" src="./assets/js/bootstrap-alert.js"></script>
- <script type="text/javascript" src="./assets/js/bootstrap-modal.js"></script>
- <script type="text/javascript" src="./assets/js/bootstrap-dropdown.js"></script>
- <script type="text/javascript" src="./assets/js/bootstrap-scrollspy.js"></script>
- <script type="text/javascript" src="./assets/js/bootstrap-tab.js"></script>
- <script type="text/javascript" src="./assets/js/bootstrap-tooltip.js"></script>
- <script type="text/javascript" src="./assets/js/bootstrap-popover.js"></script>
- <script type="text/javascript" src="./assets/js/bootstrap-button.js"></script>
- <script type="text/javascript" src="./assets/js/bootstrap-collapse.js"></script>
- <script type="text/javascript" src="./assets/js/bootstrap-carousel.js"></script>
- <script type="text/javascript" src="./assets/js/bootstrap-typeahead.js"></script>
- <!-- Audios -->
- <audio id="audio_remote" autoplay="autoplay" />
- <audio id="ringtone" loop src="sounds/ringtone.wav" />
- <audio id="ringbacktone" loop src="sounds/ringbacktone.wav" />
- <audio id="dtmfTone" src="sounds/dtmf.wav" />
- <!--
- Microsoft Internet Explorer extension
- For now we use msi installer as we don't have trusted certificate yet :(
- -->
- <!--object id="webrtc4ieLooper" classid="clsid:7082C446-54A8-4280-A18D-54143846211A" CODEBASE="http://sipml5.org/deploy/webrtc4all.CAB"> </object-->
- <!-- GOOGLE ANALYTICS -->
- <script type="text/javascript">
- var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
- document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
- </script>
- <script type="text/javascript">
- try {
- var pageTracker = _gat._getTracker("UA-6868621-19");
- pageTracker._trackPageview();
- } catch (err) { }
- </script>
- </body>
- </html>
|