webrtcstreamer.js 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  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) => (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. this.pcConfig = iceServers || {"iceServers": [] };
  76. try {
  77. this.createPeerConnection();
  78. var callurl = this.srvurl + "/api/call?peerid=" + this.pc.peerid + "&url=" + encodeURIComponent(videourl);
  79. if (audiourl) {
  80. callurl += "&audiourl="+encodeURIComponent(audiourl);
  81. }
  82. if (options) {
  83. callurl += "&options="+encodeURIComponent(options);
  84. }
  85. if (stream) {
  86. this.pc.addStream(stream);
  87. }
  88. // clear early candidates
  89. this.earlyCandidates.length = 0;
  90. // create Offer
  91. this.pc.createOffer(this.mediaConstraints).then((sessionDescription) => {
  92. console.log("Create offer:" + JSON.stringify(sessionDescription));
  93. this.pc.setLocalDescription(sessionDescription)
  94. .then(() => {
  95. fetch(callurl, { method: "POST", body: JSON.stringify(sessionDescription) })
  96. .then(this._handleHttpErrors)
  97. .then( (response) => (response.json()) )
  98. .catch( (error) => this.onError("call " + error ))
  99. .then( (response) => this.onReceiveCall(response) )
  100. .catch( (error) => this.onError("call " + error ))
  101. }, (error) => {
  102. console.log ("setLocalDescription error:" + JSON.stringify(error));
  103. });
  104. }, (error) => {
  105. alert("Create offer error:" + JSON.stringify(error));
  106. });
  107. } catch (e) {
  108. this.disconnect();
  109. alert("connect error: " + e);
  110. }
  111. }
  112. WebRtcStreamer.prototype.getIceCandidate = function() {
  113. fetch(this.srvurl + "/api/getIceCandidate?peerid=" + this.pc.peerid)
  114. .then(this._handleHttpErrors)
  115. .then( (response) => (response.json()) )
  116. .then( (response) => this.onReceiveCandidate(response))
  117. .catch( (error) => this.onError("getIceCandidate " + error ))
  118. }
  119. /*
  120. * create RTCPeerConnection
  121. */
  122. WebRtcStreamer.prototype.createPeerConnection = function() {
  123. console.log("createPeerConnection config: " + JSON.stringify(this.pcConfig));
  124. this.pc = new RTCPeerConnection(this.pcConfig);
  125. var pc = this.pc;
  126. pc.peerid = Math.random();
  127. pc.onicecandidate = (evt) => this.onIceCandidate(evt);
  128. pc.onaddstream = (evt) => this.onAddStream(evt);
  129. pc.oniceconnectionstatechange = (evt) => {
  130. console.log("oniceconnectionstatechange state: " + pc.iceConnectionState);
  131. if (this.videoElement) {
  132. if (pc.iceConnectionState === "connected") {
  133. this.videoElement.style.opacity = "1.0";
  134. }
  135. else if (pc.iceConnectionState === "disconnected") {
  136. this.videoElement.style.opacity = "0.25";
  137. }
  138. else if ( (pc.iceConnectionState === "failed") || (pc.iceConnectionState === "closed") ) {
  139. this.videoElement.style.opacity = "0.5";
  140. } else if (pc.iceConnectionState === "new") {
  141. this.getIceCandidate();
  142. }
  143. }
  144. }
  145. pc.ondatachannel = function(evt) {
  146. console.log("remote datachannel created:"+JSON.stringify(evt));
  147. evt.channel.onopen = function () {
  148. console.log("remote datachannel open");
  149. this.send("remote channel openned");
  150. }
  151. evt.channel.onmessage = function (event) {
  152. console.log("remote datachannel recv:"+JSON.stringify(event.data));
  153. }
  154. }
  155. pc.onicegatheringstatechange = function() {
  156. if (pc.iceGatheringState === "complete") {
  157. const recvs = pc.getReceivers();
  158. recvs.forEach((recv) => {
  159. if (recv.track && recv.track.kind === "video") {
  160. console.log("codecs:" + JSON.stringify(recv.getParameters().codecs))
  161. }
  162. });
  163. }
  164. }
  165. try {
  166. var dataChannel = pc.createDataChannel("ClientDataChannel");
  167. dataChannel.onopen = function() {
  168. console.log("local datachannel open");
  169. this.send("local channel openned");
  170. }
  171. dataChannel.onmessage = function(evt) {
  172. console.log("local datachannel recv:"+JSON.stringify(evt.data));
  173. }
  174. } catch (e) {
  175. console.log("Cannor create datachannel error: " + e);
  176. }
  177. console.log("Created RTCPeerConnnection with config: " + JSON.stringify(this.pcConfig) );
  178. return pc;
  179. }
  180. /*
  181. * RTCPeerConnection IceCandidate callback
  182. */
  183. WebRtcStreamer.prototype.onIceCandidate = function (event) {
  184. if (event.candidate) {
  185. if (this.pc.currentRemoteDescription) {
  186. this.addIceCandidate(this.pc.peerid, event.candidate);
  187. } else {
  188. this.earlyCandidates.push(event.candidate);
  189. }
  190. }
  191. else {
  192. console.log("End of candidates.");
  193. }
  194. }
  195. WebRtcStreamer.prototype.addIceCandidate = function(peerid, candidate) {
  196. fetch(this.srvurl + "/api/addIceCandidate?peerid="+peerid, { method: "POST", body: JSON.stringify(candidate) })
  197. .then(this._handleHttpErrors)
  198. .then( (response) => (response.json()) )
  199. .then( (response) => {console.log("addIceCandidate ok:" + response)})
  200. .catch( (error) => this.onError("addIceCandidate " + error ))
  201. }
  202. /*
  203. * RTCPeerConnection AddTrack callback
  204. */
  205. WebRtcStreamer.prototype.onAddStream = function(event) {
  206. console.log("Remote track added:" + JSON.stringify(event));
  207. this.videoElement.srcObject = event.stream;
  208. var promise = this.videoElement.play();
  209. if (promise !== undefined) {
  210. promise.catch((error) => {
  211. console.warn("error:"+error);
  212. this.videoElement.setAttribute("controls", true);
  213. });
  214. }
  215. }
  216. /*
  217. * AJAX /call callback
  218. */
  219. WebRtcStreamer.prototype.onReceiveCall = function(dataJson) {
  220. console.log("offer: " + JSON.stringify(dataJson));
  221. var descr = new RTCSessionDescription(dataJson);
  222. this.pc.setRemoteDescription(descr).then(() => {
  223. console.log ("setRemoteDescription ok");
  224. while (this.earlyCandidates.length) {
  225. var candidate = this.earlyCandidates.shift();
  226. this.addIceCandidate(this.pc.peerid, candidate);
  227. }
  228. this.getIceCandidate()
  229. }
  230. , (error) => {
  231. console.log ("setRemoteDescription error:" + JSON.stringify(error));
  232. });
  233. }
  234. /*
  235. * AJAX /getIceCandidate callback
  236. */
  237. WebRtcStreamer.prototype.onReceiveCandidate = function(dataJson) {
  238. console.log("candidate: " + JSON.stringify(dataJson));
  239. if (dataJson) {
  240. for (var i=0; i<dataJson.length; i++) {
  241. var candidate = new RTCIceCandidate(dataJson[i]);
  242. console.log("Adding ICE candidate :" + JSON.stringify(candidate) );
  243. this.pc.addIceCandidate(candidate).then( () => { console.log ("addIceCandidate OK"); }
  244. , (error) => { console.log ("addIceCandidate error:" + JSON.stringify(error)); } );
  245. }
  246. this.pc.addIceCandidate();
  247. }
  248. }
  249. /*
  250. * AJAX callback for Error
  251. */
  252. WebRtcStreamer.prototype.onError = function(status) {
  253. console.log("onError:" + status);
  254. }
  255. return WebRtcStreamer;
  256. })();
  257. if (typeof window !== 'undefined' && typeof window.document !== 'undefined') {
  258. window.WebRtcStreamer = WebRtcStreamer;
  259. }
  260. if (typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
  261. module.exports = WebRtcStreamer;
  262. }