12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391 |
- /* jshint -W117 */
- /* application specific logic */
- var connection = null;
- var authenticatedUser = false;
- var focus = null;
- var activecall = null;
- var RTC = null;
- var nickname = null;
- var sharedKey = '';
- var recordingToken ='';
- var roomUrl = null;
- var roomName = null;
- var ssrc2jid = {};
- var mediaStreams = [];
-
- /**
- * The stats collector that process stats data and triggers updates to app.js.
- * @type {StatsCollector}
- */
- var statsCollector = null;
-
- /**
- * The stats collector for the local stream.
- * @type {LocalStatsCollector}
- */
- var localStatsCollector = null;
-
- /**
- * Indicates whether ssrc is camera video or desktop stream.
- * FIXME: remove those maps
- */
- var ssrc2videoType = {};
- var videoSrcToSsrc = {};
- /**
- * Currently focused video "src"(displayed in large video).
- * @type {String}
- */
- var focusedVideoSrc = null;
- var mutedAudios = {};
-
- var localVideoSrc = null;
- var flipXLocalVideo = true;
- var isFullScreen = false;
- var toolbarTimeout = null;
- var currentVideoWidth = null;
- var currentVideoHeight = null;
- /**
- * Method used to calculate large video size.
- * @type {function ()}
- */
- var getVideoSize;
- /**
- * Method used to get large video position.
- * @type {function ()}
- */
- var getVideoPosition;
-
- /* window.onbeforeunload = closePageWarning; */
-
- var sessionTerminated = false;
-
- function init() {
- RTC = setupRTC();
- if (RTC === null) {
- window.location.href = 'webrtcrequired.html';
- return;
- } else if (RTC.browser !== 'chrome') {
- window.location.href = 'chromeonly.html';
- return;
- }
-
- obtainAudioAndVideoPermissions(function (stream) {
- var audioStream = new webkitMediaStream(stream);
- var videoStream = new webkitMediaStream(stream);
- var videoTracks = stream.getVideoTracks();
- var audioTracks = stream.getAudioTracks();
- for (var i = 0; i < videoTracks.length; i++) {
- audioStream.removeTrack(videoTracks[i]);
- }
- VideoLayout.changeLocalAudio(audioStream);
- startLocalRtpStatsCollector(audioStream);
-
- for (i = 0; i < audioTracks.length; i++) {
- videoStream.removeTrack(audioTracks[i]);
- }
- VideoLayout.changeLocalVideo(videoStream, true);
- maybeDoJoin();
- });
-
- var jid = document.getElementById('jid').value || config.hosts.anonymousdomain || config.hosts.domain || window.location.hostname;
- connect(jid);
- }
-
- function connect(jid, password) {
- connection = new Strophe.Connection(document.getElementById('boshURL').value || config.bosh || '/http-bind');
-
- if (nickname) {
- connection.emuc.addDisplayNameToPresence(nickname);
- }
-
- if (connection.disco) {
- // for chrome, add multistream cap
- }
- connection.jingle.pc_constraints = RTC.pc_constraints;
- if (config.useIPv6) {
- // https://code.google.com/p/webrtc/issues/detail?id=2828
- if (!connection.jingle.pc_constraints.optional) connection.jingle.pc_constraints.optional = [];
- connection.jingle.pc_constraints.optional.push({googIPv6: true});
- }
-
- if(!password)
- password = document.getElementById('password').value;
-
- var anonymousConnectionFailed = false;
- connection.connect(jid, password, function (status, msg) {
- if (status === Strophe.Status.CONNECTED) {
- console.log('connected');
- if (config.useStunTurn) {
- connection.jingle.getStunAndTurnCredentials();
- }
- document.getElementById('connect').disabled = true;
-
- if(password)
- authenticatedUser = true;
- maybeDoJoin();
- } else if (status === Strophe.Status.CONNFAIL) {
- if(msg === 'x-strophe-bad-non-anon-jid') {
- anonymousConnectionFailed = true;
- }
- console.log('status', status);
- } else if (status === Strophe.Status.DISCONNECTED) {
- if(anonymousConnectionFailed) {
- // prompt user for username and password
- $(document).trigger('passwordrequired.main');
- }
- } else if (status === Strophe.Status.AUTHFAIL) {
- // wrong password or username, prompt user
- $(document).trigger('passwordrequired.main');
-
- } else {
- console.log('status', status);
- }
- });
- }
-
- /**
- * We ask for audio and video combined stream in order to get permissions and
- * not to ask twice.
- */
- function obtainAudioAndVideoPermissions(callback) {
- // Get AV
- getUserMediaWithConstraints(
- ['audio', 'video'],
- function (avStream) {
- callback(avStream);
- },
- function (error) {
- console.error('failed to obtain audio/video stream - stop', error);
- },
- config.resolution || '360');
- }
-
- function maybeDoJoin() {
- if (connection && connection.connected && Strophe.getResourceFromJid(connection.jid) // .connected is true while connecting?
- && (connection.jingle.localAudio || connection.jingle.localVideo)) {
- doJoin();
- }
- }
-
-
- function doJoin() {
- var roomnode = null;
- var path = window.location.pathname;
- var roomjid;
-
- // determinde the room node from the url
- // TODO: just the roomnode or the whole bare jid?
- if (config.getroomnode && typeof config.getroomnode === 'function') {
- // custom function might be responsible for doing the pushstate
- roomnode = config.getroomnode(path);
- } else {
- /* fall back to default strategy
- * this is making assumptions about how the URL->room mapping happens.
- * It currently assumes deployment at root, with a rewrite like the
- * following one (for nginx):
- location ~ ^/([a-zA-Z0-9]+)$ {
- rewrite ^/(.*)$ / break;
- }
- */
- if (path.length > 1) {
- roomnode = path.substr(1).toLowerCase();
- } else {
- roomnode = RoomNameGenerator.generateRoomWithoutSeparator(3);
-
- window.history.pushState('VideoChat',
- 'Room: ' + roomnode, window.location.pathname + roomnode);
- }
- }
-
- roomName = roomnode + '@' + config.hosts.muc;
-
- roomjid = roomName;
-
- if (config.useNicks) {
- var nick = window.prompt('Your nickname (optional)');
- if (nick) {
- roomjid += '/' + nick;
- } else {
- roomjid += '/' + Strophe.getNodeFromJid(connection.jid);
- }
- } else {
-
- var tmpJid = Strophe.getNodeFromJid(connection.jid);
-
- if(!authenticatedUser)
- tmpJid = tmpJid.substr(0, 8);
-
- roomjid += '/' + tmpJid;
- }
- connection.emuc.doJoin(roomjid);
- }
-
- function waitForRemoteVideo(selector, ssrc, stream) {
- if (selector.removed || !selector.parent().is(":visible")) {
- console.warn("Media removed before had started", selector);
- return;
- }
-
- if (stream.id === 'mixedmslabel') return;
-
- if (selector[0].currentTime > 0) {
- RTC.attachMediaStream(selector, stream); // FIXME: why do i have to do this for FF?
-
- // FIXME: add a class that will associate peer Jid, video.src, it's ssrc and video type
- // in order to get rid of too many maps
- if (ssrc && selector.attr('src')) {
- videoSrcToSsrc[selector.attr('src')] = ssrc;
- } else {
- console.warn("No ssrc given for video", selector);
- }
-
- $(document).trigger('videoactive.jingle', [selector]);
- } else {
- setTimeout(function () {
- waitForRemoteVideo(selector, ssrc, stream);
- }, 250);
- }
- }
-
- $(document).bind('remotestreamadded.jingle', function (event, data, sid) {
- var sess = connection.jingle.sessions[sid];
-
- var thessrc;
- // look up an associated JID for a stream id
- if (data.stream.id.indexOf('mixedmslabel') === -1) {
- var ssrclines
- = SDPUtil.find_lines(sess.peerconnection.remoteDescription.sdp, 'a=ssrc');
- ssrclines = ssrclines.filter(function (line) {
- return line.indexOf('mslabel:' + data.stream.label) !== -1;
- });
- if (ssrclines.length) {
- thessrc = ssrclines[0].substring(7).split(' ')[0];
- // ok to overwrite the one from focus? might save work in colibri.js
- console.log('associated jid', ssrc2jid[thessrc], data.peerjid);
- if (ssrc2jid[thessrc]) {
- data.peerjid = ssrc2jid[thessrc];
- }
- }
- }
-
- mediaStreams.push(new MediaStream(data, sid, thessrc));
-
- var container;
- var remotes = document.getElementById('remoteVideos');
-
- if (data.peerjid) {
- VideoLayout.ensurePeerContainerExists(data.peerjid);
-
- container = document.getElementById(
- 'participant_' + Strophe.getResourceFromJid(data.peerjid));
- } else {
- if (data.stream.id !== 'mixedmslabel') {
- console.error( 'can not associate stream',
- data.stream.id,
- 'with a participant');
- // We don't want to add it here since it will cause troubles
- return;
- }
- // FIXME: for the mixed ms we dont need a video -- currently
- container = document.createElement('span');
- container.id = 'mixedstream';
- container.className = 'videocontainer';
- remotes.appendChild(container);
- Util.playSoundNotification('userJoined');
- }
-
- var isVideo = data.stream.getVideoTracks().length > 0;
-
- if (container) {
- VideoLayout.addRemoteStreamElement( container,
- sid,
- data.stream,
- data.peerjid,
- thessrc);
- }
-
- // an attempt to work around https://github.com/jitsi/jitmeet/issues/32
- if (isVideo &&
- data.peerjid && sess.peerjid === data.peerjid &&
- data.stream.getVideoTracks().length === 0 &&
- connection.jingle.localVideo.getVideoTracks().length > 0) {
- //
- window.setTimeout(function () {
- sendKeyframe(sess.peerconnection);
- }, 3000);
- }
- });
-
- /**
- * Returns the JID of the user to whom given <tt>videoSrc</tt> belongs.
- * @param videoSrc the video "src" identifier.
- * @returns {null | String} the JID of the user to whom given <tt>videoSrc</tt>
- * belongs.
- */
- function getJidFromVideoSrc(videoSrc)
- {
- if (videoSrc === localVideoSrc)
- return connection.emuc.myroomjid;
-
- var ssrc = videoSrcToSsrc[videoSrc];
- if (!ssrc)
- {
- return null;
- }
- return ssrc2jid[ssrc];
- }
-
- // an attempt to work around https://github.com/jitsi/jitmeet/issues/32
- function sendKeyframe(pc) {
- console.log('sendkeyframe', pc.iceConnectionState);
- if (pc.iceConnectionState !== 'connected') return; // safe...
- pc.setRemoteDescription(
- pc.remoteDescription,
- function () {
- pc.createAnswer(
- function (modifiedAnswer) {
- pc.setLocalDescription(
- modifiedAnswer,
- function () {
- // noop
- },
- function (error) {
- console.log('triggerKeyframe setLocalDescription failed', error);
- }
- );
- },
- function (error) {
- console.log('triggerKeyframe createAnswer failed', error);
- }
- );
- },
- function (error) {
- console.log('triggerKeyframe setRemoteDescription failed', error);
- }
- );
- }
-
- // Really mute video, i.e. dont even send black frames
- function muteVideo(pc, unmute) {
- // FIXME: this probably needs another of those lovely state safeguards...
- // which checks for iceconn == connected and sigstate == stable
- pc.setRemoteDescription(pc.remoteDescription,
- function () {
- pc.createAnswer(
- function (answer) {
- var sdp = new SDP(answer.sdp);
- if (sdp.media.length > 1) {
- if (unmute)
- sdp.media[1] = sdp.media[1].replace('a=recvonly', 'a=sendrecv');
- else
- sdp.media[1] = sdp.media[1].replace('a=sendrecv', 'a=recvonly');
- sdp.raw = sdp.session + sdp.media.join('');
- answer.sdp = sdp.raw;
- }
- pc.setLocalDescription(answer,
- function () {
- console.log('mute SLD ok');
- },
- function (error) {
- console.log('mute SLD error');
- }
- );
- },
- function (error) {
- console.log(error);
- }
- );
- },
- function (error) {
- console.log('muteVideo SRD error');
- }
- );
- }
-
- /**
- * Callback for audio levels changed.
- * @param jid JID of the user
- * @param audioLevel the audio level value
- */
- function audioLevelUpdated(jid, audioLevel)
- {
- var resourceJid;
- if(jid === LocalStatsCollector.LOCAL_JID)
- {
- resourceJid = AudioLevels.LOCAL_LEVEL;
- if(isAudioMuted())
- return;
- }
- else
- {
- resourceJid = Strophe.getResourceFromJid(jid);
- }
-
- AudioLevels.updateAudioLevel(resourceJid, audioLevel);
- }
-
- /**
- * Starts the {@link StatsCollector} if the feature is enabled in config.js.
- */
- function startRtpStatsCollector()
- {
- stopRTPStatsCollector();
- if (config.enableRtpStats)
- {
- statsCollector = new StatsCollector(
- getConferenceHandler().peerconnection, 200, audioLevelUpdated);
- statsCollector.start();
- }
- }
-
- /**
- * Stops the {@link StatsCollector}.
- */
- function stopRTPStatsCollector()
- {
- if (statsCollector)
- {
- statsCollector.stop();
- statsCollector = null;
- }
- }
-
- /**
- * Starts the {@link LocalStatsCollector} if the feature is enabled in config.js
- * @param stream the stream that will be used for collecting statistics.
- */
- function startLocalRtpStatsCollector(stream)
- {
- if(config.enableRtpStats)
- {
- localStatsCollector = new LocalStatsCollector(stream, 100, audioLevelUpdated);
- localStatsCollector.start();
- }
- }
-
- /**
- * Stops the {@link LocalStatsCollector}.
- */
- function stopLocalRtpStatsCollector()
- {
- if(localStatsCollector)
- {
- localStatsCollector.stop();
- localStatsCollector = null;
- }
- }
-
- $(document).bind('callincoming.jingle', function (event, sid) {
- var sess = connection.jingle.sessions[sid];
-
- // TODO: do we check activecall == null?
- activecall = sess;
-
- startRtpStatsCollector();
-
- // Bind data channel listener in case we're a regular participant
- if (config.openSctp)
- {
- bindDataChannelListener(sess.peerconnection);
- }
-
- // TODO: check affiliation and/or role
- console.log('emuc data for', sess.peerjid, connection.emuc.members[sess.peerjid]);
- sess.usedrip = true; // not-so-naive trickle ice
- sess.sendAnswer();
- sess.accept();
-
- });
-
- $(document).bind('conferenceCreated.jingle', function (event, focus)
- {
- startRtpStatsCollector();
- });
-
- $(document).bind('conferenceCreated.jingle', function (event, focus)
- {
- // Bind data channel listener in case we're the focus
- if (config.openSctp)
- {
- bindDataChannelListener(focus.peerconnection);
- }
- });
-
- $(document).bind('callterminated.jingle', function (event, sid, jid, reason) {
- // Leave the room if my call has been remotely terminated.
- if (connection.emuc.joined && focus == null && reason === 'kick') {
- sessionTerminated = true;
- connection.emuc.doLeave();
- openMessageDialog( "Session Terminated",
- "Ouch! You have been kicked out of the meet!");
- }
- });
-
- $(document).bind('setLocalDescription.jingle', function (event, sid) {
- // put our ssrcs into presence so other clients can identify our stream
- var sess = connection.jingle.sessions[sid];
- var newssrcs = {};
- var directions = {};
- var localSDP = new SDP(sess.peerconnection.localDescription.sdp);
- localSDP.media.forEach(function (media) {
- var type = SDPUtil.parse_mid(SDPUtil.find_line(media, 'a=mid:'));
-
- if (SDPUtil.find_line(media, 'a=ssrc:')) {
- // assumes a single local ssrc
- var ssrc = SDPUtil.find_line(media, 'a=ssrc:').substring(7).split(' ')[0];
- newssrcs[type] = ssrc;
-
- directions[type] = (
- SDPUtil.find_line(media, 'a=sendrecv') ||
- SDPUtil.find_line(media, 'a=recvonly') ||
- SDPUtil.find_line(media, 'a=sendonly') ||
- SDPUtil.find_line(media, 'a=inactive') ||
- 'a=sendrecv').substr(2);
- }
- });
- console.log('new ssrcs', newssrcs);
-
- // Have to clear presence map to get rid of removed streams
- connection.emuc.clearPresenceMedia();
- var i = 0;
- Object.keys(newssrcs).forEach(function (mtype) {
- i++;
- var type = mtype;
- // Change video type to screen
- if (mtype === 'video' && isUsingScreenStream) {
- type = 'screen';
- }
- connection.emuc.addMediaToPresence(i, type, newssrcs[mtype], directions[mtype]);
- });
- if (i > 0) {
- connection.emuc.sendPresence();
- }
- });
-
- $(document).bind('joined.muc', function (event, jid, info) {
- updateRoomUrl(window.location.href);
- document.getElementById('localNick').appendChild(
- document.createTextNode(Strophe.getResourceFromJid(jid) + ' (me)')
- );
-
- if (Object.keys(connection.emuc.members).length < 1) {
- focus = new ColibriFocus(connection, config.hosts.bridge);
- if (nickname !== null) {
- focus.setEndpointDisplayName(connection.emuc.myroomjid,
- nickname);
- }
- Toolbar.showSipCallButton(true);
- Toolbar.showRecordingButton(false);
- }
-
- if (!focus)
- {
- Toolbar.showSipCallButton(false);
- }
-
- if (focus && config.etherpad_base) {
- Etherpad.init();
- }
-
- VideoLayout.showFocusIndicator();
-
- // Add myself to the contact list.
- ContactList.addContact(jid);
-
- // Once we've joined the muc show the toolbar
- Toolbar.showToolbar();
-
- if (info.displayName)
- $(document).trigger('displaynamechanged',
- ['localVideoContainer', info.displayName + ' (me)']);
- });
-
- $(document).bind('entered.muc', function (event, jid, info, pres) {
- console.log('entered', jid, info);
-
- console.log('is focus?' + focus ? 'true' : 'false');
-
- // Add Peer's container
- VideoLayout.ensurePeerContainerExists(jid);
-
- if (focus !== null) {
- // FIXME: this should prepare the video
- if (focus.confid === null) {
- console.log('make new conference with', jid);
- focus.makeConference(Object.keys(connection.emuc.members));
- Toolbar.showRecordingButton(true);
- } else {
- console.log('invite', jid, 'into conference');
- focus.addNewParticipant(jid);
- }
- }
- else if (sharedKey) {
- Toolbar.updateLockButton();
- }
- });
-
- $(document).bind('left.muc', function (event, jid) {
- console.log('left.muc', jid);
- // Need to call this with a slight delay, otherwise the element couldn't be
- // found for some reason.
- window.setTimeout(function () {
- var container = document.getElementById(
- 'participant_' + Strophe.getResourceFromJid(jid));
- if (container) {
- // hide here, wait for video to close before removing
- $(container).hide();
- VideoLayout.resizeThumbnails();
- }
- }, 10);
-
- // Unlock large video
- if (focusedVideoSrc)
- {
- if (getJidFromVideoSrc(focusedVideoSrc) === jid)
- {
- console.info("Focused video owner has left the conference");
- focusedVideoSrc = null;
- }
- }
-
- connection.jingle.terminateByJid(jid);
-
- if (focus == null
- // I shouldn't be the one that left to enter here.
- && jid !== connection.emuc.myroomjid
- && connection.emuc.myroomjid === connection.emuc.list_members[0]
- // If our session has been terminated for some reason
- // (kicked, hangup), don't try to become the focus
- && !sessionTerminated) {
- console.log('welcome to our new focus... myself');
- focus = new ColibriFocus(connection, config.hosts.bridge);
- if (nickname !== null) {
- focus.setEndpointDisplayName(connection.emuc.myroomjid,
- nickname);
- }
-
- Toolbar.showSipCallButton(true);
-
- if (Object.keys(connection.emuc.members).length > 0) {
- focus.makeConference(Object.keys(connection.emuc.members));
- Toolbar.showRecordingButton(true);
- }
- $(document).trigger('focusechanged.muc', [focus]);
- }
- else if (focus && Object.keys(connection.emuc.members).length === 0) {
- console.log('everyone left');
- // FIXME: closing the connection is a hack to avoid some
- // problems with reinit
- disposeConference();
- focus = new ColibriFocus(connection, config.hosts.bridge);
- if (nickname !== null) {
- focus.setEndpointDisplayName(connection.emuc.myroomjid,
- nickname);
- }
- Toolbar.showSipCallButton(true);
- Toolbar.showRecordingButton(false);
- }
- if (connection.emuc.getPrezi(jid)) {
- $(document).trigger('presentationremoved.muc',
- [jid, connection.emuc.getPrezi(jid)]);
- }
- });
-
- $(document).bind('presence.muc', function (event, jid, info, pres) {
-
- // Remove old ssrcs coming from the jid
- Object.keys(ssrc2jid).forEach(function (ssrc) {
- if (ssrc2jid[ssrc] == jid) {
- delete ssrc2jid[ssrc];
- }
- if (ssrc2videoType[ssrc] == jid) {
- delete ssrc2videoType[ssrc];
- }
- });
-
- $(pres).find('>media[xmlns="http://estos.de/ns/mjs"]>source').each(function (idx, ssrc) {
- //console.log(jid, 'assoc ssrc', ssrc.getAttribute('type'), ssrc.getAttribute('ssrc'));
- var ssrcV = ssrc.getAttribute('ssrc');
- ssrc2jid[ssrcV] = jid;
-
- var type = ssrc.getAttribute('type');
- ssrc2videoType[ssrcV] = type;
-
- // might need to update the direction if participant just went from sendrecv to recvonly
- if (type === 'video' || type === 'screen') {
- var el = $('#participant_' + Strophe.getResourceFromJid(jid) + '>video');
- switch (ssrc.getAttribute('direction')) {
- case 'sendrecv':
- el.show();
- break;
- case 'recvonly':
- el.hide();
- // FIXME: Check if we have to change large video
- //VideoLayout.updateLargeVideo(el);
- break;
- }
- }
- });
-
- if (info.displayName && info.displayName.length > 0)
- $(document).trigger('displaynamechanged',
- [jid, info.displayName]);
-
- if (focus !== null && info.displayName !== null) {
- focus.setEndpointDisplayName(jid, info.displayName);
- }
- });
-
- $(document).bind('presence.status.muc', function (event, jid, info, pres) {
-
- VideoLayout.setPresenceStatus(
- 'participant_' + Strophe.getResourceFromJid(jid), info.status);
-
- });
-
- $(document).bind('passwordrequired.muc', function (event, jid) {
- console.log('on password required', jid);
-
- $.prompt('<h2>Password required</h2>' +
- '<input id="lockKey" type="text" placeholder="shared key" autofocus>', {
- persistent: true,
- buttons: { "Ok": true, "Cancel": false},
- defaultButton: 1,
- loaded: function (event) {
- document.getElementById('lockKey').focus();
- },
- submit: function (e, v, m, f) {
- if (v) {
- var lockKey = document.getElementById('lockKey');
-
- if (lockKey.value !== null) {
- setSharedKey(lockKey.value);
- connection.emuc.doJoin(jid, lockKey.value);
- }
- }
- }
- });
- });
-
- $(document).bind('passwordrequired.main', function (event) {
- console.log('password is required');
-
- $.prompt('<h2>Password required</h2>' +
- '<input id="passwordrequired.username" type="text" placeholder="user@domain.net" autofocus>' +
- '<input id="passwordrequired.password" type="password" placeholder="user password">', {
- persistent: true,
- buttons: { "Ok": true, "Cancel": false},
- defaultButton: 1,
- loaded: function (event) {
- document.getElementById('passwordrequired.username').focus();
- },
- submit: function (e, v, m, f) {
- if (v) {
- var username = document.getElementById('passwordrequired.username');
- var password = document.getElementById('passwordrequired.password');
-
- if (username.value !== null && password.value != null) {
- connect(username.value, password.value);
- }
- }
- }
- });
- });
-
- /**
- * Checks if video identified by given src is desktop stream.
- * @param videoSrc eg.
- * blob:https%3A//pawel.jitsi.net/9a46e0bd-131e-4d18-9c14-a9264e8db395
- * @returns {boolean}
- */
- function isVideoSrcDesktop(videoSrc) {
- // FIXME: fix this mapping mess...
- // figure out if large video is desktop stream or just a camera
- var isDesktop = false;
- if (localVideoSrc === videoSrc) {
- // local video
- isDesktop = isUsingScreenStream;
- } else {
- // Do we have associations...
- var videoSsrc = videoSrcToSsrc[videoSrc];
- if (videoSsrc) {
- var videoType = ssrc2videoType[videoSsrc];
- if (videoType) {
- // Finally there...
- isDesktop = videoType === 'screen';
- } else {
- console.error("No video type for ssrc: " + videoSsrc);
- }
- } else {
- console.error("No ssrc for src: " + videoSrc);
- }
- }
- return isDesktop;
- }
-
- function getConferenceHandler() {
- return focus ? focus : activecall;
- }
-
- function toggleVideo() {
- if (!(connection && connection.jingle.localVideo))
- return;
-
- var sess = getConferenceHandler();
- if (sess) {
- sess.toggleVideoMute(
- function (isMuted) {
- if (isMuted) {
- $('#video').removeClass("icon-camera");
- $('#video').addClass("icon-camera icon-camera-disabled");
- } else {
- $('#video').removeClass("icon-camera icon-camera-disabled");
- $('#video').addClass("icon-camera");
- }
- }
- );
- }
-
- sess = focus || activecall;
- if (!sess) {
- return;
- }
-
- sess.pendingop = ismuted ? 'unmute' : 'mute';
- // connection.emuc.addVideoInfoToPresence(!ismuted);
- // connection.emuc.sendPresence();
-
- sess.modifySources();
- }
-
- /**
- * Mutes / unmutes audio for the local participant.
- */
- function toggleAudio() {
- if (!(connection && connection.jingle.localAudio)) {
- preMuted = true;
- // We still click the button.
- buttonClick("#mute", "icon-microphone icon-mic-disabled");
- return;
- }
-
- var localAudio = connection.jingle.localAudio;
- for (var idx = 0; idx < localAudio.getAudioTracks().length; idx++) {
- var audioEnabled = localAudio.getAudioTracks()[idx].enabled;
-
- localAudio.getAudioTracks()[idx].enabled = !audioEnabled;
- // isMuted is the opposite of audioEnabled
- connection.emuc.addAudioInfoToPresence(audioEnabled);
- connection.emuc.sendPresence();
- }
-
- buttonClick("#mute", "icon-microphone icon-mic-disabled");
- }
-
- /**
- * Checks whether the audio is muted or not.
- * @returns {boolean} true if audio is muted and false if not.
- */
- function isAudioMuted()
- {
- var localAudio = connection.jingle.localAudio;
- for (var idx = 0; idx < localAudio.getAudioTracks().length; idx++) {
- if(localAudio.getAudioTracks()[idx].enabled === true)
- return false;
- }
- return true;
- }
-
- // Starts or stops the recording for the conference.
- function toggleRecording() {
- if (focus === null || focus.confid === null) {
- console.log('non-focus, or conference not yet organized: not enabling recording');
- return;
- }
-
- if (!recordingToken)
- {
- $.prompt('<h2>Enter recording token</h2>' +
- '<input id="recordingToken" type="text" placeholder="token" autofocus>',
- {
- persistent: false,
- buttons: { "Save": true, "Cancel": false},
- defaultButton: 1,
- loaded: function (event) {
- document.getElementById('recordingToken').focus();
- },
- submit: function (e, v, m, f) {
- if (v) {
- var token = document.getElementById('recordingToken');
-
- if (token.value) {
- setRecordingToken(Util.escapeHtml(token.value));
- toggleRecording();
- }
- }
- }
- }
- );
-
- return;
- }
-
- var oldState = focus.recordingEnabled;
- Toolbar.toggleRecordingButtonState();
- focus.setRecording(!oldState,
- recordingToken,
- function (state) {
- console.log("New recording state: ", state);
- if (state == oldState) //failed to change, reset the token because it might have been wrong
- {
- Toolbar.toggleRecordingButtonState();
- setRecordingToken(null);
- }
- }
- );
-
-
- }
-
- /**
- * Returns an array of the video horizontal and vertical indents,
- * so that if fits its parent.
- *
- * @return an array with 2 elements, the horizontal indent and the vertical
- * indent
- */
- function getCameraVideoPosition(videoWidth,
- videoHeight,
- videoSpaceWidth,
- videoSpaceHeight) {
- // Parent height isn't completely calculated when we position the video in
- // full screen mode and this is why we use the screen height in this case.
- // Need to think it further at some point and implement it properly.
- var isFullScreen = document.fullScreen ||
- document.mozFullScreen ||
- document.webkitIsFullScreen;
- if (isFullScreen)
- videoSpaceHeight = window.innerHeight;
-
- var horizontalIndent = (videoSpaceWidth - videoWidth) / 2;
- var verticalIndent = (videoSpaceHeight - videoHeight) / 2;
-
- return [horizontalIndent, verticalIndent];
- }
-
- /**
- * Returns an array of the video horizontal and vertical indents.
- * Centers horizontally and top aligns vertically.
- *
- * @return an array with 2 elements, the horizontal indent and the vertical
- * indent
- */
- function getDesktopVideoPosition(videoWidth,
- videoHeight,
- videoSpaceWidth,
- videoSpaceHeight) {
-
- var horizontalIndent = (videoSpaceWidth - videoWidth) / 2;
-
- var verticalIndent = 0;// Top aligned
-
- return [horizontalIndent, verticalIndent];
- }
-
- /**
- * Returns an array of the video dimensions, so that it covers the screen.
- * It leaves no empty areas, but some parts of the video might not be visible.
- *
- * @return an array with 2 elements, the video width and the video height
- */
- function getCameraVideoSize(videoWidth,
- videoHeight,
- videoSpaceWidth,
- videoSpaceHeight) {
- if (!videoWidth)
- videoWidth = currentVideoWidth;
- if (!videoHeight)
- videoHeight = currentVideoHeight;
-
- var aspectRatio = videoWidth / videoHeight;
-
- var availableWidth = Math.max(videoWidth, videoSpaceWidth);
- var availableHeight = Math.max(videoHeight, videoSpaceHeight);
-
- if (availableWidth / aspectRatio < videoSpaceHeight) {
- availableHeight = videoSpaceHeight;
- availableWidth = availableHeight * aspectRatio;
- }
-
- if (availableHeight * aspectRatio < videoSpaceWidth) {
- availableWidth = videoSpaceWidth;
- availableHeight = availableWidth / aspectRatio;
- }
-
- return [availableWidth, availableHeight];
- }
-
- $(document).ready(function () {
-
- if(config.enableWelcomePage && window.location.pathname == "/" &&
- (!window.localStorage.welcomePageDisabled || window.localStorage.welcomePageDisabled == "false"))
- {
- $("#videoconference_page").hide();
- $("#domain_name").text(window.location.host + "/");
- $("span[name='appName']").text(brand.appName);
- $("#enter_room_button").click(function()
- {
- var val = $("#enter_room_field").val();
- if(!val)
- val = $("#enter_room_field").attr("room_name");
- window.location.pathname = "/" + val;
- });
-
- $("#enter_room_field").keydown(function (event) {
- if (event.keyCode === 13) {
- var val = Util.escapeHtml(this.value);
- window.location.pathname = "/" + val;
- }
- });
-
- function animate(word) {
- var currentVal = $("#enter_room_field").attr("placeholder");
- $("#enter_room_field").attr("placeholder", currentVal + word.substr(0, 1));
- setTimeout(function() {
- animate(word.substring(1, word.length))
- }, 150);
- }
-
- function update_roomname()
- {
- var word = RoomNameGenerator.generateRoomWithoutSeparator();
- $("#enter_room_field").attr("room_name", word);
- $("#enter_room_field").attr("placeholder", "");
- animate(word);
- setTimeout(update_roomname, 10000);
-
- }
- update_roomname();
-
- $("#disable_welcome").click(function () {
- window.localStorage.welcomePageDisabled = $("#disable_welcome").is(":checked");
- });
-
- return;
- }
-
- $("#welcome_page").hide();
- Chat.init();
-
- $('body').popover({ selector: '[data-toggle=popover]',
- trigger: 'click hover'});
-
- // Set the defaults for prompt dialogs.
- jQuery.prompt.setDefaults({persistent: false});
-
- // Set default desktop sharing method
- setDesktopSharing(config.desktopSharing);
- // Initialize Chrome extension inline installs
- if (config.chromeExtensionId) {
- initInlineInstalls();
- }
-
- // By default we use camera
- getVideoSize = getCameraVideoSize;
- getVideoPosition = getCameraVideoPosition;
-
- VideoLayout.resizeLargeVideoContainer();
- $(window).resize(function () {
- VideoLayout.resizeLargeVideoContainer();
- VideoLayout.positionLarge();
- });
- // Listen for large video size updates
- document.getElementById('largeVideo')
- .addEventListener('loadedmetadata', function (e) {
- currentVideoWidth = this.videoWidth;
- currentVideoHeight = this.videoHeight;
- VideoLayout.positionLarge(currentVideoWidth, currentVideoHeight);
- });
-
- if (!$('#settings').is(':visible')) {
- console.log('init');
- init();
- } else {
- loginInfo.onsubmit = function (e) {
- if (e.preventDefault) e.preventDefault();
- $('#settings').hide();
- init();
- };
- }
- });
-
- $(window).bind('beforeunload', function () {
- if (connection && connection.connected) {
- // ensure signout
- $.ajax({
- type: 'POST',
- url: config.bosh,
- async: false,
- cache: false,
- contentType: 'application/xml',
- data: "<body rid='" + (connection.rid || connection._proto.rid) + "' xmlns='http://jabber.org/protocol/httpbind' sid='" + (connection.sid || connection._proto.sid) + "' type='terminate'><presence xmlns='jabber:client' type='unavailable'/></body>",
- success: function (data) {
- console.log('signed out');
- console.log(data);
- },
- error: function (XMLHttpRequest, textStatus, errorThrown) {
- console.log('signout error', textStatus + ' (' + errorThrown + ')');
- }
- });
- }
- disposeConference(true);
- });
-
- function disposeConference(onUnload) {
- var handler = getConferenceHandler();
- if (handler && handler.peerconnection) {
- // FIXME: probably removing streams is not required and close() should be enough
- if (connection.jingle.localAudio) {
- handler.peerconnection.removeStream(connection.jingle.localAudio);
- }
- if (connection.jingle.localVideo) {
- handler.peerconnection.removeStream(connection.jingle.localVideo);
- }
- handler.peerconnection.close();
- }
- stopRTPStatsCollector();
- if(onUnload) {
- stopLocalRtpStatsCollector();
- }
- focus = null;
- activecall = null;
- }
-
- function dump(elem, filename) {
- elem = elem.parentNode;
- elem.download = filename || 'meetlog.json';
- elem.href = 'data:application/json;charset=utf-8,\n';
- var data = {};
- if (connection.jingle) {
- Object.keys(connection.jingle.sessions).forEach(function (sid) {
- var session = connection.jingle.sessions[sid];
- if (session.peerconnection && session.peerconnection.updateLog) {
- // FIXME: should probably be a .dump call
- data["jingle_" + session.sid] = {
- updateLog: session.peerconnection.updateLog,
- stats: session.peerconnection.stats,
- url: window.location.href
- };
- }
- });
- }
- metadata = {};
- metadata.time = new Date();
- metadata.url = window.location.href;
- metadata.ua = navigator.userAgent;
- if (connection.logger) {
- metadata.xmpp = connection.logger.log;
- }
- data.metadata = metadata;
- elem.href += encodeURIComponent(JSON.stringify(data, null, ' '));
- return false;
- }
-
- /**
- * Changes the style class of the element given by id.
- */
- function buttonClick(id, classname) {
- $(id).toggleClass(classname); // add the class to the clicked element
- }
-
- /**
- * Shows a message to the user.
- *
- * @param titleString the title of the message
- * @param messageString the text of the message
- */
- function openMessageDialog(titleString, messageString) {
- $.prompt(messageString,
- {
- title: titleString,
- persistent: false
- }
- );
- }
-
- /**
- * Locks / unlocks the room.
- */
- function lockRoom(lock) {
- if (lock)
- connection.emuc.lockRoom(sharedKey);
- else
- connection.emuc.lockRoom('');
-
- Toolbar.updateLockButton();
- }
-
- /**
- * Sets the shared key.
- */
- function setSharedKey(sKey) {
- sharedKey = sKey;
- }
-
- function setRecordingToken(token) {
- recordingToken = token;
- }
-
- /**
- * Updates the room invite url.
- */
- function updateRoomUrl(newRoomUrl) {
- roomUrl = newRoomUrl;
-
- // If the invite dialog has been already opened we update the information.
- var inviteLink = document.getElementById('inviteLinkRef');
- if (inviteLink) {
- inviteLink.value = roomUrl;
- inviteLink.select();
- document.getElementById('jqi_state0_buttonInvite').disabled = false;
- }
- }
-
- /**
- * Warning to the user that the conference window is about to be closed.
- */
- function closePageWarning() {
- if (focus !== null)
- return "You are the owner of this conference call and"
- + " you are about to end it.";
- else
- return "You are about to leave this conversation.";
- }
-
- /**
- * Resizes and repositions videos in full screen mode.
- */
- $(document).on('webkitfullscreenchange mozfullscreenchange fullscreenchange',
- function () {
- VideoLayout.resizeLargeVideoContainer();
- VideoLayout.positionLarge();
- isFullScreen = document.fullScreen ||
- document.mozFullScreen ||
- document.webkitIsFullScreen;
-
- if (isFullScreen) {
- setView("fullscreen");
- }
- else {
- setView("default");
- }
- }
- );
-
- /**
- * Sets the current view.
- */
- function setView(viewName) {
- // if (viewName == "fullscreen") {
- // document.getElementById('videolayout_fullscreen').disabled = false;
- // document.getElementById('videolayout_default').disabled = true;
- // }
- // else {
- // document.getElementById('videolayout_default').disabled = false;
- // document.getElementById('videolayout_fullscreen').disabled = true;
- // }
- }
-
- function hangUp() {
- if (connection && connection.connected) {
- // ensure signout
- $.ajax({
- type: 'POST',
- url: config.bosh,
- async: false,
- cache: false,
- contentType: 'application/xml',
- data: "<body rid='" + (connection.rid || connection._proto.rid) + "' xmlns='http://jabber.org/protocol/httpbind' sid='" + (connection.sid || connection._proto.sid) + "' type='terminate'><presence xmlns='jabber:client' type='unavailable'/></body>",
- success: function (data) {
- console.log('signed out');
- console.log(data);
- },
- error: function (XMLHttpRequest, textStatus, errorThrown) {
- console.log('signout error', textStatus + ' (' + errorThrown + ')');
- }
- });
- }
- disposeConference(true);
- }
-
- $(document).bind('fatalError.jingle',
- function (event, session, error)
- {
- sessionTerminated = true;
- connection.emuc.doLeave();
- openMessageDialog( "Sorry",
- "Your browser version is too old. Please update and try again...");
- }
- );
-
- function callSipButtonClicked()
- {
- $.prompt('<h2>Enter SIP number</h2>' +
- '<input id="sipNumber" type="text" value="" autofocus>',
- {
- persistent: false,
- buttons: { "Dial": true, "Cancel": false},
- defaultButton: 2,
- loaded: function (event)
- {
- document.getElementById('sipNumber').focus();
- },
- submit: function (e, v, m, f)
- {
- if (v)
- {
- var numberInput = document.getElementById('sipNumber');
- if (numberInput.value && numberInput.value.length)
- {
- connection.rayo.dial(
- numberInput.value, 'fromnumber', roomName);
- }
- }
- }
- }
- );
- }
-
- function hangup() {
- disposeConference();
- sessionTerminated = true;
- connection.emuc.doLeave();
- var buttons = {};
- if(config.enableWelcomePage)
- {
- setTimeout(function()
- {
- window.localStorage.welcomePageDisabled = false;
- window.location.pathname = "/";
- }, 10000);
-
- }
-
- $.prompt("Session Terminated",
- {
- title: "You hung up the call",
- persistent: true,
- buttons: {
- "Join again": true
- },
- closeText: '',
- submit: function(event, value, message, formVals)
- {
- window.location.reload();
- return false;
- }
-
- }
- );
-
- }
|