workadventure/front/src/WebRtc/SimplePeer.ts

470 lines
17 KiB
TypeScript
Raw Normal View History

import {
Connection,
WebRtcDisconnectMessageInterface,
WebRtcSignalMessageInterface,
WebRtcStartMessageInterface
} from "../Connection";
import { mediaManager } from "./MediaManager";
2020-06-03 22:32:43 +02:00
import * as SimplePeerNamespace from "simple-peer";
2020-06-09 23:13:26 +02:00
const Peer: SimplePeerNamespace.SimplePeer = require('simple-peer');
2020-04-25 16:05:33 +02:00
export interface UserSimplePeerInterface{
userId: string;
name?: string;
initiator?: boolean;
}
export interface PeerConnectionListener {
onConnect(user: UserSimplePeerInterface): void;
onDisconnect(userId: string): void;
}
/**
* This class manages connections to all the peers in the same group as me.
*/
2020-06-03 22:32:43 +02:00
export class SimplePeer {
private Connection: Connection;
private WebRtcRoomId: string;
private Users: Array<UserSimplePeerInterface> = new Array<UserSimplePeerInterface>();
2020-06-11 23:18:06 +02:00
private PeerScreenSharingConnectionArray: Map<string, SimplePeerNamespace.Instance> = new Map<string, SimplePeerNamespace.Instance>();
2020-06-03 22:32:43 +02:00
private PeerConnectionArray: Map<string, SimplePeerNamespace.Instance> = new Map<string, SimplePeerNamespace.Instance>();
private readonly updateLocalStreamCallback: (media: MediaStream) => void;
private readonly updateScreenSharingCallback: (media: MediaStream) => void;
private readonly peerConnectionListeners: Array<PeerConnectionListener> = new Array<PeerConnectionListener>();
2020-04-25 16:05:33 +02:00
constructor(Connection: Connection, WebRtcRoomId: string = "test-webrtc") {
this.Connection = Connection;
2020-04-29 17:49:40 +02:00
this.WebRtcRoomId = WebRtcRoomId;
// We need to go through this weird bound function pointer in order to be able to "free" this reference later.
this.updateLocalStreamCallback = this.updatedLocalStream.bind(this);
this.updateScreenSharingCallback = this.updatedScreenSharing.bind(this);
mediaManager.onUpdateLocalStream(this.updateLocalStreamCallback);
mediaManager.onUpdateScreenSharing(this.updateScreenSharingCallback);
2020-04-29 01:40:32 +02:00
this.initialise();
}
public registerPeerConnectionListener(peerConnectionListener: PeerConnectionListener) {
this.peerConnectionListeners.push(peerConnectionListener);
}
public getNbConnections(): number {
return this.PeerConnectionArray.size;
}
2020-04-29 01:40:32 +02:00
/**
* permit to listen when user could start visio
*/
2020-05-02 20:46:02 +02:00
private initialise() {
2020-04-25 16:05:33 +02:00
//receive signal by gemer
this.Connection.receiveWebrtcSignal((message: WebRtcSignalMessageInterface) => {
this.receiveWebrtcSignal(message);
});
2020-04-25 16:05:33 +02:00
2020-06-11 23:18:06 +02:00
//receive signal by gemer
this.Connection.receiveWebrtcScreenSharingSignal((message: WebRtcDisconnectMessageInterface) => {
2020-06-11 23:18:06 +02:00
this.receiveWebrtcScreenSharingSignal(message);
});
mediaManager.activeVisio();
mediaManager.getCamera().then(() => {
2020-05-02 20:46:02 +02:00
//receive message start
this.Connection.receiveWebrtcStart((message: WebRtcStartMessageInterface) => {
2020-05-02 20:46:02 +02:00
this.receiveWebrtcStart(message);
});
}).catch((err) => {
console.error("err", err);
2020-04-25 16:05:33 +02:00
});
this.Connection.disconnectMessage((data: WebRtcDisconnectMessageInterface): void => {
this.closeConnection(data.userId);
2020-05-02 20:46:02 +02:00
});
2020-04-25 16:05:33 +02:00
}
private receiveWebrtcStart(data: WebRtcStartMessageInterface) {
2020-04-29 17:49:40 +02:00
this.WebRtcRoomId = data.roomId;
2020-04-29 01:40:32 +02:00
this.Users = data.clients;
// Note: the clients array contain the list of all clients (event the ones we are already connected to in case a user joints a group)
// So we can receive a request we already had before. (which will abort at the first line of createPeerConnection)
// TODO: refactor this to only send a message to connect to one user (rather than several users).
// This would be symmetrical to the way we handle disconnection.
//console.log('Start message', data);
2020-04-25 16:05:33 +02:00
//start connection
this.startWebRtc();
2020-04-25 16:05:33 +02:00
}
2020-05-02 20:46:02 +02:00
/**
* server has two people connected, start the meet
2020-05-02 20:46:02 +02:00
*/
private startWebRtc() {
this.Users.forEach((user: UserSimplePeerInterface) => {
//if it's not an initiator, peer connection will be created when gamer will receive offer signal
2020-05-02 20:46:02 +02:00
if(!user.initiator){
2020-04-25 17:14:05 +02:00
return;
}
this.createPeerConnection(user);
2020-05-02 20:46:02 +02:00
});
}
2020-04-25 20:29:03 +02:00
2020-05-02 20:46:02 +02:00
/**
* create peer connection to bind users
2020-05-02 20:46:02 +02:00
*/
2020-06-11 23:18:06 +02:00
private createPeerConnection(user : UserSimplePeerInterface, screenSharing: boolean = false) : SimplePeerNamespace.Instance | null{
if(
(screenSharing && this.PeerScreenSharingConnectionArray.has(user.userId))
|| (!screenSharing && this.PeerConnectionArray.has(user.userId))
){
return null;
2020-05-02 20:46:02 +02:00
}
let name = user.name;
if(!name){
const userSearch = this.Users.find((userSearch: UserSimplePeerInterface) => userSearch.userId === user.userId);
if(userSearch) {
name = userSearch.name;
}
}
2020-06-11 23:18:06 +02:00
if(screenSharing) {
mediaManager.removeActiveScreenSharingVideo(user.userId);
2020-06-11 23:18:06 +02:00
mediaManager.addScreenSharingActiveVideo(user.userId);
2020-06-08 09:36:07 +02:00
}else{
mediaManager.removeActiveVideo(user.userId);
2020-06-11 23:18:06 +02:00
mediaManager.addActiveVideo(user.userId, name);
}
2020-05-02 20:46:02 +02:00
const peer : SimplePeerNamespace.Instance = new Peer({
2020-05-02 20:46:02 +02:00
initiator: user.initiator ? user.initiator : false,
reconnectTimer: 10000,
config: {
iceServers: [
{
urls: 'stun:stun.l.google.com:19302'
},
{
urls: 'turn:numb.viagenie.ca',
username: 'g.parant@thecodingmachine.com',
2020-05-03 17:19:42 +02:00
credential: 'itcugcOHxle9Acqi$'
2020-05-02 20:46:02 +02:00
},
]
}
});
2020-06-11 23:18:06 +02:00
if(screenSharing){
this.PeerScreenSharingConnectionArray.set(user.userId, peer);
}else {
this.PeerConnectionArray.set(user.userId, peer);
}
2020-04-25 17:14:05 +02:00
//start listen signal for the peer connection
peer.on('signal', (data: unknown) => {
2020-06-11 23:18:06 +02:00
if(screenSharing){
this.sendWebrtcScreenSharingSignal(data, user.userId);
return;
}
2020-05-02 20:46:02 +02:00
this.sendWebrtcSignal(data, user.userId);
});
2020-04-25 16:05:33 +02:00
2020-06-03 22:32:43 +02:00
peer.on('stream', (stream: MediaStream) => {
this.stream(user.userId, stream, screenSharing);
2020-05-02 20:46:02 +02:00
});
2020-04-25 16:05:33 +02:00
2020-06-03 22:32:43 +02:00
/*peer.on('track', (track: MediaStreamTrack, stream: MediaStream) => {
});*/
2020-05-02 20:46:02 +02:00
2020-06-03 22:32:43 +02:00
peer.on('close', () => {
2020-06-11 23:18:06 +02:00
if(screenSharing){
this.closeScreenSharingConnection(user.userId);
return;
2020-06-11 23:18:06 +02:00
}
this.closeConnection(user.userId);
2020-05-02 20:46:02 +02:00
});
// eslint-disable-next-line @typescript-eslint/no-explicit-any
2020-06-03 22:32:43 +02:00
peer.on('error', (err: any) => {
2020-05-02 20:46:02 +02:00
console.error(`error => ${user.userId} => ${err.code}`, err);
if(screenSharing){
//mediaManager.isErrorScreenSharing(user.userId);
return;
}
mediaManager.isError(user.userId);
2020-04-25 16:05:33 +02:00
});
2020-05-02 20:46:02 +02:00
2020-06-03 22:32:43 +02:00
peer.on('connect', () => {
mediaManager.isConnected(user.userId);
2020-05-02 20:46:02 +02:00
console.info(`connect => ${user.userId}`);
});
2020-06-03 22:32:43 +02:00
peer.on('data', (chunk: Buffer) => {
let constraint = JSON.parse(chunk.toString('utf8'));
console.log("data", constraint);
if (constraint.audio) {
mediaManager.enabledMicrophoneByUserId(user.userId);
} else {
mediaManager.disabledMicrophoneByUserId(user.userId);
}
2020-06-06 19:52:34 +02:00
if (constraint.video || constraint.screen) {
mediaManager.enabledVideoByUserId(user.userId);
} else {
this.stream(user.userId);
mediaManager.disabledVideoByUserId(user.userId);
}
});
2020-06-11 23:18:06 +02:00
if(screenSharing){
this.addMediaScreenSharing(user.userId);
}else {
this.addMedia(user.userId);
}
2020-08-17 16:18:39 +02:00
for (const peerConnectionListener of this.peerConnectionListeners) {
peerConnectionListener.onConnect(user);
}
return peer;
}
/**
* This is triggered twice. Once by the server, and once by a remote client disconnecting
*
* @param userId
*/
private closeConnection(userId : string) {
2020-05-02 20:46:02 +02:00
try {
mediaManager.removeActiveVideo(userId);
2020-06-09 23:13:26 +02:00
const peer = this.PeerConnectionArray.get(userId);
if (peer === undefined) {
console.warn("Tried to close connection for user "+userId+" but could not find user")
2020-05-02 20:46:02 +02:00
return;
}
// FIXME: I don't understand why "Closing connection with" message is displayed TWICE before "Nb users in peerConnectionArray"
// I do understand the method closeConnection is called twice, but I don't understand how they manage to run in parallel.
//console.log('Closing connection with '+userId);
peer.destroy();
this.PeerConnectionArray.delete(userId);
this.closeScreenSharingConnection(userId);
//console.log('Nb users in peerConnectionArray '+this.PeerConnectionArray.size);
2020-08-17 16:18:39 +02:00
for (const peerConnectionListener of this.peerConnectionListeners) {
peerConnectionListener.onDisconnect(userId);
}
2020-05-02 20:46:02 +02:00
} catch (err) {
console.error("closeConnection", err)
2020-05-02 20:46:02 +02:00
}
2020-04-25 16:05:33 +02:00
}
2020-06-11 23:18:06 +02:00
/**
* This is triggered twice. Once by the server, and once by a remote client disconnecting
*
* @param userId
*/
private closeScreenSharingConnection(userId : string) {
try {
mediaManager.removeActiveScreenSharingVideo(userId);
let peer = this.PeerScreenSharingConnectionArray.get(userId);
if (peer === undefined) {
console.warn("Tried to close connection for user "+userId+" but could not find user")
return;
}
// FIXME: I don't understand why "Closing connection with" message is displayed TWICE before "Nb users in peerConnectionArray"
// I do understand the method closeConnection is called twice, but I don't understand how they manage to run in parallel.
//console.log('Closing connection with '+userId);
peer.destroy();
this.PeerScreenSharingConnectionArray.delete(userId)
//console.log('Nb users in peerConnectionArray '+this.PeerConnectionArray.size);
} catch (err) {
console.error("closeConnection", err)
}
}
public closeAllConnections() {
for (const userId of this.PeerConnectionArray.keys()) {
this.closeConnection(userId);
}
}
/**
* Unregisters any held event handler.
*/
public unregister() {
mediaManager.removeUpdateLocalStreamEventListener(this.updateLocalStreamCallback);
}
2020-04-25 16:05:33 +02:00
/**
2020-04-26 17:42:49 +02:00
*
* @param userId
2020-04-25 16:05:33 +02:00
* @param data
*/
private sendWebrtcSignal(data: unknown, userId : string) {
2020-06-11 23:18:06 +02:00
console.log("sendWebrtcSignal", data);
2020-05-02 20:46:02 +02:00
try {
this.Connection.sendWebrtcSignal(data, this.WebRtcRoomId, null, userId);
2020-05-02 20:46:02 +02:00
}catch (e) {
console.error(`sendWebrtcSignal => ${userId}`, e);
}
2020-04-25 16:05:33 +02:00
}
2020-06-11 23:18:06 +02:00
/**
*
* @param userId
* @param data
*/
private sendWebrtcScreenSharingSignal(data: any, userId : string) {
console.log("sendWebrtcScreenSharingSignal", data);
try {
this.Connection.sendWebrtcScreenSharingSignal(data, this.WebRtcRoomId, userId);
2020-06-11 23:18:06 +02:00
}catch (e) {
console.error(`sendWebrtcSignal => ${userId}`, e);
}
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
private receiveWebrtcSignal(data: WebRtcSignalMessageInterface) {
2020-05-02 20:46:02 +02:00
try {
//if offer type, create peer connection
2020-05-02 20:46:02 +02:00
if(data.signal.type === "offer"){
this.createPeerConnection(data);
2020-05-02 20:46:02 +02:00
}
2020-06-09 23:13:26 +02:00
const peer = this.PeerConnectionArray.get(data.userId);
2020-06-03 22:32:43 +02:00
if (peer !== undefined) {
peer.signal(data.signal);
} else {
console.error('Could not find peer whose ID is "'+data.userId+'" in PeerConnectionArray');
}
2020-05-02 20:46:02 +02:00
} catch (e) {
console.error(`receiveWebrtcSignal => ${data.userId}`, e);
2020-04-25 16:05:33 +02:00
}
}
2020-06-11 23:18:06 +02:00
private receiveWebrtcScreenSharingSignal(data: any) {
console.log("receiveWebrtcScreenSharingSignal", data);
try {
//if offer type, create peer connection
if(data.signal.type === "offer"){
this.createPeerConnection(data, true);
}
let peer = this.PeerScreenSharingConnectionArray.get(data.userId);
2020-06-11 23:18:06 +02:00
if (peer !== undefined) {
peer.signal(data.signal);
} else {
console.error('Could not find peer whose ID is "'+data.userId+'" in receiveWebrtcScreenSharingSignal');
2020-06-11 23:18:06 +02:00
}
} catch (e) {
console.error(`receiveWebrtcSignal => ${data.userId}`, e);
}
}
2020-04-25 16:05:33 +02:00
/**
2020-04-25 20:29:03 +02:00
*
* @param userId
2020-04-25 16:05:33 +02:00
* @param stream
*/
private stream(userId : string, stream?: MediaStream, screenSharing?: boolean) {
console.log(`stream => ${userId} => screenSharing => ${screenSharing}`, stream);
if(screenSharing){
if(!stream){
mediaManager.removeActiveScreenSharingVideo(userId);
return;
}
mediaManager.addStreamRemoteScreenSharing(userId, stream);
return;
}
if(!stream){
mediaManager.disabledVideoByUserId(userId);
mediaManager.disabledMicrophoneByUserId(userId);
return;
}
mediaManager.addStreamRemoteVideo(userId, stream);
2020-04-25 16:05:33 +02:00
}
/**
2020-04-25 20:29:03 +02:00
*
* @param userId
2020-04-25 16:05:33 +02:00
*/
private addMedia (userId : string) {
2020-05-02 20:46:02 +02:00
try {
2020-06-06 20:13:30 +02:00
let PeerConnection = this.PeerConnectionArray.get(userId);
2020-06-08 22:52:25 +02:00
if (!PeerConnection) {
throw new Error('While adding media, cannot find user with ID ' + userId);
2020-06-03 22:57:00 +02:00
}
2020-06-08 22:52:25 +02:00
let localStream: MediaStream | null = mediaManager.localStream;
2020-06-11 23:18:06 +02:00
PeerConnection.write(new Buffer(JSON.stringify(mediaManager.constraintsMedia)));
2020-06-06 19:52:34 +02:00
if(!localStream){
return;
}
if (localStream) {
for (const track of localStream.getTracks()) {
2020-06-06 19:52:34 +02:00
PeerConnection.addTrack(track, localStream);
}
2020-06-03 22:57:00 +02:00
}
2020-05-02 20:46:02 +02:00
}catch (e) {
console.error(`addMedia => addMedia => ${userId}`, e);
}
2020-04-26 20:55:20 +02:00
}
2020-05-03 17:19:42 +02:00
2020-06-11 23:18:06 +02:00
private addMediaScreenSharing (userId : any = null) {
let PeerConnection = this.PeerScreenSharingConnectionArray.get(userId);
if (!PeerConnection) {
throw new Error('While adding media, cannot find user with ID ' + userId);
}
let localScreenCapture: MediaStream | null = mediaManager.localScreenCapture;
if(!localScreenCapture){
return;
}
/*for (const track of localScreenCapture.getTracks()) {
PeerConnection.addTrack(track, localScreenCapture);
}*/
return;
}
2020-05-03 17:19:42 +02:00
updatedLocalStream(){
this.Users.forEach((user: UserSimplePeerInterface) => {
2020-05-03 17:19:42 +02:00
this.addMedia(user.userId);
})
}
updatedScreenSharing() {
2020-06-11 23:18:06 +02:00
if (mediaManager.localScreenCapture) {
//this.Connection.sendWebrtcScreenSharingStart(this.WebRtcRoomId);
const userId = this.Connection.getUserId();
if(!userId){
return;
}
let screenSharingUser: UserSimplePeerInterface = {
userId,
initiator: true
};
let PeerConnectionScreenSharing = this.createPeerConnection(screenSharingUser, true);
if (!PeerConnectionScreenSharing) {
return;
}
try {
for (const track of mediaManager.localScreenCapture.getTracks()) {
PeerConnectionScreenSharing.addTrack(track, mediaManager.localScreenCapture);
}
}catch (e) {
console.error("updatedScreenSharing => ", e);
}
mediaManager.addStreamRemoteScreenSharing(screenSharingUser.userId, mediaManager.localScreenCapture);
} else {
const userId = this.Connection.getUserId();
if (!userId || !this.PeerScreenSharingConnectionArray.has(userId)) {
return;
}
let PeerConnectionScreenSharing = this.PeerScreenSharingConnectionArray.get(userId);
console.log("updatedScreenSharing => destroy", PeerConnectionScreenSharing);
if (!PeerConnectionScreenSharing) {
return;
}
PeerConnectionScreenSharing.destroy();
this.PeerScreenSharingConnectionArray.delete(userId);
}
}
2020-05-14 22:00:31 +02:00
}