openvidu/openvidu-browser/lib/OpenVidu/Connection.js

123 lines
4.2 KiB
JavaScript
Raw Normal View History

2018-04-26 15:33:47 +02:00
"use strict";
/*
* (C) Copyright 2017-2018 OpenVidu (https://openvidu.io/)
2018-04-26 15:33:47 +02:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
exports.__esModule = true;
var Stream_1 = require("./Stream");
2018-04-26 15:33:47 +02:00
/**
* Represents each one of the user's connection to the session (the local one and other user's connections).
* Therefore each [[Session]] and [[Stream]] object has an attribute of type Connection
*/
var Connection = /** @class */ (function () {
/**
* @hidden
*/
function Connection(session, opts) {
this.session = session;
/**
* @hidden
*/
this.disposed = false;
var msg = "'Connection' created ";
if (!!opts) {
msg += "(remote) with 'connectionId' [" + opts.id + ']';
}
else {
msg += '(local)';
}
console.info(msg);
this.options = opts;
if (!!opts) {
// Connection is remote
this.connectionId = opts.id;
if (opts.metadata) {
this.data = opts.metadata;
}
if (opts.streams) {
this.initRemoteStreams(opts.streams);
}
}
this.creationTime = new Date().getTime();
}
/* Hidden methods */
/**
* @hidden
*/
Connection.prototype.sendIceCandidate = function (candidate) {
console.debug((!!this.stream.outboundStreamOpts ? 'Local' : 'Remote'), 'candidate for', this.connectionId, JSON.stringify(candidate));
this.session.openvidu.sendRequest('onIceCandidate', {
endpointName: this.connectionId,
candidate: candidate.candidate,
sdpMid: candidate.sdpMid,
sdpMLineIndex: candidate.sdpMLineIndex
}, function (error, response) {
if (error) {
console.error('Error sending ICE candidate: '
+ JSON.stringify(error));
}
});
};
/**
* @hidden
*/
Connection.prototype.initRemoteStreams = function (options) {
var _this = this;
// This is ready for supporting multiple streams per Connection object. Right now the loop will always run just once
// this.stream should also be replaced by a collection of streams to support multiple streams per Connection
options.forEach(function (opts) {
var streamOptions = {
id: opts.id,
connection: _this,
2018-07-11 11:47:53 +02:00
hasAudio: opts.hasAudio,
hasVideo: opts.hasVideo,
audioActive: opts.audioActive,
videoActive: opts.videoActive,
typeOfVideo: opts.typeOfVideo,
2018-04-26 15:33:47 +02:00
frameRate: opts.frameRate,
videoDimensions: !!opts.videoDimensions ? JSON.parse(opts.videoDimensions) : undefined,
filter: !!opts.filter ? opts.filter : undefined
2018-04-26 15:33:47 +02:00
};
var stream = new Stream_1.Stream(_this.session, streamOptions);
2018-04-26 15:33:47 +02:00
_this.addStream(stream);
});
console.info("Remote 'Connection' with 'connectionId' [" + this.connectionId + '] is now configured for receiving Streams with options: ', this.stream.inboundStreamOpts);
};
/**
* @hidden
*/
Connection.prototype.addStream = function (stream) {
stream.connection = this;
this.stream = stream;
};
/**
* @hidden
*/
Connection.prototype.removeStream = function (streamId) {
delete this.stream;
};
/**
* @hidden
*/
Connection.prototype.dispose = function () {
if (!!this.stream) {
delete this.stream;
}
this.disposed = true;
};
return Connection;
}());
exports.Connection = Connection;
//# sourceMappingURL=Connection.js.map