2014-03-06 14:28:36 +00:00
|
|
|
/* colibri.js -- a COLIBRI focus
|
|
|
|
* The colibri spec has been submitted to the XMPP Standards Foundation
|
|
|
|
* for publications as a XMPP extensions:
|
|
|
|
* http://xmpp.org/extensions/inbox/colibri.html
|
|
|
|
*
|
|
|
|
* colibri.js is a participating focus, i.e. the focus participates
|
|
|
|
* in the conference. The conference itself can be ad-hoc, through a
|
|
|
|
* MUC, through PubSub, etc.
|
|
|
|
*
|
|
|
|
* colibri.js relies heavily on the strophe.jingle library available
|
|
|
|
* from https://github.com/ESTOS/strophe.jingle
|
|
|
|
* and interoperates with the Jitsi videobridge available from
|
|
|
|
* https://jitsi.org/Projects/JitsiVideobridge
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
Copyright (c) 2013 ESTOS GmbH
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
// A colibri session is similar to a jingle session, it just implements some things differently
|
|
|
|
// FIXME: inherit jinglesession, see https://github.com/legastero/Jingle-RTCPeerConnection/blob/master/index.js
|
|
|
|
function ColibriSession(me, sid, connection) {
|
|
|
|
this.me = me;
|
|
|
|
this.sid = sid;
|
|
|
|
this.connection = connection;
|
|
|
|
//this.peerconnection = null;
|
|
|
|
//this.mychannel = null;
|
|
|
|
//this.channels = null;
|
|
|
|
this.peerjid = null;
|
|
|
|
|
|
|
|
this.colibri = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// implementation of JingleSession interface
|
|
|
|
ColibriSession.prototype.initiate = function (peerjid, isInitiator) {
|
|
|
|
this.peerjid = peerjid;
|
|
|
|
};
|
|
|
|
|
|
|
|
ColibriSession.prototype.sendOffer = function (offer) {
|
|
|
|
console.log('ColibriSession.sendOffer');
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
ColibriSession.prototype.accept = function () {
|
|
|
|
console.log('ColibriSession.accept');
|
|
|
|
};
|
|
|
|
|
2014-03-13 12:22:54 +00:00
|
|
|
ColibriSession.prototype.addSource = function (elem, fromJid) {
|
|
|
|
this.colibri.addSource(elem, fromJid);
|
|
|
|
};
|
|
|
|
|
|
|
|
ColibriSession.prototype.removeSource = function (elem, fromJid) {
|
|
|
|
this.colibri.removeSource(elem, fromJid);
|
|
|
|
};
|
|
|
|
|
2014-03-06 14:28:36 +00:00
|
|
|
ColibriSession.prototype.terminate = function (reason) {
|
|
|
|
this.colibri.terminate(this, reason);
|
|
|
|
};
|
|
|
|
|
|
|
|
ColibriSession.prototype.active = function () {
|
|
|
|
console.log('ColibriSession.active');
|
|
|
|
};
|
|
|
|
|
|
|
|
ColibriSession.prototype.setRemoteDescription = function (elem, desctype) {
|
|
|
|
this.colibri.setRemoteDescription(this, elem, desctype);
|
|
|
|
};
|
|
|
|
|
|
|
|
ColibriSession.prototype.addIceCandidate = function (elem) {
|
|
|
|
this.colibri.addIceCandidate(this, elem);
|
|
|
|
};
|
|
|
|
|
|
|
|
ColibriSession.prototype.sendAnswer = function (sdp, provisional) {
|
|
|
|
console.log('ColibriSession.sendAnswer');
|
|
|
|
};
|
|
|
|
|
|
|
|
ColibriSession.prototype.sendTerminate = function (reason, text) {
|
2014-05-11 22:41:58 +00:00
|
|
|
this.colibri.sendTerminate(this, reason, text);
|
2014-03-06 14:28:36 +00:00
|
|
|
};
|