File: source/template/header.js

  1. (function() {
  2.  
  3. 'use strict';
  4.  
  5. /**
  6. * Polyfill for Object.keys() from Mozilla
  7. * From https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys
  8. */
  9. if (!Object.keys) {
  10. Object.keys = (function() {
  11. var hasOwnProperty = Object.prototype.hasOwnProperty,
  12. hasDontEnumBug = !({
  13. toString: null
  14. }).propertyIsEnumerable('toString'),
  15. dontEnums = [
  16. 'toString',
  17. 'toLocaleString',
  18. 'valueOf',
  19. 'hasOwnProperty',
  20. 'isPrototypeOf',
  21. 'propertyIsEnumerable',
  22. 'constructor'
  23. ],
  24. dontEnumsLength = dontEnums.length;
  25.  
  26. return function(obj) {
  27. if (typeof obj !== 'object' && typeof obj !== 'function' || obj === null) throw new TypeError('Object.keys called on non-object');
  28.  
  29. var result = [];
  30.  
  31. for (var prop in obj) {
  32. if (hasOwnProperty.call(obj, prop)) result.push(prop);
  33. }
  34.  
  35. if (hasDontEnumBug) {
  36. for (var i = 0; i < dontEnumsLength; i++) {
  37. if (hasOwnProperty.call(obj, dontEnums[i])) result.push(dontEnums[i]);
  38. }
  39. }
  40. return result;
  41. }
  42. })()
  43. }
  44.  
  45. /**
  46. * Polyfill for Date.getISOString() from Mozilla
  47. * From https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString
  48. */
  49. (function() {
  50. function pad(number) {
  51. if (number < 10) {
  52. return '0' + number;
  53. }
  54. return number;
  55. }
  56.  
  57. Date.prototype.toISOString = function() {
  58. return this.getUTCFullYear() +
  59. '-' + pad(this.getUTCMonth() + 1) +
  60. '-' + pad(this.getUTCDate()) +
  61. 'T' + pad(this.getUTCHours()) +
  62. ':' + pad(this.getUTCMinutes()) +
  63. ':' + pad(this.getUTCSeconds()) +
  64. '.' + (this.getUTCMilliseconds() / 1000).toFixed(3).slice(2, 5) +
  65. 'Z';
  66. };
  67. })();
  68.  
  69. /**
  70. * Polyfill for addEventListener() from Eirik Backer @eirikbacker (github.com).
  71. * From https://gist.github.com/eirikbacker/2864711
  72. * MIT Licensed
  73. */
  74. (function(win, doc){
  75. if(win.addEventListener) return; //No need to polyfill
  76.  
  77. function docHijack(p){var old = doc[p];doc[p] = function(v){ return addListen(old(v)) }}
  78. function addEvent(on, fn, self){
  79. return (self = this).attachEvent('on' + on, function(e){
  80. var e = e || win.event;
  81. e.preventDefault = e.preventDefault || function(){e.returnValue = false}
  82. e.stopPropagation = e.stopPropagation || function(){e.cancelBubble = true}
  83. fn.call(self, e);
  84. });
  85. }
  86. function addListen(obj, i){
  87. if(i = obj.length)while(i--)obj[i].addEventListener = addEvent;
  88. else obj.addEventListener = addEvent;
  89. return obj;
  90. }
  91.  
  92. addListen([doc, win]);
  93. if('Element' in win)win.Element.prototype.addEventListener = addEvent; //IE8
  94. else{ //IE < 8
  95. doc.attachEvent('onreadystatechange', function(){addListen(doc.all)}); //Make sure we also init at domReady
  96. docHijack('getElementsByTagName');
  97. docHijack('getElementById');
  98. docHijack('createElement');
  99. addListen(doc.all);
  100. }
  101. })(window, document);
  102.  
  103. /**
  104. * Global function that clones an object.
  105. */
  106. var clone = function (obj) {
  107. if (obj === null || typeof obj !== 'object') {
  108. return obj;
  109. }
  110.  
  111. var copy = function (data) {
  112. var copy = data.constructor();
  113. for (var attr in data) {
  114. if (data.hasOwnProperty(attr)) {
  115. copy[attr] = data[attr];
  116. }
  117. }
  118. return copy;
  119. };
  120.  
  121. if (typeof obj === 'object' && !Array.isArray(obj)) {
  122. try {
  123. return JSON.parse( JSON.stringify(obj) );
  124. } catch (err) {
  125. return copy(obj);
  126. }
  127. }
  128. return copy(obj);
  129. };
  130.  
  131. /**
  132. * <h2>Prerequisites on using Skylink</h2>
  133. * Before using any Skylink functionalities, you will need to authenticate your App Key using
  134. * the <a href="#method_init">`init()` method</a>.
  135. *
  136. * To manage or create App Keys, you may access the [Skylink Developer Portal here](https://console.temasys.io).
  137. *
  138. * To view the list of supported browsers, visit [the list here](
  139. * https://github.com/Temasys/SkylinkJS#supported-browsers).
  140. *
  141. * Here are some articles to help you get started:
  142. * - [How to setup a simple video call](https://temasys.com.sg/getting-started-with-webrtc-and-skylinkjs/)
  143. * - [How to setup screensharing](https://temasys.com.sg/screensharing-with-skylinkjs/)
  144. * - [How to create a chatroom like feature](https://temasys.com.sg/building-a-simple-peer-to-peer-webrtc-chat/)
  145. *
  146. * Here are some demos you may use to aid your development:
  147. * - Getaroom.io [[Demo](https://getaroom.io) / [Source code](https://github.com/Temasys/getaroom)]
  148. * - Creating a component [[Link](https://github.com/Temasys/skylink-call-button)]
  149. *
  150. * You may see the example below in the <a href="#">Constructor tab</a> to have a general idea how event subscription
  151. * and the ordering of <a href="#method_init"><code>init()</code></a> and
  152. * <a href="#method_joinRoom"><code>joinRoom()</code></a> methods should be called.
  153. *
  154. * If you have any issues, you may find answers to your questions in the FAQ section on [our support portal](
  155. * http://support.temasys.com.sg), asks questions, request features or raise bug tickets as well.
  156. *
  157. * If you would like to contribute to our SkylinkJS codebase, see [the contributing README](
  158. * https://github.com/Temasys/SkylinkJS/blob/master/CONTRIBUTING.md).
  159. *
  160. * [See License (Apache 2.0)](https://github.com/Temasys/SkylinkJS/blob/master/LICENSE)
  161. *
  162. * @class Skylink
  163. * @constructor
  164. * @example
  165. * // Here's a simple example on how you can start using Skylink.
  166. * var skylinkDemo = new Skylink();
  167. *
  168. * // Subscribe all events first as a general guideline
  169. * skylinkDemo.on("incomingStream", function (peerId, stream, peerInfo, isSelf) {
  170. * if (isSelf) {
  171. * attachMediaStream(document.getElementById("selfVideo"), stream);
  172. * } else {
  173. * var peerVideo = document.createElement("video");
  174. * peerVideo.id = peerId;
  175. * peerVideo.autoplay = "autoplay";
  176. * document.getElementById("peersVideo").appendChild(peerVideo);
  177. * attachMediaStream(peerVideo, stream);
  178. * }
  179. * });
  180. *
  181. * skylinkDemo.on("peerLeft", function (peerId, peerInfo, isSelf) {
  182. * if (!isSelf) {
  183. * var peerVideo = document.getElementById(peerId);
  184. * // do a check if peerVideo exists first
  185. * if (peerVideo) {
  186. * document.getElementById("peersVideo").removeChild(peerVideo);
  187. * } else {
  188. * console.error("Peer video for " + peerId + " is not found.");
  189. * }
  190. * }
  191. * });
  192. *
  193. * // init() should always be called first before other methods other than event methods like on() or off().
  194. * skylinkDemo.init("YOUR_APP_KEY_HERE", function (error, success) {
  195. * if (success) {
  196. * skylinkDemo.joinRoom("my_room", {
  197. * userData: "My Username",
  198. * audio: true,
  199. * video: true
  200. * });
  201. * }
  202. * });
  203. * @for Skylink
  204. * @since 0.5.0
  205. */
  206. function Skylink() {
  207. if (!(this instanceof Skylink)) {
  208. return new Skylink();
  209. }
  210. }
  211.  
  212. /**
  213. * Contains the current version of Skylink Web SDK.
  214. * @attribute VERSION
  215. * @type String
  216. * @readOnly
  217. * @for Skylink
  218. * @since 0.1.0
  219. */
  220. Skylink.prototype.VERSION = '@@version';
  221.  
  222. /**
  223. * Function that generates an <a href="https://en.wikipedia.org/wiki/Universally_unique_identifier">UUID</a> (Unique ID).
  224. * @method generateUUID
  225. * @return {String} Returns a generated UUID (Unique ID).
  226. * @for Skylink
  227. * @since 0.5.9
  228. */
  229. Skylink.prototype.generateUUID = function() {
  230. var d = new Date().getTime();
  231. var uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
  232. var r = (d + Math.random() * 16) % 16 | 0;
  233. d = Math.floor(d / 16);
  234. return (c == 'x' ? r : (r & 0x7 | 0x8)).toString(16);
  235. });
  236. return uuid;
  237. };
  238.