File: source/template/header.js
(function() {
'use strict';
/* IE < 10 Polyfills */
// Mozilla provided polyfill for Object.keys()
if (!Object.keys) {
Object.keys = (function() {
var hasOwnProperty = Object.prototype.hasOwnProperty,
hasDontEnumBug = !({
toString: null
}).propertyIsEnumerable('toString'),
dontEnums = [
'toString',
'toLocaleString',
'valueOf',
'hasOwnProperty',
'isPrototypeOf',
'propertyIsEnumerable',
'constructor'
],
dontEnumsLength = dontEnums.length;
return function(obj) {
if (typeof obj !== 'object' && typeof obj !== 'function' || obj === null) throw new TypeError('Object.keys called on non-object');
var result = [];
for (var prop in obj) {
if (hasOwnProperty.call(obj, prop)) result.push(prop);
}
if (hasDontEnumBug) {
for (var i = 0; i < dontEnumsLength; i++) {
if (hasOwnProperty.call(obj, dontEnums[i])) result.push(dontEnums[i]);
}
}
return result;
}
})()
}
// Mozilla provided polyfill for Date.getISOString()
(function() {
function pad(number) {
if (number < 10) {
return '0' + number;
}
return number;
}
Date.prototype.toISOString = function() {
return this.getUTCFullYear() +
'-' + pad(this.getUTCMonth() + 1) +
'-' + pad(this.getUTCDate()) +
'T' + pad(this.getUTCHours()) +
':' + pad(this.getUTCMinutes()) +
':' + pad(this.getUTCSeconds()) +
'.' + (this.getUTCMilliseconds() / 1000).toFixed(3).slice(2, 5) +
'Z';
};
})();
// addEventListener polyfill 1.0 / Eirik Backer / MIT Licence
(function(win, doc){
if(win.addEventListener) return; //No need to polyfill
function docHijack(p){var old = doc[p];doc[p] = function(v){ return addListen(old(v)) }}
function addEvent(on, fn, self){
return (self = this).attachEvent('on' + on, function(e){
var e = e || win.event;
e.preventDefault = e.preventDefault || function(){e.returnValue = false}
e.stopPropagation = e.stopPropagation || function(){e.cancelBubble = true}
fn.call(self, e);
});
}
function addListen(obj, i){
if(i = obj.length)while(i--)obj[i].addEventListener = addEvent;
else obj.addEventListener = addEvent;
return obj;
}
addListen([doc, win]);
if('Element' in win)win.Element.prototype.addEventListener = addEvent; //IE8
else{ //IE < 8
doc.attachEvent('onreadystatechange', function(){addListen(doc.all)}); //Make sure we also init at domReady
docHijack('getElementsByTagName');
docHijack('getElementById');
docHijack('createElement');
addListen(doc.all);
}
})(window, document);
// global clone function
var clone = function (obj) {
if (obj === null || typeof obj !== 'object') {
return obj;
}
var copy = obj.constructor();
for (var attr in obj) {
if (obj.hasOwnProperty(attr)) {
copy[attr] = obj[attr];
}
}
return copy;
};
/**
* <h2>Before using Skylink</h2>
* Please invoke {{#crossLink "Skylink/init:method"}}init(){{/crossLink}} method
* first to initialise the Application Key before using any functionalities in Skylink.
*
* If you do not have an Application Key, you may register for a Skylink platform developer account
* [to create one](http://developer.temasys.com.sg/register).
*
* To get started you may [visit the getting started page](https://temasys.github.io/how-to/2014/08/08/
* Getting_started_with_WebRTC_and_SkylinkJS/), or alternatively fork a ready made demo application
* that uses Skylink Web SDK at [getaroom.io](http://getaroom.io/).
*
* For tips on using skylink and troubleshooting you can visit
* [our support portal](http://support.temasys.com.sg/support/solutions/folders/5000267498).
* @class Skylink
* @constructor
* @example
* // Here's a simple example on how you can start using Skylink
* var SkylinkDemo = new Skylink();
*
* // Subscribe all events first before init()
* SkylinkDemo.on("incomingStream", function (peerId, stream, peerInfo, isSelf) {
* if (isSelf) {
* attachMediaStream(document.getElementById("selfVideo"), stream);
* } else {
* var peerVideo = document.createElement("video");
* peerVideo.id = peerId;
* peerVideo.autoplay = "autoplay";
* document.getElementById("peersVideo").appendChild(peerVideo);
* attachMediaStream(peerVideo, stream);
* }
* });
*
* SkylinkDemo.on("peerLeft", function (peerId, peerInfo, isSelf) {
* if (!isSelf) {
* var peerVideo = document.getElementById(peerId);
* // do a check if peerVideo exists first
* if (peerVideo) {
* document.getElementById("peersVideo").removeChild(peerVideo);
* } else {
* console.error("Peer video for " + peerId + " is not found.");
* }
* }
* });
*
* // never call joinRoom in readyStateChange event subscription.
* // call joinRoom after init() callback if you want to joinRoom instantly.
* SkylinkDemo.on("readyStateChange", function (state, room) {
* console.log("Room (" + room + ") state: ", room);
* })
*
* // always remember to call init()
* SkylinkDemo.init("YOUR_APP_KEY_HERE", function (error, success) {
* // do a check for error or success
* if (error) {
* console.error("Init failed: ", error);
* } else {
* SkylinkDemo.joinRoom("my_room", {
* userData: "My Username",
* audio: true,
* video: true
* });
* }
* });
* @for Skylink
* @since 0.5.0
*/
function Skylink() {
if (!(this instanceof Skylink)) {
return new Skylink();
}
/**
* The current version of Skylink Web SDK.
* @attribute VERSION
* @type String
* @readOnly
* @for Skylink
* @since 0.1.0
*/
this.VERSION = '@@version';
/**
* Helper function that generates an Unique ID (UUID) string.
* @method generateUUID
* @return {String} Generated Unique ID (UUID) string.
* @example
* // Get Unique ID (UUID)
* var uuid = SkylinkDemo.generateUUID();
* @for Skylink
* @since 0.5.9
*/
this.generateUUID = function() {
var d = new Date().getTime();
var uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
var r = (d + Math.random() * 16) % 16 | 0;
d = Math.floor(d / 16);
return (c == 'x' ? r : (r & 0x7 | 0x8)).toString(16);
});
return uuid;
};
}
this.Skylink = Skylink;