mirror of
https://github.com/szimek/sharedrop.git
synced 2026-06-05 21:02:47 +08:00
1313 lines
34 KiB
JavaScript
1313 lines
34 KiB
JavaScript
/*! peerjs.js build:0.3.7, development. Copyright(c) 2013 Michelle Bu <[email protected]> */
|
|
(function(exports){
|
|
/**
|
|
* Light EventEmitter. Ported from Node.js/events.js
|
|
* Eric Zhang
|
|
*/
|
|
|
|
/**
|
|
* EventEmitter class
|
|
* Creates an object with event registering and firing methods
|
|
*/
|
|
function EventEmitter() {
|
|
// Initialise required storage variables
|
|
this._events = {};
|
|
}
|
|
|
|
var isArray = Array.isArray;
|
|
|
|
|
|
EventEmitter.prototype.addListener = function(type, listener) {
|
|
if ('function' !== typeof listener) {
|
|
throw new Error('addListener only takes instances of Function');
|
|
}
|
|
|
|
// To avoid recursion in the case that type == "newListeners"! Before
|
|
// adding it to the listeners, first emit "newListeners".
|
|
this.emit('newListener', type, typeof listener.listener === 'function' ?
|
|
listener.listener : listener);
|
|
|
|
if (!this._events[type]) {
|
|
// Optimize the case of one listener. Don't need the extra array object.
|
|
this._events[type] = listener;
|
|
} else if (isArray(this._events[type])) {
|
|
|
|
// If we've already got an array, just append.
|
|
this._events[type].push(listener);
|
|
|
|
} else {
|
|
// Adding the second element, need to change to array.
|
|
this._events[type] = [this._events[type], listener];
|
|
}
|
|
return this;
|
|
};
|
|
|
|
EventEmitter.prototype.on = EventEmitter.prototype.addListener;
|
|
|
|
EventEmitter.prototype.once = function(type, listener) {
|
|
if ('function' !== typeof listener) {
|
|
throw new Error('.once only takes instances of Function');
|
|
}
|
|
|
|
var self = this;
|
|
function g() {
|
|
self.removeListener(type, g);
|
|
listener.apply(this, arguments);
|
|
}
|
|
|
|
g.listener = listener;
|
|
self.on(type, g);
|
|
|
|
return this;
|
|
};
|
|
|
|
EventEmitter.prototype.removeListener = function(type, listener) {
|
|
if ('function' !== typeof listener) {
|
|
throw new Error('removeListener only takes instances of Function');
|
|
}
|
|
|
|
// does not use listeners(), so no side effect of creating _events[type]
|
|
if (!this._events[type]) return this;
|
|
|
|
var list = this._events[type];
|
|
|
|
if (isArray(list)) {
|
|
var position = -1;
|
|
for (var i = 0, length = list.length; i < length; i++) {
|
|
if (list[i] === listener ||
|
|
(list[i].listener && list[i].listener === listener))
|
|
{
|
|
position = i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (position < 0) return this;
|
|
list.splice(position, 1);
|
|
if (list.length === 0)
|
|
delete this._events[type];
|
|
} else if (list === listener ||
|
|
(list.listener && list.listener === listener))
|
|
{
|
|
delete this._events[type];
|
|
}
|
|
|
|
return this;
|
|
};
|
|
|
|
|
|
EventEmitter.prototype.off = EventEmitter.prototype.removeListener;
|
|
|
|
EventEmitter.prototype.removeAllListeners = function(type) {
|
|
if (arguments.length === 0) {
|
|
this._events = {};
|
|
return this;
|
|
}
|
|
|
|
// does not use listeners(), so no side effect of creating _events[type]
|
|
if (type && this._events && this._events[type]) this._events[type] = null;
|
|
return this;
|
|
};
|
|
|
|
EventEmitter.prototype.listeners = function(type) {
|
|
if (!this._events[type]) this._events[type] = [];
|
|
if (!isArray(this._events[type])) {
|
|
this._events[type] = [this._events[type]];
|
|
}
|
|
return this._events[type];
|
|
};
|
|
|
|
EventEmitter.prototype.emit = function(type) {
|
|
type = arguments[0];
|
|
|
|
var handler = this._events[type];
|
|
var l, args, i;
|
|
|
|
if (!handler) return false;
|
|
|
|
if (typeof handler == 'function') {
|
|
switch (arguments.length) {
|
|
// fast cases
|
|
case 1:
|
|
handler.call(this);
|
|
break;
|
|
case 2:
|
|
handler.call(this, arguments[1]);
|
|
break;
|
|
case 3:
|
|
handler.call(this, arguments[1], arguments[2]);
|
|
break;
|
|
// slower
|
|
default:
|
|
l = arguments.length;
|
|
args = new Array(l - 1);
|
|
for (i = 1; i < l; i++) args[i - 1] = arguments[i];
|
|
handler.apply(this, args);
|
|
}
|
|
return true;
|
|
|
|
} else if (isArray(handler)) {
|
|
l = arguments.length;
|
|
args = new Array(l - 1);
|
|
for (i = 1; i < l; i++) args[i - 1] = arguments[i];
|
|
|
|
var listeners = handler.slice();
|
|
for (i = 0, l = listeners.length; i < l; i++) {
|
|
listeners[i].apply(this, args);
|
|
}
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
exports.RTCSessionDescription = window.RTCSessionDescription || window.mozRTCSessionDescription;
|
|
exports.RTCPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
|
|
exports.RTCIceCandidate = window.RTCIceCandidate || window.mozRTCIceCandidate;
|
|
|
|
var defaultConfig = {
|
|
'iceServers': [{
|
|
'urls': 'stun:stun.l.google.com:19302',
|
|
}]
|
|
};
|
|
|
|
var util = {
|
|
noop: function() {},
|
|
|
|
// Logging logic
|
|
logLevel: 0,
|
|
setLogLevel: function(level) {
|
|
var debugLevel = parseInt(level, 10);
|
|
if (!isNaN(parseInt(level, 10))) {
|
|
util.logLevel = debugLevel;
|
|
} else {
|
|
// If they are using truthy/falsy values for debug
|
|
util.logLevel = level ? 3 : 0;
|
|
}
|
|
util.log = util.warn = util.error = util.noop;
|
|
if (util.logLevel > 0) {
|
|
util.error = util._printWith('ERROR');
|
|
}
|
|
if (util.logLevel > 1) {
|
|
util.warn = util._printWith('WARNING');
|
|
}
|
|
if (util.logLevel > 2) {
|
|
util.log = util._print;
|
|
}
|
|
},
|
|
setLogFunction: function(fn) {
|
|
if (fn.constructor !== Function) {
|
|
util.warn('The log function you passed in is not a function. Defaulting to regular logs.');
|
|
} else {
|
|
util._print = fn;
|
|
}
|
|
},
|
|
|
|
_printWith: function(prefix) {
|
|
return function() {
|
|
var copy = Array.prototype.slice.call(arguments);
|
|
copy.unshift(prefix);
|
|
util._print.apply(util, copy);
|
|
};
|
|
},
|
|
_print: function () {
|
|
var err = false;
|
|
var copy = Array.prototype.slice.call(arguments);
|
|
copy.unshift('PeerJS: ');
|
|
for (var i = 0, l = copy.length; i < l; i++){
|
|
if (copy[i] instanceof Error) {
|
|
copy[i] = '(' + copy[i].name + ') ' + copy[i].message;
|
|
err = true;
|
|
}
|
|
}
|
|
err ? console.error.apply(console, copy) : console.log.apply(console, copy);
|
|
},
|
|
//
|
|
|
|
// Returns browser-agnostic default config
|
|
defaultConfig: defaultConfig,
|
|
//
|
|
|
|
// Returns the current browser.
|
|
browser: (function() {
|
|
if (window.mozRTCPeerConnection) {
|
|
return 'Firefox';
|
|
} else if (window.webkitRTCPeerConnection) {
|
|
return 'Chrome';
|
|
} else if (window.RTCPeerConnection) {
|
|
return 'Supported';
|
|
} else {
|
|
return 'Unsupported';
|
|
}
|
|
})(),
|
|
//
|
|
|
|
// Lists which features are supported
|
|
supports: (function() {
|
|
if (typeof RTCPeerConnection === 'undefined') {
|
|
return {};
|
|
}
|
|
|
|
var data = true;
|
|
var audioVideo = true;
|
|
|
|
var binaryBlob = false;
|
|
var sctp = true;
|
|
var onnegotiationneeded = !!window.webkitRTCPeerConnection;
|
|
|
|
var pc, dc;
|
|
try {
|
|
pc = new RTCPeerConnection(defaultConfig, {optional: [{RtpDataChannels: true}]});
|
|
} catch (e) {
|
|
data = false;
|
|
audioVideo = false;
|
|
}
|
|
|
|
if (data) {
|
|
try {
|
|
dc = pc.createDataChannel('_PEERJSTEST');
|
|
} catch (e) {
|
|
sctp = false;
|
|
data = false;
|
|
}
|
|
}
|
|
|
|
if (data) {
|
|
// Binary test
|
|
try {
|
|
dc.binaryType = 'blob';
|
|
binaryBlob = true;
|
|
} catch (e) {
|
|
console.log(e);
|
|
}
|
|
}
|
|
|
|
// FIXME: not really the best check...
|
|
if (audioVideo) {
|
|
audioVideo = !!pc.addStream;
|
|
}
|
|
|
|
// FIXME: this is not great because in theory it doesn't work for
|
|
// av-only browsers (?).
|
|
if (!onnegotiationneeded && data) {
|
|
// sync default check.
|
|
var negotiationPC = new RTCPeerConnection(defaultConfig, {optional: [{RtpDataChannels: true}]});
|
|
negotiationPC.onnegotiationneeded = function() {
|
|
onnegotiationneeded = true;
|
|
// async check.
|
|
if (util && util.supports) {
|
|
util.supports.onnegotiationneeded = true;
|
|
}
|
|
};
|
|
|
|
negotiationPC.createDataChannel('_PEERJSNEGOTIATIONTEST');
|
|
|
|
setTimeout(function() {
|
|
negotiationPC.close();
|
|
}, 1000);
|
|
}
|
|
|
|
if (pc) {
|
|
pc.close();
|
|
}
|
|
|
|
return {
|
|
audioVideo: audioVideo,
|
|
data: data,
|
|
binaryBlob: binaryBlob,
|
|
binary: sctp, // deprecated; sctp implies binary support.
|
|
reliable: sctp, // deprecated; sctp implies reliable data.
|
|
sctp: sctp,
|
|
onnegotiationneeded: onnegotiationneeded
|
|
};
|
|
}()),
|
|
//
|
|
|
|
// Ensure alphanumeric ids
|
|
validateId: function(id) {
|
|
// Allow empty ids
|
|
return !id || /^[A-Za-z0-9]+(?:[ _-][A-Za-z0-9]+)*$/.exec(id);
|
|
},
|
|
|
|
debug: false,
|
|
|
|
inherits: function(ctor, superCtor) {
|
|
ctor.super_ = superCtor;
|
|
ctor.prototype = Object.create(superCtor.prototype, {
|
|
constructor: {
|
|
value: ctor,
|
|
enumerable: false,
|
|
writable: true,
|
|
configurable: true
|
|
}
|
|
});
|
|
},
|
|
extend: function(dest, source) {
|
|
for(var key in source) {
|
|
if(source.hasOwnProperty(key)) {
|
|
dest[key] = source[key];
|
|
}
|
|
}
|
|
return dest;
|
|
},
|
|
|
|
log: function () {
|
|
if (util.debug) {
|
|
var err = false;
|
|
var copy = Array.prototype.slice.call(arguments);
|
|
copy.unshift('PeerJS: ');
|
|
for (var i = 0, l = copy.length; i < l; i++){
|
|
if (copy[i] instanceof Error) {
|
|
copy[i] = '(' + copy[i].name + ') ' + copy[i].message;
|
|
err = true;
|
|
}
|
|
}
|
|
err ? console.error.apply(console, copy) : console.log.apply(console, copy);
|
|
}
|
|
},
|
|
|
|
setZeroTimeout: (function(global) {
|
|
var timeouts = [];
|
|
var messageName = 'zero-timeout-message';
|
|
|
|
// Like setTimeout, but only takes a function argument. There's
|
|
// no time argument (always zero) and no arguments (you have to
|
|
// use a closure).
|
|
function setZeroTimeoutPostMessage(fn) {
|
|
timeouts.push(fn);
|
|
global.postMessage(messageName, '*');
|
|
}
|
|
|
|
function handleMessage(event) {
|
|
if (event.source == global && event.data == messageName) {
|
|
if (event.stopPropagation) {
|
|
event.stopPropagation();
|
|
}
|
|
if (timeouts.length) {
|
|
timeouts.shift()();
|
|
}
|
|
}
|
|
}
|
|
if (global.addEventListener) {
|
|
global.addEventListener('message', handleMessage, true);
|
|
} else if (global.attachEvent) {
|
|
global.attachEvent('onmessage', handleMessage);
|
|
}
|
|
return setZeroTimeoutPostMessage;
|
|
}(this)),
|
|
|
|
randomToken: function () {
|
|
return Math.random().toString(36).substr(2);
|
|
},
|
|
|
|
isSecure: function() {
|
|
return location.protocol === 'https:';
|
|
}
|
|
};
|
|
|
|
exports.util = util;
|
|
/**
|
|
* A peer who can initiate connections with other peers.
|
|
*/
|
|
function Peer(id, options) {
|
|
EventEmitter.call(this);
|
|
|
|
// Configurize options
|
|
this.options = util.extend({
|
|
debug: 0, // 1: Errors, 2: Warnings, 3: All logs
|
|
config: util.defaultConfig
|
|
}, options);
|
|
|
|
// Set a custom log function if present
|
|
if (options.logFunction) {
|
|
util.setLogFunction(options.logFunction);
|
|
}
|
|
util.setLogLevel(options.debug);
|
|
|
|
// Sanity checks
|
|
// Ensure WebRTC supported
|
|
if (!util.supports.audioVideo && !util.supports.data ) {
|
|
this._delayedAbort('browser-incompatible', 'The current browser does not support WebRTC');
|
|
return;
|
|
}
|
|
// Ensure alphanumeric id
|
|
if (!util.validateId(id)) {
|
|
this._delayedAbort('invalid-id', 'ID "' + id + '" is invalid');
|
|
return;
|
|
}
|
|
|
|
// States
|
|
this.destroyed = false; // Connections have been killed
|
|
this.disconnected = false; // Connection to PeerServer killed manually but P2P connections still active
|
|
this.open = false; // Sockets and such are not yet open.
|
|
|
|
// References
|
|
this.connections = {}; // DataConnections for this peer.
|
|
this._lostMessages = {}; // src => [list of messages]
|
|
|
|
// Start the connections
|
|
this._initialize(id);
|
|
}
|
|
|
|
util.inherits(Peer, EventEmitter);
|
|
|
|
/** Initialize a connection with the server. */
|
|
Peer.prototype._initialize = function (id) {
|
|
this.id = id;
|
|
|
|
// Firebase
|
|
this._ref = this.options.firebaseRef;
|
|
this._connectionRef = this._ref.child('.info/connected');
|
|
this._messagesRef = this._ref.child('rooms/' + this.options.room + '/messages');
|
|
this._receivedMessagesRef = this._messagesRef.child(id);
|
|
|
|
this._connectionRef.on('value', (connectionSnapshot) => {
|
|
if (connectionSnapshot.val() === true) {
|
|
// Remove received messages on disconnect
|
|
this._receivedMessagesRef.onDisconnect().remove();
|
|
|
|
// Listen to incoming messages
|
|
this._receivedMessagesRef.on('child_added', (snapshot) => {
|
|
const message = snapshot.val();
|
|
this._handleMessage(message);
|
|
});
|
|
} else {
|
|
this._receivedMessagesRef.off();
|
|
}
|
|
});
|
|
|
|
// The connection to the server is open
|
|
this.emit('open', this.id);
|
|
this.open = true;
|
|
};
|
|
|
|
/** Handles messages from the server. */
|
|
Peer.prototype._handleMessage = function (message) {
|
|
var type = message.type;
|
|
var payload = message.payload;
|
|
var peer = message.src;
|
|
var connectionId, connection;
|
|
|
|
switch (type) {
|
|
case 'LEAVE': // Another peer has closed its connection to this peer.
|
|
util.log('Received leave message from', peer);
|
|
this._cleanupPeer(peer);
|
|
break;
|
|
|
|
case 'EXPIRE': // The offer sent to a peer has expired without response.
|
|
this.emit('error', new Error('Could not connect to peer ' + peer));
|
|
break;
|
|
|
|
case 'OFFER': // we should consider switching this to CALL/CONNECT, but this is the least breaking option.
|
|
connectionId = payload.connectionId;
|
|
connection = this.getConnection(peer, connectionId);
|
|
|
|
if (connection) {
|
|
util.warn('Offer received for existing Connection ID:', connectionId);
|
|
//connection.handleMessage(message);
|
|
} else {
|
|
// Create a new connection.
|
|
if (payload.type === 'media') {
|
|
connection = new MediaConnection(peer, this, {
|
|
connectionId: connectionId,
|
|
_payload: payload,
|
|
metadata: payload.metadata
|
|
});
|
|
this._addConnection(peer, connection);
|
|
this.emit('call', connection);
|
|
} else if (payload.type === 'data') {
|
|
connection = new DataConnection(peer, this, {
|
|
connectionId: connectionId,
|
|
_payload: payload,
|
|
metadata: payload.metadata,
|
|
label: payload.label,
|
|
serialization: payload.serialization,
|
|
reliable: payload.reliable
|
|
});
|
|
this._addConnection(peer, connection);
|
|
this.emit('connection', connection);
|
|
} else {
|
|
util.warn('Received malformed connection type:', payload.type);
|
|
return;
|
|
}
|
|
// Find messages.
|
|
var messages = this._getMessages(connectionId);
|
|
for (var i = 0, ii = messages.length; i < ii; i += 1) {
|
|
connection.handleMessage(messages[i]);
|
|
}
|
|
}
|
|
break;
|
|
|
|
case 'ERROR':
|
|
connectionId = payload.connectionId;
|
|
connection = this.getConnection(peer, connectionId);
|
|
|
|
var error = new Error(payload.message);
|
|
error.type = payload.type;
|
|
|
|
if (connection) {
|
|
connection.emit('error', error);
|
|
}
|
|
break;
|
|
|
|
default:
|
|
if (!payload) {
|
|
util.warn('You received a malformed message from ' + peer + ' of type ' + type);
|
|
return;
|
|
}
|
|
|
|
var id = payload.connectionId;
|
|
connection = this.getConnection(peer, id);
|
|
|
|
if (connection && connection.pc) {
|
|
// Pass it on.
|
|
connection.handleMessage(message);
|
|
} else if (id) {
|
|
// Store for possible later use
|
|
this._storeMessage(id, message);
|
|
} else {
|
|
util.warn('You received an unrecognized message:', message);
|
|
}
|
|
break;
|
|
}
|
|
};
|
|
|
|
/** Stores messages without a set up connection, to be claimed later. */
|
|
Peer.prototype._storeMessage = function (connectionId, message) {
|
|
if (!this._lostMessages[connectionId]) {
|
|
this._lostMessages[connectionId] = [];
|
|
}
|
|
this._lostMessages[connectionId].push(message);
|
|
};
|
|
|
|
/** Retrieve messages from lost message store */
|
|
Peer.prototype._getMessages = function (connectionId) {
|
|
var messages = this._lostMessages[connectionId];
|
|
if (messages) {
|
|
delete this._lostMessages[connectionId];
|
|
return messages;
|
|
} else {
|
|
return [];
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Returns a DataConnection to the specified peer. See documentation for a
|
|
* complete list of options.
|
|
*/
|
|
Peer.prototype.connect = function(peer, options) {
|
|
if (this.disconnected) {
|
|
util.warn('You cannot connect to a new Peer because you called '
|
|
+ '.disconnect() on this Peer and ended your connection with the'
|
|
+ ' server. You can create a new Peer to reconnect.');
|
|
this.emit('error', new Error('Cannot connect to new Peer after disconnecting from server.'));
|
|
return;
|
|
}
|
|
|
|
var connection = new DataConnection(peer, this, options);
|
|
this._addConnection(peer, connection);
|
|
return connection;
|
|
};
|
|
|
|
/**
|
|
* Returns a MediaConnection to the specified peer. See documentation for a
|
|
* complete list of options.
|
|
*/
|
|
Peer.prototype.call = function(peer, stream, options) {
|
|
if (this.disconnected) {
|
|
util.warn('You cannot connect to a new Peer because you called '
|
|
+ '.disconnect() on this Peer and ended your connection with the'
|
|
+ ' server. You can create a new Peer to reconnect.');
|
|
this.emit('error', new Error('Cannot connect to new Peer after disconnecting from server.'));
|
|
return;
|
|
}
|
|
if (!stream) {
|
|
util.error('To call a peer, you must provide a stream from your browser\'s `getUserMedia`.');
|
|
return;
|
|
}
|
|
options = options || {};
|
|
options._stream = stream;
|
|
var call = new MediaConnection(peer, this, options);
|
|
this._addConnection(peer, call);
|
|
return call;
|
|
};
|
|
|
|
/** Add a data/media connection to this peer. */
|
|
Peer.prototype._addConnection = function(peer, connection) {
|
|
if (!this.connections[peer]) {
|
|
this.connections[peer] = [];
|
|
}
|
|
this.connections[peer].push(connection);
|
|
};
|
|
|
|
/** Retrieve a data/media connection for this peer. */
|
|
Peer.prototype.getConnection = function(peer, id) {
|
|
var connections = this.connections[peer];
|
|
if (!connections) {
|
|
return null;
|
|
}
|
|
for (var i = 0, ii = connections.length; i < ii; i++) {
|
|
if (connections[i].id === id) {
|
|
return connections[i];
|
|
}
|
|
}
|
|
return null;
|
|
};
|
|
|
|
Peer.prototype._delayedAbort = function(type, message) {
|
|
var self = this;
|
|
util.setZeroTimeout(function (){
|
|
self._abort(type, message);
|
|
});
|
|
};
|
|
|
|
/** Destroys the Peer and emits an error message. */
|
|
Peer.prototype._abort = function(type, message) {
|
|
util.error('Aborting. Error:', message);
|
|
var err = new Error(message);
|
|
err.type = type;
|
|
this.destroy();
|
|
this.emit('error', err);
|
|
};
|
|
|
|
/**
|
|
* Destroys the Peer: closes all active connections as well as the connection
|
|
* to the server.
|
|
* Warning: The peer can no longer create or accept connections after being
|
|
* destroyed.
|
|
*/
|
|
Peer.prototype.destroy = function() {
|
|
if (!this.destroyed) {
|
|
this._cleanup();
|
|
this.destroyed = true;
|
|
}
|
|
};
|
|
|
|
|
|
/** Disconnects every connection on this peer. */
|
|
Peer.prototype._cleanup = function() {
|
|
if (this.connections) {
|
|
var peers = Object.keys(this.connections);
|
|
for (var i = 0, ii = peers.length; i < ii; i++) {
|
|
this._cleanupPeer(peers[i]);
|
|
}
|
|
}
|
|
this.emit('close');
|
|
};
|
|
|
|
/** Closes all connections to this peer. */
|
|
Peer.prototype._cleanupPeer = function(peer) {
|
|
var connections = this.connections[peer];
|
|
for (var j = 0, jj = connections.length; j < jj; j += 1) {
|
|
connections[j].close();
|
|
}
|
|
};
|
|
|
|
exports.Peer = Peer;
|
|
/**
|
|
* Wraps a DataChannel between two Peers.
|
|
*/
|
|
function DataConnection(peer, provider, options) {
|
|
if (!(this instanceof DataConnection)) return new DataConnection(peer, provider, options);
|
|
EventEmitter.call(this);
|
|
|
|
this.options = util.extend({
|
|
serialization: 'binary',
|
|
reliable: false,
|
|
metadata: {} // Firebase doesn't allow undefined values
|
|
}, options);
|
|
|
|
// Connection is not open yet.
|
|
this.open = false;
|
|
this.type = 'data';
|
|
this.peer = peer;
|
|
this.provider = provider;
|
|
|
|
this.id = this.options.connectionId || DataConnection._idPrefix + util.randomToken();
|
|
|
|
this.label = this.options.label || this.id;
|
|
this.metadata = this.options.metadata;
|
|
this.serialization = this.options.serialization;
|
|
this.reliable = this.options.reliable;
|
|
|
|
// Data channel buffering.
|
|
this._buffer = [];
|
|
this._buffering = false;
|
|
this.bufferSize = 0;
|
|
|
|
// For storing large data.
|
|
this._chunkedData = {};
|
|
|
|
if (this.options._payload) {
|
|
this._peerBrowser = this.options._payload.browser;
|
|
}
|
|
|
|
Negotiator.startConnection(
|
|
this,
|
|
this.options._payload || {
|
|
originator: true
|
|
}
|
|
);
|
|
}
|
|
|
|
util.inherits(DataConnection, EventEmitter);
|
|
|
|
DataConnection._idPrefix = 'dc_';
|
|
|
|
/** Called by the Negotiator when the DataChannel is ready. */
|
|
DataConnection.prototype.initialize = function(dc) {
|
|
this._dc = this.dataChannel = dc;
|
|
this._configureDataChannel();
|
|
};
|
|
|
|
DataConnection.prototype._configureDataChannel = function() {
|
|
var self = this;
|
|
|
|
if (util.supports.sctp) {
|
|
this._dc.binaryType = 'arraybuffer';
|
|
}
|
|
|
|
this._dc.onopen = function() {
|
|
util.log('Data channel connection success');
|
|
self.open = true;
|
|
self.emit('open');
|
|
};
|
|
|
|
this._dc.onmessage = function (e) {
|
|
self._handleDataMessage(e);
|
|
};
|
|
|
|
this._dc.onclose = function (e) {
|
|
util.log('DataChannel closed for:', self.peer);
|
|
util.log(e);
|
|
self.close();
|
|
};
|
|
};
|
|
|
|
// Handles a DataChannel message.
|
|
DataConnection.prototype._handleDataMessage = function(e) {
|
|
var data = e.data;
|
|
|
|
if (data.byteLength !== undefined) {
|
|
// ArrayBuffer
|
|
} else {
|
|
// String (JSON)
|
|
data = JSON.parse(data);
|
|
}
|
|
|
|
this.emit('data', data);
|
|
};
|
|
|
|
/**
|
|
* Exposed functionality for users.
|
|
*/
|
|
|
|
/** Allows user to close connection. */
|
|
DataConnection.prototype.close = function() {
|
|
if (!this.open) {
|
|
return;
|
|
}
|
|
this.open = false;
|
|
Negotiator.cleanup(this);
|
|
this.emit('close');
|
|
};
|
|
|
|
/** Allows user to send data. */
|
|
DataConnection.prototype.send = function(data) {
|
|
if (!this.open) {
|
|
this.emit('error', new Error('Connection is not open. You should listen for the `open` event before sending messages.'));
|
|
return;
|
|
}
|
|
|
|
// Lame type check
|
|
if (data.byteLength === undefined) {
|
|
// JSON string
|
|
data = JSON.stringify(data);
|
|
}
|
|
|
|
this._bufferedSend(data);
|
|
};
|
|
|
|
DataConnection.prototype._bufferedSend = function(msg) {
|
|
if (this._buffering || !this._trySend(msg)) {
|
|
this._buffer.push(msg);
|
|
this.bufferSize = this._buffer.length;
|
|
}
|
|
};
|
|
|
|
// Returns true if the send succeeds.
|
|
DataConnection.prototype._trySend = function(msg) {
|
|
try {
|
|
this._dc.send(msg);
|
|
} catch (e) {
|
|
this._buffering = true;
|
|
|
|
var self = this;
|
|
setTimeout(function() {
|
|
// Try again.
|
|
self._buffering = false;
|
|
self._tryBuffer();
|
|
}, 100);
|
|
return false;
|
|
}
|
|
return true;
|
|
};
|
|
|
|
// Try to send the first message in the buffer.
|
|
DataConnection.prototype._tryBuffer = function() {
|
|
if (this._buffer.length === 0) {
|
|
return;
|
|
}
|
|
|
|
var msg = this._buffer[0];
|
|
|
|
if (this._trySend(msg)) {
|
|
this._buffer.shift();
|
|
this.bufferSize = this._buffer.length;
|
|
this._tryBuffer();
|
|
}
|
|
};
|
|
|
|
DataConnection.prototype.handleMessage = function(message) {
|
|
var payload = message.payload;
|
|
|
|
switch (message.type) {
|
|
case 'ANSWER':
|
|
this._peerBrowser = payload.browser;
|
|
|
|
// Forward to negotiator
|
|
Negotiator.handleSDP(message.type, this, payload.sdp);
|
|
break;
|
|
case 'CANDIDATE':
|
|
Negotiator.handleCandidate(this, payload.candidate);
|
|
break;
|
|
default:
|
|
util.warn('Unrecognized message type:', message.type, 'from peer:', this.peer);
|
|
break;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Wraps the streaming interface between two Peers.
|
|
*/
|
|
function MediaConnection(peer, provider, options) {
|
|
if (!(this instanceof MediaConnection)) return new MediaConnection(peer, provider, options);
|
|
EventEmitter.call(this);
|
|
|
|
this.options = util.extend({}, options);
|
|
|
|
this.open = false;
|
|
this.type = 'media';
|
|
this.peer = peer;
|
|
this.provider = provider;
|
|
this.metadata = this.options.metadata;
|
|
this.localStream = this.options._stream;
|
|
|
|
this.id = this.options.connectionId || MediaConnection._idPrefix + util.randomToken();
|
|
if (this.localStream) {
|
|
Negotiator.startConnection(
|
|
this,
|
|
{_stream: this.localStream, originator: true}
|
|
);
|
|
}
|
|
}
|
|
|
|
util.inherits(MediaConnection, EventEmitter);
|
|
|
|
MediaConnection._idPrefix = 'mc_';
|
|
|
|
MediaConnection.prototype.addStream = function(remoteStream) {
|
|
util.log('Receiving stream', remoteStream);
|
|
|
|
this.remoteStream = remoteStream;
|
|
this.emit('stream', remoteStream); // Should we call this `open`?
|
|
|
|
};
|
|
|
|
MediaConnection.prototype.handleMessage = function(message) {
|
|
var payload = message.payload;
|
|
|
|
switch (message.type) {
|
|
case 'ANSWER':
|
|
// Forward to negotiator
|
|
Negotiator.handleSDP(message.type, this, payload.sdp);
|
|
this.open = true;
|
|
break;
|
|
case 'CANDIDATE':
|
|
Negotiator.handleCandidate(this, payload.candidate);
|
|
break;
|
|
default:
|
|
util.warn('Unrecognized message type:', message.type, 'from peer:', this.peer);
|
|
break;
|
|
}
|
|
};
|
|
|
|
MediaConnection.prototype.answer = function(stream) {
|
|
if (this.localStream) {
|
|
util.warn('Local stream already exists on this MediaConnection. Are you answering a call twice?');
|
|
return;
|
|
}
|
|
|
|
this.options._payload._stream = stream;
|
|
|
|
this.localStream = stream;
|
|
Negotiator.startConnection(
|
|
this,
|
|
this.options._payload
|
|
);
|
|
|
|
// Retrieve lost messages stored because PeerConnection not set up.
|
|
var messages = this.provider._getMessages(this.id);
|
|
for (var i = 0, ii = messages.length; i < ii; i += 1) {
|
|
this.handleMessage(messages[i]);
|
|
}
|
|
this.open = true;
|
|
};
|
|
|
|
/**
|
|
* Exposed functionality for users.
|
|
*/
|
|
|
|
/** Allows user to close connection. */
|
|
MediaConnection.prototype.close = function() {
|
|
if (!this.open) {
|
|
return;
|
|
}
|
|
this.open = false;
|
|
Negotiator.cleanup(this);
|
|
this.emit('close');
|
|
};
|
|
|
|
/**
|
|
* Manages all negotiations between Peers.
|
|
*/
|
|
var Negotiator = {
|
|
pcs: {
|
|
data: {},
|
|
media: {}
|
|
}, // type => {peerId: {pc_id: pc}}.
|
|
//providers: {}, // provider's id => providers (there may be multiple providers/client.
|
|
queue: [] // connections that are delayed due to a PC being in use.
|
|
};
|
|
|
|
Negotiator._idPrefix = 'pc_';
|
|
|
|
/** Returns a PeerConnection object set up correctly (for data, media). */
|
|
Negotiator.startConnection = function(connection, options) {
|
|
var pc = Negotiator._getPeerConnection(connection, options);
|
|
|
|
if (connection.type === 'media' && options._stream) {
|
|
// Add the stream.
|
|
pc.addStream(options._stream);
|
|
}
|
|
|
|
// Set the connection's PC.
|
|
connection.pc = pc;
|
|
// What do we need to do now?
|
|
if (options.originator) {
|
|
if (connection.type === 'data') {
|
|
// Create the datachannel.
|
|
var config = {};
|
|
// Dropping reliable:false support, since it seems to be crashing
|
|
// Chrome.
|
|
/*if (util.supports.sctp && !options.reliable) {
|
|
// If we have canonical reliable support...
|
|
config = {maxRetransmits: 0};
|
|
}*/
|
|
// Fallback to ensure older browsers don't crash.
|
|
if (!util.supports.sctp) {
|
|
config = {reliable: options.reliable};
|
|
}
|
|
var dc = pc.createDataChannel(connection.label, config);
|
|
connection.initialize(dc);
|
|
}
|
|
|
|
if (!util.supports.onnegotiationneeded) {
|
|
Negotiator._makeOffer(connection);
|
|
}
|
|
} else {
|
|
Negotiator.handleSDP('OFFER', connection, options.sdp);
|
|
}
|
|
};
|
|
|
|
Negotiator._getPeerConnection = function (connection, options) {
|
|
if (!Negotiator.pcs[connection.type]) {
|
|
util.error(connection.type + ' is not a valid connection type. Maybe you overrode the `type` property somewhere.');
|
|
}
|
|
|
|
if (!Negotiator.pcs[connection.type][connection.peer]) {
|
|
Negotiator.pcs[connection.type][connection.peer] = {};
|
|
}
|
|
|
|
var pc;
|
|
|
|
if (options.pc) { // Simplest case: PC id already provided for us.
|
|
pc = Negotiator.pcs[connection.type][connection.peer][options.pc];
|
|
}
|
|
|
|
if (!pc || pc.signalingState !== 'stable') {
|
|
pc = Negotiator._startPeerConnection(connection);
|
|
}
|
|
return pc;
|
|
};
|
|
|
|
/** Start a PC. */
|
|
Negotiator._startPeerConnection = function(connection) {
|
|
util.log('Creating RTCPeerConnection.');
|
|
|
|
var id = Negotiator._idPrefix + util.randomToken();
|
|
var optional = {};
|
|
|
|
if (connection.type === 'data' && !util.supports.sctp) {
|
|
optional = {optional: [{RtpDataChannels: true}]};
|
|
} else if (connection.type === 'media') {
|
|
// Interop req for chrome.
|
|
optional = {optional: [{DtlsSrtpKeyAgreement: true}]};
|
|
}
|
|
|
|
var pc = new RTCPeerConnection(connection.provider.options.config, optional);
|
|
Negotiator.pcs[connection.type][connection.peer][id] = pc;
|
|
|
|
Negotiator._setupListeners(connection, pc, id);
|
|
|
|
return pc;
|
|
};
|
|
|
|
/** Set up various WebRTC listeners. */
|
|
Negotiator._setupListeners = function(connection, pc) {
|
|
var provider = connection.provider,
|
|
src = provider.id,
|
|
dst = connection.peer,
|
|
connectionId = connection.id;
|
|
|
|
// ICE CANDIDATES.
|
|
util.log('Listening for ICE candidates.');
|
|
|
|
pc.onicecandidate = function(evt) {
|
|
if (evt.candidate) {
|
|
util.log('Received ICE candidates for:', dst);
|
|
|
|
// For some reason Firefox requires toJSON call
|
|
var c = evt.candidate,
|
|
candidate = 'toJSON' in c ? c.toJSON() : c;
|
|
|
|
provider._messagesRef.child(dst).push({
|
|
type: 'CANDIDATE',
|
|
payload: {
|
|
candidate: candidate,
|
|
type: connection.type,
|
|
connectionId: connectionId
|
|
},
|
|
src: src,
|
|
dst: dst
|
|
});
|
|
}
|
|
};
|
|
|
|
pc.oniceconnectionstatechange = function() {
|
|
var error;
|
|
|
|
switch (pc.iceConnectionState) {
|
|
case 'failed':
|
|
util.log("ICE connection state is 'failed', notifying " + dst);
|
|
|
|
error = new Error("ICE connection state is 'failed'");
|
|
error.type = 'failed';
|
|
|
|
connection.provider._messagesRef.child(dst).push({
|
|
type: 'ERROR',
|
|
payload: {
|
|
message: error.message,
|
|
type: error.type,
|
|
connectionId: connectionId
|
|
},
|
|
src: src,
|
|
dst: dst
|
|
});
|
|
|
|
connection.emit('error', error);
|
|
connection.close();
|
|
break;
|
|
|
|
case 'disconnected':
|
|
util.log("ICE connection state is 'disconnected', closing connections to " + dst);
|
|
|
|
error = new Error("ICE connection state is 'disconnected'");
|
|
error.type = 'disconnected';
|
|
|
|
connection.emit('error', error);
|
|
connection.close();
|
|
break;
|
|
|
|
case 'completed':
|
|
pc.onicecandidate = util.noop;
|
|
break;
|
|
}
|
|
};
|
|
|
|
// Fallback for older Chrome impls.
|
|
pc.onicechange = pc.oniceconnectionstatechange;
|
|
|
|
// ONNEGOTIATIONNEEDED (Chrome)
|
|
util.log('Listening for `negotiationneeded`');
|
|
pc.onnegotiationneeded = function() {
|
|
util.log('`negotiationneeded` triggered');
|
|
if (pc.signalingState == 'stable') {
|
|
Negotiator._makeOffer(connection);
|
|
} else {
|
|
util.log('onnegotiationneeded triggered when not stable. Is another connection being established?');
|
|
}
|
|
};
|
|
|
|
// DATACONNECTION.
|
|
util.log('Listening for data channel');
|
|
// Fired between offer and answer, so options should already be saved
|
|
// in the options hash.
|
|
pc.ondatachannel = function(evt) {
|
|
util.log('Received data channel');
|
|
var dc = evt.channel;
|
|
var connection = provider.getConnection(dst, connectionId);
|
|
connection.initialize(dc);
|
|
};
|
|
|
|
// MEDIACONNECTION.
|
|
util.log('Listening for remote stream');
|
|
pc.onaddstream = function(evt) {
|
|
util.log('Received remote stream');
|
|
var stream = evt.stream;
|
|
provider.getConnection(dst, connectionId).addStream(stream);
|
|
};
|
|
};
|
|
|
|
Negotiator.cleanup = function(connection) {
|
|
util.log('Cleaning up PeerConnection to ' + connection.peer);
|
|
|
|
var pc = connection.pc;
|
|
|
|
if (!!pc && (pc.readyState !== 'closed' || pc.signalingState !== 'closed')) {
|
|
pc.close();
|
|
connection.pc = null;
|
|
}
|
|
};
|
|
|
|
Negotiator._makeOffer = function(connection) {
|
|
var pc = connection.pc,
|
|
src = connection.provider.id,
|
|
dst = connection.peer;
|
|
|
|
pc
|
|
.createOffer(connection.options.constraints || {})
|
|
.then(function (offer) {
|
|
util.log('Created offer.');
|
|
|
|
pc
|
|
.setLocalDescription(offer)
|
|
.then(function () {
|
|
// For some reason Firefox requires toJSON call
|
|
var o = offer;
|
|
offer = 'toJSON' in o ? o.toJSON() : o;
|
|
|
|
util.log('Set localDescription: offer', 'for:', dst);
|
|
connection.provider._messagesRef.child(dst).push({
|
|
type: 'OFFER',
|
|
payload: {
|
|
sdp: offer,
|
|
type: connection.type,
|
|
label: connection.label,
|
|
connectionId: connection.id,
|
|
reliable: connection.reliable,
|
|
serialization: connection.serialization,
|
|
metadata: connection.metadata,
|
|
browser: util.browser
|
|
},
|
|
src: src,
|
|
dst: dst
|
|
});
|
|
})
|
|
.catch(function (err) {
|
|
connection.provider.emit('error', err);
|
|
util.log('Failed to setLocalDescription, ', err);
|
|
});
|
|
})
|
|
.catch(function (err) {
|
|
connection.provider.emit('error', err);
|
|
util.log('Failed to createOffer, ', err);
|
|
});
|
|
};
|
|
|
|
Negotiator._makeAnswer = function(connection) {
|
|
var pc = connection.pc,
|
|
provider = connection.provider,
|
|
src = provider.id,
|
|
dst = connection.peer;
|
|
|
|
pc
|
|
.createAnswer()
|
|
.then(function(answer) {
|
|
util.log('Created answer.');
|
|
|
|
pc
|
|
.setLocalDescription(answer)
|
|
.then(function() {
|
|
// For some reason Firefox requires toJSON call
|
|
var a = answer;
|
|
answer = 'toJSON' in a ? a.toJSON() : a;
|
|
|
|
util.log('Set localDescription: answer', 'for:', dst);
|
|
provider._messagesRef.child(dst).push({
|
|
type: 'ANSWER',
|
|
payload: {
|
|
sdp: answer,
|
|
type: connection.type,
|
|
connectionId: connection.id,
|
|
browser: util.browser
|
|
},
|
|
src: src,
|
|
dst: dst
|
|
});
|
|
})
|
|
.catch(function(err) {
|
|
connection.provider.emit('error', err);
|
|
util.log('Failed to setLocalDescription, ', err);
|
|
});
|
|
})
|
|
.catch(function(err) {
|
|
connection.provider.emit('error', err);
|
|
util.log('Failed to create answer, ', err);
|
|
});
|
|
};
|
|
|
|
/** Handle an SDP. */
|
|
Negotiator.handleSDP = function(type, connection, sdp) {
|
|
sdp = new RTCSessionDescription(sdp);
|
|
var pc = connection.pc;
|
|
|
|
util.log('Setting remote description', sdp);
|
|
pc
|
|
.setRemoteDescription(sdp)
|
|
.then(function() {
|
|
util.log('Set remoteDescription:', type, 'for:', connection.peer);
|
|
|
|
if (type === 'OFFER') {
|
|
Negotiator._makeAnswer(connection);
|
|
}
|
|
})
|
|
.catch(function(err) {
|
|
connection.provider.emit('error', err);
|
|
util.log('Failed to setRemoteDescription, ', err);
|
|
});
|
|
};
|
|
|
|
/** Handle a candidate. */
|
|
Negotiator.handleCandidate = function(connection, ice) {
|
|
var candidate = ice.candidate;
|
|
var sdpMLineIndex = ice.sdpMLineIndex;
|
|
connection.pc.addIceCandidate(new RTCIceCandidate({
|
|
sdpMLineIndex: sdpMLineIndex,
|
|
candidate: candidate
|
|
}));
|
|
util.log('Added ICE candidate for:', connection.peer);
|
|
};
|
|
|
|
})(this);
|