aboutsummaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
authorMarvin Borner2019-02-27 22:33:38 +0100
committerMarvin Borner2019-02-27 22:33:38 +0100
commit32b83c0fca73a83d51f6c6dbe7378a3cdc75703b (patch)
tree817736ba2b65d63ba9a56510e12d4c3b18eded12 /public
parentc2f243a467349f9417d081bb732562b15fcb7890 (diff)
Added calling feature
Diffstat (limited to 'public')
-rw-r--r--public/scripts/chat.js48
-rw-r--r--public/scripts/main.js2
2 files changed, 23 insertions, 27 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');