12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /* 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');
- };
-
- ColibriSession.prototype.addSource = function (elem, fromJid) {
- this.colibri.addSource(elem, fromJid);
- };
-
- ColibriSession.prototype.removeSource = function (elem, fromJid) {
- this.colibri.removeSource(elem, fromJid);
- };
-
- 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) {
- this.colibri.sendTerminate(this, reason, text);
- };
|