2020-05-24 23:14:12 +02:00
|
|
|
import {ConnectionInterface} from "../Connection";
|
2020-04-25 16:05:33 +02:00
|
|
|
import {MediaManager} from "./MediaManager";
|
2020-06-03 22:32:43 +02:00
|
|
|
import * as SimplePeerNamespace from "simple-peer";
|
|
|
|
let Peer: SimplePeerNamespace.SimplePeer = require('simple-peer');
|
2020-04-25 16:05:33 +02:00
|
|
|
|
2020-06-03 22:32:43 +02:00
|
|
|
class UserSimplePeer{
|
2020-05-14 20:39:30 +02:00
|
|
|
userId: string;
|
|
|
|
name?: string;
|
|
|
|
initiator?: boolean;
|
2020-04-26 19:59:51 +02:00
|
|
|
}
|
2020-06-03 22:32:43 +02:00
|
|
|
export class SimplePeer {
|
2020-05-24 23:14:12 +02:00
|
|
|
private Connection: ConnectionInterface;
|
2020-05-01 21:15:00 +02:00
|
|
|
private WebRtcRoomId: string;
|
2020-06-03 22:32:43 +02:00
|
|
|
private Users: Array<UserSimplePeer> = new Array<UserSimplePeer>();
|
2020-05-01 21:15:00 +02:00
|
|
|
|
2020-05-02 20:46:02 +02:00
|
|
|
private MediaManager: MediaManager;
|
2020-04-25 16:05:33 +02:00
|
|
|
|
2020-06-03 22:32:43 +02:00
|
|
|
private PeerConnectionArray: Map<string, SimplePeerNamespace.Instance> = new Map<string, SimplePeerNamespace.Instance>();
|
2020-04-25 16:05:33 +02:00
|
|
|
|
2020-05-24 23:14:12 +02:00
|
|
|
constructor(Connection: ConnectionInterface, WebRtcRoomId: string = "test-webrtc") {
|
|
|
|
this.Connection = Connection;
|
2020-04-29 17:49:40 +02:00
|
|
|
this.WebRtcRoomId = WebRtcRoomId;
|
2020-05-03 17:19:42 +02:00
|
|
|
this.MediaManager = new MediaManager((stream : MediaStream) => {
|
|
|
|
this.updatedLocalStream();
|
|
|
|
});
|
2020-04-29 01:40:32 +02:00
|
|
|
this.initialise();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
2020-05-01 21:15:00 +02:00
|
|
|
//receive signal by gemer
|
2020-05-24 23:14:12 +02:00
|
|
|
this.Connection.receiveWebrtcSignal((message: any) => {
|
2020-05-01 21:15:00 +02:00
|
|
|
this.receiveWebrtcSignal(message);
|
|
|
|
});
|
2020-04-25 16:05:33 +02:00
|
|
|
|
2020-05-02 20:46:02 +02:00
|
|
|
this.MediaManager.activeVisio();
|
|
|
|
this.MediaManager.getCamera().then(() => {
|
|
|
|
|
|
|
|
//receive message start
|
2020-05-24 23:14:12 +02:00
|
|
|
this.Connection.receiveWebrtcStart((message: any) => {
|
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
|
|
|
});
|
2020-05-01 21:15:00 +02:00
|
|
|
|
2020-05-02 20:46:02 +02:00
|
|
|
//receive signal by gemer
|
2020-05-24 23:14:12 +02:00
|
|
|
this.Connection.disconnectMessage((data: any) => {
|
|
|
|
this.closeConnection(data.userId);
|
2020-05-02 20:46:02 +02:00
|
|
|
});
|
2020-04-25 16:05:33 +02:00
|
|
|
}
|
|
|
|
|
2020-05-16 16:07:38 +02:00
|
|
|
private receiveWebrtcStart(data: any) {
|
2020-04-29 17:49:40 +02:00
|
|
|
this.WebRtcRoomId = data.roomId;
|
2020-04-29 01:40:32 +02:00
|
|
|
this.Users = data.clients;
|
2020-04-25 16:05:33 +02:00
|
|
|
|
2020-05-24 23:14:12 +02:00
|
|
|
//start connection
|
2020-05-01 21:15:00 +02:00
|
|
|
this.startWebRtc();
|
2020-04-25 16:05:33 +02:00
|
|
|
}
|
|
|
|
|
2020-05-02 20:46:02 +02:00
|
|
|
/**
|
|
|
|
* server has two person connected, start the meet
|
|
|
|
*/
|
|
|
|
private startWebRtc() {
|
2020-06-03 22:32:43 +02:00
|
|
|
this.Users.forEach((user: UserSimplePeer) => {
|
2020-05-24 23:14:12 +02:00
|
|
|
//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;
|
|
|
|
}
|
2020-05-24 23:14:12 +02:00
|
|
|
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
|
|
|
/**
|
2020-05-24 23:14:12 +02:00
|
|
|
* create peer connection to bind users
|
2020-05-02 20:46:02 +02:00
|
|
|
*/
|
2020-06-03 22:32:43 +02:00
|
|
|
private createPeerConnection(user : UserSimplePeer) {
|
2020-05-24 23:14:12 +02:00
|
|
|
if(this.PeerConnectionArray.has(user.userId)) {
|
2020-05-02 20:46:02 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-05-01 21:15:00 +02:00
|
|
|
|
2020-05-14 20:39:30 +02:00
|
|
|
let name = user.name;
|
|
|
|
if(!name){
|
2020-06-03 22:32:43 +02:00
|
|
|
let userSearch = this.Users.find((userSearch: UserSimplePeer) => userSearch.userId === user.userId);
|
2020-05-14 20:39:30 +02:00
|
|
|
if(userSearch) {
|
|
|
|
name = userSearch.name;
|
|
|
|
}
|
|
|
|
}
|
2020-05-02 20:46:02 +02:00
|
|
|
this.MediaManager.removeActiveVideo(user.userId);
|
2020-05-14 20:39:30 +02:00
|
|
|
this.MediaManager.addActiveVideo(user.userId, name);
|
2020-05-02 20:46:02 +02:00
|
|
|
|
2020-05-14 20:39:30 +02:00
|
|
|
let peer : any = 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-05-24 23:14:12 +02:00
|
|
|
this.PeerConnectionArray.set(user.userId, peer);
|
2020-04-25 17:14:05 +02:00
|
|
|
|
2020-05-24 23:14:12 +02:00
|
|
|
//start listen signal for the peer connection
|
2020-06-03 22:32:43 +02:00
|
|
|
peer.on('signal', (data: any) => {
|
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) => {
|
2020-05-14 20:39:30 +02:00
|
|
|
let videoActive = false;
|
|
|
|
let microphoneActive = false;
|
|
|
|
stream.getTracks().forEach((track : MediaStreamTrack) => {
|
|
|
|
if(track.kind === "audio"){
|
|
|
|
microphoneActive = true;
|
|
|
|
}
|
|
|
|
if(track.kind === "video"){
|
|
|
|
videoActive = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if(microphoneActive){
|
|
|
|
this.MediaManager.enabledMicrophoneByUserId(user.userId);
|
|
|
|
}else{
|
|
|
|
this.MediaManager.disabledMicrophoneByUserId(user.userId);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(videoActive){
|
|
|
|
this.MediaManager.enabledVideoByUserId(user.userId);
|
|
|
|
}else{
|
|
|
|
this.MediaManager.disabledVideoByUserId(user.userId);
|
|
|
|
}
|
2020-05-02 20:46:02 +02:00
|
|
|
this.stream(user.userId, stream);
|
|
|
|
});
|
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
|
|
|
this.stream(user.userId, stream);
|
2020-05-23 14:00:36 +02:00
|
|
|
});*/
|
2020-05-02 20:46:02 +02:00
|
|
|
|
2020-06-03 22:32:43 +02:00
|
|
|
peer.on('close', () => {
|
2020-05-24 23:14:12 +02:00
|
|
|
this.closeConnection(user.userId);
|
2020-05-02 20:46:02 +02:00
|
|
|
});
|
2020-04-26 19:12:01 +02:00
|
|
|
|
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);
|
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', () => {
|
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) => {
|
2020-05-23 14:00:36 +02:00
|
|
|
let data = JSON.parse(chunk.toString('utf8'));
|
|
|
|
if(data.type === "stream"){
|
|
|
|
this.stream(user.userId, data.stream);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-05-02 20:46:02 +02:00
|
|
|
this.addMedia(user.userId);
|
2020-04-26 19:12:01 +02:00
|
|
|
}
|
|
|
|
|
2020-05-24 23:14:12 +02:00
|
|
|
private closeConnection(userId : string) {
|
2020-05-02 20:46:02 +02:00
|
|
|
try {
|
|
|
|
this.MediaManager.removeActiveVideo(userId);
|
2020-05-24 23:14:12 +02:00
|
|
|
if (!this.PeerConnectionArray.get(userId)) {
|
2020-05-02 20:46:02 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// @ts-ignore
|
2020-06-03 22:32:43 +02:00
|
|
|
this.PeerConnectionArray.get(userId)?.destroy();
|
2020-05-24 23:14:12 +02:00
|
|
|
this.PeerConnectionArray.delete(userId)
|
2020-05-02 20:46:02 +02:00
|
|
|
} catch (err) {
|
2020-05-24 23:14:12 +02:00
|
|
|
console.error("closeConnection", err)
|
2020-05-02 20:46:02 +02:00
|
|
|
}
|
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
|
|
|
|
*/
|
2020-05-01 21:15:00 +02:00
|
|
|
private sendWebrtcSignal(data: any, userId : string) {
|
2020-05-02 20:46:02 +02:00
|
|
|
try {
|
2020-05-24 23:14:12 +02:00
|
|
|
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-05-16 16:07:38 +02:00
|
|
|
private receiveWebrtcSignal(data: any) {
|
2020-05-02 20:46:02 +02:00
|
|
|
try {
|
2020-05-24 23:14:12 +02:00
|
|
|
//if offer type, create peer connection
|
2020-05-02 20:46:02 +02:00
|
|
|
if(data.signal.type === "offer"){
|
2020-05-24 23:14:12 +02:00
|
|
|
this.createPeerConnection(data);
|
2020-05-02 20:46:02 +02:00
|
|
|
}
|
2020-06-03 22:32:43 +02:00
|
|
|
let peer = this.PeerConnectionArray.get(data.userId);
|
|
|
|
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-04-25 20:29:03 +02:00
|
|
|
*
|
|
|
|
* @param userId
|
2020-04-25 16:05:33 +02:00
|
|
|
* @param stream
|
|
|
|
*/
|
2020-05-01 21:15:00 +02:00
|
|
|
private stream(userId : any, stream: MediaStream) {
|
2020-05-23 14:00:36 +02:00
|
|
|
if(!stream){
|
|
|
|
this.MediaManager.disabledVideoByUserId(userId);
|
|
|
|
this.MediaManager.disabledMicrophoneByUserId(userId);
|
|
|
|
return;
|
|
|
|
}
|
2020-05-02 20:46:02 +02:00
|
|
|
this.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
|
|
|
*/
|
2020-05-01 21:15:00 +02:00
|
|
|
private addMedia (userId : any = null) {
|
2020-05-02 20:46:02 +02:00
|
|
|
try {
|
|
|
|
let transceiver : any = null;
|
2020-06-03 22:57:00 +02:00
|
|
|
let localStream: MediaStream|null = this.MediaManager.localStream;
|
|
|
|
let peer = this.PeerConnectionArray.get(userId);
|
|
|
|
if(localStream === null) {
|
2020-05-23 14:00:36 +02:00
|
|
|
//send fake signal
|
2020-06-03 22:57:00 +02:00
|
|
|
if(peer === undefined){
|
2020-05-23 14:00:36 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-06-03 22:57:00 +02:00
|
|
|
peer.write(new Buffer(JSON.stringify({
|
2020-05-23 14:00:36 +02:00
|
|
|
type: "stream",
|
|
|
|
stream: null
|
|
|
|
})));
|
2020-05-14 20:39:30 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-06-03 22:57:00 +02:00
|
|
|
if (peer === undefined) {
|
|
|
|
throw new Error('While adding media, cannot find user with ID '+userId);
|
|
|
|
}
|
|
|
|
for (const track of localStream.getTracks()) {
|
|
|
|
peer.addTrack(track, localStream);
|
|
|
|
}
|
2020-05-02 20:46:02 +02:00
|
|
|
}catch (e) {
|
|
|
|
console.error(`addMedia => addMedia => ${userId}`, e);
|
2020-05-01 21:15:00 +02:00
|
|
|
}
|
2020-04-26 20:55:20 +02:00
|
|
|
}
|
2020-05-03 17:19:42 +02:00
|
|
|
|
|
|
|
updatedLocalStream(){
|
2020-06-03 22:32:43 +02:00
|
|
|
this.Users.forEach((user: UserSimplePeer) => {
|
2020-05-03 17:19:42 +02:00
|
|
|
this.addMedia(user.userId);
|
|
|
|
})
|
|
|
|
}
|
2020-05-14 22:00:31 +02:00
|
|
|
}
|