webrtcstreamer.js 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. var WebRtcStreamer = (function() {
  2. /**
  3. * Interface with WebRTC-streamer API
  4. * @constructor
  5. * @param {string} videoElement - id of the video element tag
  6. * @param {string} srvurl - url of webrtc-streamer (default is current location)
  7. */
  8. var WebRtcStreamer = function WebRtcStreamer (videoElement, srvurl) {
  9. if (typeof videoElement === "string") {
  10. this.videoElement = document.getElementById(videoElement);
  11. } else {
  12. this.videoElement = videoElement;
  13. }
  14. this.srvurl = srvurl || location.protocol+"//"+window.location.hostname+":"+window.location.port;
  15. this.pc = null;
  16. this.mediaConstraints = { offerToReceiveAudio: true, offerToReceiveVideo: true };
  17. this.iceServers = null;
  18. this.earlyCandidates = [];
  19. }
  20. WebRtcStreamer.prototype._handleHttpErrors = function (response) {
  21. if (!response.ok) {
  22. throw Error(response.statusText);
  23. }
  24. return response;
  25. }
  26. /**
  27. * Connect a WebRTC Stream to videoElement
  28. * @param {string} videourl - id of WebRTC video stream
  29. * @param {string} audiourl - id of WebRTC audio stream
  30. * @param {string} options - options of WebRTC call
  31. * @param {string} stream - local stream to send
  32. */
  33. WebRtcStreamer.prototype.connect = function(videourl, audiourl, options, localstream) {
  34. this.disconnect();
  35. // getIceServers is not already received
  36. if (!this.iceServers) {
  37. console.log("Get IceServers");
  38. fetch(this.srvurl + "/api/getIceServers")
  39. .then(this._handleHttpErrors)
  40. .then((response) => {debugger; return response.json() } )
  41. .then( (response) => this.onReceiveGetIceServers(response, videourl, audiourl, options, localstream))
  42. .catch( (error) => this.onError("getIceServers " + error ))
  43. } else {
  44. this.onReceiveGetIceServers(this.iceServers, videourl, audiourl, options, localstream);
  45. }
  46. }
  47. /**
  48. * Disconnect a WebRTC Stream and clear videoElement source
  49. */
  50. WebRtcStreamer.prototype.disconnect = function() {
  51. if (this.videoElement?.srcObject) {
  52. this.videoElement.srcObject.getTracks().forEach(track => {
  53. track.stop()
  54. this.videoElement.srcObject.removeTrack(track);
  55. });
  56. }
  57. if (this.pc) {
  58. fetch(this.srvurl + "/api/hangup?peerid=" + this.pc.peerid)
  59. .then(this._handleHttpErrors)
  60. .catch( (error) => this.onError("hangup " + error ))
  61. try {
  62. this.pc.close();
  63. }
  64. catch (e) {
  65. console.log ("Failure close peer connection:" + e);
  66. }
  67. this.pc = null;
  68. }
  69. }
  70. /*
  71. * GetIceServers callback
  72. */
  73. WebRtcStreamer.prototype.onReceiveGetIceServers = function(iceServers, videourl, audiourl, options, stream) {
  74. this.iceServers = iceServers;
  75. debugger
  76. this.pcConfig = iceServers || {"iceServers": [] };
  77. try {
  78. this.createPeerConnection();
  79. var callurl = this.srvurl + "/api/call?peerid=" + this.pc.peerid + "&url=" + encodeURIComponent(videourl);
  80. if (audiourl) {
  81. callurl += "&audiourl="+encodeURIComponent(audiourl);
  82. }
  83. if (options) {
  84. callurl += "&options="+encodeURIComponent(options);
  85. }
  86. if (stream) {
  87. this.pc.addStream(stream);
  88. }
  89. // clear early candidates
  90. this.earlyCandidates.length = 0;
  91. // create Offer
  92. this.pc.createOffer(this.mediaConstraints).then((sessionDescription) => {
  93. console.log("Create offer:" + JSON.stringify(sessionDescription));
  94. this.pc.setLocalDescription(sessionDescription)
  95. .then(() => {
  96. fetch(callurl, { method: "POST", body: JSON.stringify(sessionDescription) })
  97. .then(this._handleHttpErrors)
  98. .then( (response) => (response.json()) )
  99. .catch( (error) => this.onError("call " + error ))
  100. .then( (response) => this.onReceiveCall(response) )
  101. .catch( (error) => this.onError("call " + error ))
  102. }, (error) => {
  103. console.log ("setLocalDescription error:" + JSON.stringify(error));
  104. });
  105. }, (error) => {
  106. alert("Create offer error:" + JSON.stringify(error));
  107. });
  108. } catch (e) {
  109. this.disconnect();
  110. alert("connect error: " + e);
  111. }
  112. }
  113. WebRtcStreamer.prototype.getIceCandidate = function() {
  114. fetch(this.srvurl + "/api/getIceCandidate?peerid=" + this.pc.peerid)
  115. .then(this._handleHttpErrors)
  116. .then( (response) => (response.json()) )
  117. .then( (response) => this.onReceiveCandidate(response))
  118. .catch( (error) => this.onError("getIceCandidate " + error ))
  119. }
  120. /*
  121. * create RTCPeerConnection
  122. */
  123. WebRtcStreamer.prototype.createPeerConnection = function() {
  124. console.log("createPeerConnection config: " + JSON.stringify(this.pcConfig));
  125. this.pc = new RTCPeerConnection(this.pcConfig);
  126. var pc = this.pc;
  127. pc.peerid = Math.random();
  128. pc.onicecandidate = (evt) => this.onIceCandidate(evt);
  129. pc.onaddstream = (evt) => this.onAddStream(evt);
  130. pc.oniceconnectionstatechange = (evt) => {
  131. console.log("oniceconnectionstatechange state: " + pc.iceConnectionState);
  132. if (this.videoElement) {
  133. if (pc.iceConnectionState === "connected") {
  134. this.videoElement.style.opacity = "1.0";
  135. }
  136. else if (pc.iceConnectionState === "disconnected") {
  137. this.videoElement.style.opacity = "0.25";
  138. }
  139. else if ( (pc.iceConnectionState === "failed") || (pc.iceConnectionState === "closed") ) {
  140. this.videoElement.style.opacity = "0.5";
  141. } else if (pc.iceConnectionState === "new") {
  142. this.getIceCandidate();
  143. }
  144. }
  145. }
  146. pc.ondatachannel = function(evt) {
  147. console.log("remote datachannel created:"+JSON.stringify(evt));
  148. evt.channel.onopen = function () {
  149. console.log("remote datachannel open");
  150. this.send("remote channel openned");
  151. }
  152. evt.channel.onmessage = function (event) {
  153. console.log("remote datachannel recv:"+JSON.stringify(event.data));
  154. }
  155. }
  156. pc.onicegatheringstatechange = function() {
  157. if (pc.iceGatheringState === "complete") {
  158. const recvs = pc.getReceivers();
  159. recvs.forEach((recv) => {
  160. if (recv.track && recv.track.kind === "video") {
  161. console.log("codecs:" + JSON.stringify(recv.getParameters().codecs))
  162. }
  163. });
  164. }
  165. }
  166. try {
  167. var dataChannel = pc.createDataChannel("ClientDataChannel");
  168. dataChannel.onopen = function() {
  169. console.log("local datachannel open");
  170. this.send("local channel openned");
  171. }
  172. dataChannel.onmessage = function(evt) {
  173. console.log("local datachannel recv:"+JSON.stringify(evt.data));
  174. }
  175. } catch (e) {
  176. console.log("Cannor create datachannel error: " + e);
  177. }
  178. console.log("Created RTCPeerConnnection with config: " + JSON.stringify(this.pcConfig) );
  179. return pc;
  180. }
  181. /*
  182. * RTCPeerConnection IceCandidate callback
  183. */
  184. WebRtcStreamer.prototype.onIceCandidate = function (event) {
  185. if (event.candidate) {
  186. if (this.pc.currentRemoteDescription) {
  187. this.addIceCandidate(this.pc.peerid, event.candidate);
  188. } else {
  189. this.earlyCandidates.push(event.candidate);
  190. }
  191. }
  192. else {
  193. console.log("End of candidates.");
  194. }
  195. }
  196. WebRtcStreamer.prototype.addIceCandidate = function(peerid, candidate) {
  197. fetch(this.srvurl + "/api/addIceCandidate?peerid="+peerid, { method: "POST", body: JSON.stringify(candidate) })
  198. .then(this._handleHttpErrors)
  199. .then( (response) => (response.json()) )
  200. .then( (response) => {console.log("addIceCandidate ok:" + response)})
  201. .catch( (error) => this.onError("addIceCandidate " + error ))
  202. }
  203. /*
  204. * RTCPeerConnection AddTrack callback
  205. */
  206. WebRtcStreamer.prototype.onAddStream = function(event) {
  207. console.log("Remote track added:" + JSON.stringify(event));
  208. this.videoElement.srcObject = event.stream;
  209. var promise = this.videoElement.play();
  210. if (promise !== undefined) {
  211. promise.catch((error) => {
  212. console.warn("error:"+error);
  213. this.videoElement.setAttribute("controls", true);
  214. });
  215. }
  216. }
  217. /*
  218. * AJAX /call callback
  219. */
  220. WebRtcStreamer.prototype.onReceiveCall = function(dataJson) {
  221. console.log("offer: " + JSON.stringify(dataJson));
  222. var descr = new RTCSessionDescription(dataJson);
  223. this.pc.setRemoteDescription(descr).then(() => {
  224. console.log ("setRemoteDescription ok");
  225. while (this.earlyCandidates.length) {
  226. var candidate = this.earlyCandidates.shift();
  227. this.addIceCandidate(this.pc.peerid, candidate);
  228. }
  229. this.getIceCandidate()
  230. }
  231. , (error) => {
  232. console.log ("setRemoteDescription error:" + JSON.stringify(error));
  233. });
  234. }
  235. /*
  236. * AJAX /getIceCandidate callback
  237. */
  238. WebRtcStreamer.prototype.onReceiveCandidate = function(dataJson) {
  239. console.log("candidate: " + JSON.stringify(dataJson));
  240. if (dataJson) {
  241. for (var i=0; i<dataJson.length; i++) {
  242. var candidate = new RTCIceCandidate(dataJson[i]);
  243. console.log("Adding ICE candidate :" + JSON.stringify(candidate) );
  244. this.pc.addIceCandidate(candidate).then( () => { console.log ("addIceCandidate OK"); }
  245. , (error) => { console.log ("addIceCandidate error:" + JSON.stringify(error)); } );
  246. }
  247. this.pc.addIceCandidate();
  248. }
  249. }
  250. /*
  251. * AJAX callback for Error
  252. */
  253. WebRtcStreamer.prototype.onError = function(status) {
  254. console.log("onError:" + status);
  255. }
  256. return WebRtcStreamer;
  257. })();
  258. if (typeof window !== 'undefined' && typeof window.document !== 'undefined') {
  259. window.WebRtcStreamer = WebRtcStreamer;
  260. }
  261. if (typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
  262. module.exports = WebRtcStreamer;
  263. }