diff options
-rw-r--r-- | public/scripts/chat.js | 48 | ||||
-rw-r--r-- | public/scripts/main.js | 2 | ||||
-rw-r--r-- | views/index.pug | 2 |
3 files changed, 24 insertions, 28 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js index 12cceae..8214121 100644 --- a/public/scripts/chat.js +++ b/public/scripts/chat.js @@ -19,7 +19,6 @@ const pinInput = require('./input_pin'); // setup vars const host = 'meta.marvinborner.de'; let peerId; -let call; let currentPeerIndex; // defines which peer connection is currently used const connectedPeers = []; @@ -102,14 +101,23 @@ function chat() { // start the peer const peer = new Peer(peerId, { host, - port: 4242, + port: 8080, path: '/api', secure: true, debug: 0, }); // Peer events - peer.on('call', call => getMediaStream(stream => call.answer(stream))); // TODO: Ask for call accept + peer.on('call', (call) => { + getMediaStream(stream => call.answer(stream)); + call.on('stream', (stream) => { + const video = document.querySelector('audio'); + video.srcObject = stream; + video.onloadedmetadata = () => { + video.play(); + }; + }); + }); // TODO: Ask for call accept peer.on('open', async (id) => { await refreshContactList(); @@ -542,32 +550,20 @@ function chat() { }); $('#call') .on('click', () => getMediaStream((stream) => { - call = peer.call(peerId, stream); // TODO: Encrypt call - initCall(call); + peer.call(connectedPeers[currentPeerIndex].peer, stream); // TODO: Encrypt call })); }); } +/** + * Gets a video and audio stream + * @param callback + */ function getMediaStream(callback) { - navigator.getUserMedia( - { - audio: true, - video: { - width: 1280, - height: 720, - }, - }, - stream => callback(stream), - err => console.error(err), - ); -} - -function initCall(call) { - call.on('stream', (stream) => { - const video = document.querySelector('video'); - video.srcObject = stream; - video.onloadedmetadata = () => { - video.play(); - }; - }); + navigator.mediaDevices.getUserMedia({ + audio: true, + video: false, // REMEMBER: Activate video stream + }) + .then(stream => callback(stream)) + .catch(err => console.error(err.message)); } diff --git a/public/scripts/main.js b/public/scripts/main.js index ff904dd..f41ff5f 100644 --- a/public/scripts/main.js +++ b/public/scripts/main.js @@ -9,7 +9,7 @@ * This file only pulls all dependencies together * so it is compileable by browserify */ -require('webrtc-adapter/dist/adapter_core'); +//require('webrtc-adapter/dist/adapter_core'); require('@fortawesome/fontawesome-free/js/all.min'); require('./peer'); require('./chat'); diff --git a/views/index.pug b/views/index.pug index 79ff2f2..ce56873 100644 --- a/views/index.pug +++ b/views/index.pug @@ -25,7 +25,7 @@ block content button.button.action-button.is-big.is-outlined.is-danger#delete i.fas.fa-trash - //video#video + audio#audio .section.message-wrapper #messages .message-field |