2020-06-19 16:36:40 +02:00
|
|
|
import {
|
2020-08-20 00:05:00 +02:00
|
|
|
WebRtcDisconnectMessageInterface,
|
2020-08-20 16:56:10 +02:00
|
|
|
WebRtcSignalReceivedMessageInterface,
|
2020-06-19 16:36:40 +02:00
|
|
|
WebRtcStartMessageInterface
|
2020-09-25 18:29:22 +02:00
|
|
|
} from "../Connexion/ConnexionModels";
|
2020-08-31 15:21:05 +02:00
|
|
|
import {
|
|
|
|
mediaManager,
|
|
|
|
StartScreenSharingCallback,
|
|
|
|
StopScreenSharingCallback,
|
|
|
|
UpdatedLocalStreamCallback
|
|
|
|
} from "./MediaManager";
|
2020-08-20 16:56:10 +02:00
|
|
|
import {ScreenSharingPeer} from "./ScreenSharingPeer";
|
|
|
|
import {VideoPeer} from "./VideoPeer";
|
2020-09-25 18:29:22 +02:00
|
|
|
import {RoomConnection} from "../Connexion/RoomConnection";
|
2020-04-25 16:05:33 +02:00
|
|
|
|
2020-06-08 09:20:36 +02:00
|
|
|
export interface UserSimplePeerInterface{
|
2020-09-18 13:57:38 +02:00
|
|
|
userId: number;
|
2020-05-14 20:39:30 +02:00
|
|
|
name?: string;
|
|
|
|
initiator?: boolean;
|
2020-04-26 19:59:51 +02:00
|
|
|
}
|
2020-06-05 13:07:18 +02:00
|
|
|
|
2020-08-17 16:12:53 +02:00
|
|
|
export interface PeerConnectionListener {
|
2020-08-18 00:12:38 +02:00
|
|
|
onConnect(user: UserSimplePeerInterface): void;
|
2020-08-17 16:12:53 +02:00
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
onDisconnect(userId: number): void;
|
2020-08-17 16:12:53 +02:00
|
|
|
}
|
|
|
|
|
2020-06-05 13:07:18 +02:00
|
|
|
/**
|
|
|
|
* 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 {
|
2020-06-08 09:20:36 +02:00
|
|
|
private Users: Array<UserSimplePeerInterface> = new Array<UserSimplePeerInterface>();
|
2020-05-01 21:15:00 +02:00
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
private PeerScreenSharingConnectionArray: Map<number, ScreenSharingPeer> = new Map<number, ScreenSharingPeer>();
|
|
|
|
private PeerConnectionArray: Map<number, VideoPeer> = new Map<number, VideoPeer>();
|
2020-08-31 15:21:05 +02:00
|
|
|
private readonly sendLocalVideoStreamCallback: UpdatedLocalStreamCallback;
|
|
|
|
private readonly sendLocalScreenSharingStreamCallback: StartScreenSharingCallback;
|
|
|
|
private readonly stopLocalScreenSharingStreamCallback: StopScreenSharingCallback;
|
2020-08-17 16:12:53 +02:00
|
|
|
private readonly peerConnectionListeners: Array<PeerConnectionListener> = new Array<PeerConnectionListener>();
|
2020-04-25 16:05:33 +02:00
|
|
|
|
2020-10-15 17:58:27 +02:00
|
|
|
constructor(private Connection: RoomConnection, private enableReporting: boolean) {
|
2020-06-23 14:56:57 +02:00
|
|
|
// We need to go through this weird bound function pointer in order to be able to "free" this reference later.
|
2020-08-20 00:05:00 +02:00
|
|
|
this.sendLocalVideoStreamCallback = this.sendLocalVideoStream.bind(this);
|
|
|
|
this.sendLocalScreenSharingStreamCallback = this.sendLocalScreenSharingStream.bind(this);
|
2020-08-21 22:53:17 +02:00
|
|
|
this.stopLocalScreenSharingStreamCallback = this.stopLocalScreenSharingStream.bind(this);
|
2020-10-13 19:56:42 +02:00
|
|
|
|
2020-08-20 00:05:00 +02:00
|
|
|
mediaManager.onUpdateLocalStream(this.sendLocalVideoStreamCallback);
|
2020-08-21 22:53:17 +02:00
|
|
|
mediaManager.onStartScreenSharing(this.sendLocalScreenSharingStreamCallback);
|
|
|
|
mediaManager.onStopScreenSharing(this.stopLocalScreenSharingStreamCallback);
|
2020-04-29 01:40:32 +02:00
|
|
|
this.initialise();
|
|
|
|
}
|
|
|
|
|
2020-08-17 16:12:53 +02:00
|
|
|
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
|
|
|
|
2020-05-01 21:15:00 +02:00
|
|
|
//receive signal by gemer
|
2020-08-20 16:56:10 +02:00
|
|
|
this.Connection.receiveWebrtcSignal((message: WebRtcSignalReceivedMessageInterface) => {
|
2020-05-01 21:15:00 +02:00
|
|
|
this.receiveWebrtcSignal(message);
|
|
|
|
});
|
2020-04-25 16:05:33 +02:00
|
|
|
|
2020-06-11 23:18:06 +02:00
|
|
|
//receive signal by gemer
|
2020-08-20 16:56:10 +02:00
|
|
|
this.Connection.receiveWebrtcScreenSharingSignal((message: WebRtcSignalReceivedMessageInterface) => {
|
2020-06-11 23:18:06 +02:00
|
|
|
this.receiveWebrtcScreenSharingSignal(message);
|
|
|
|
});
|
|
|
|
|
2020-08-20 00:05:00 +02:00
|
|
|
mediaManager.showGameOverlay();
|
2020-06-23 14:56:57 +02:00
|
|
|
mediaManager.getCamera().then(() => {
|
2020-05-02 20:46:02 +02:00
|
|
|
|
|
|
|
//receive message start
|
2020-09-29 16:01:22 +02:00
|
|
|
this.Connection.receiveWebrtcStart((message: UserSimplePeerInterface) => {
|
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-06-05 13:07:18 +02:00
|
|
|
this.Connection.disconnectMessage((data: WebRtcDisconnectMessageInterface): void => {
|
2020-05-24 23:14:12 +02:00
|
|
|
this.closeConnection(data.userId);
|
2020-05-02 20:46:02 +02:00
|
|
|
});
|
2020-04-25 16:05:33 +02:00
|
|
|
}
|
|
|
|
|
2020-09-29 16:01:22 +02:00
|
|
|
private receiveWebrtcStart(user: UserSimplePeerInterface) {
|
|
|
|
//this.WebRtcRoomId = data.roomId;
|
|
|
|
this.Users.push(user);
|
2020-08-20 00:05:00 +02:00
|
|
|
// Note: the clients array contain the list of all clients (even the ones we are already connected to in case a user joints a group)
|
2020-06-05 13:07:18 +02:00
|
|
|
// So we can receive a request we already had before. (which will abort at the first line of createPeerConnection)
|
2020-09-29 16:01:22 +02:00
|
|
|
// TODO: refactor this to only send a message to connect to one user (rather than several users). => DONE
|
2020-06-05 13:07:18 +02:00
|
|
|
// This would be symmetrical to the way we handle disconnection.
|
|
|
|
//console.log('Start message', data);
|
2020-04-25 16:05:33 +02:00
|
|
|
|
2020-05-24 23:14:12 +02:00
|
|
|
//start connection
|
2020-09-29 16:01:22 +02:00
|
|
|
//this.startWebRtc();
|
|
|
|
console.log('receiveWebrtcStart. Initiator: ', user.initiator)
|
|
|
|
if(!user.initiator){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.createPeerConnection(user);
|
2020-04-25 16:05:33 +02:00
|
|
|
}
|
|
|
|
|
2020-05-02 20:46:02 +02:00
|
|
|
/**
|
2020-06-05 13:07:18 +02:00
|
|
|
* server has two people connected, start the meet
|
2020-05-02 20:46:02 +02:00
|
|
|
*/
|
|
|
|
private startWebRtc() {
|
2020-08-20 00:05:00 +02:00
|
|
|
console.warn('startWebRtc startWebRtc');
|
2020-06-08 09:20:36 +02:00
|
|
|
this.Users.forEach((user: UserSimplePeerInterface) => {
|
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-08-20 16:56:10 +02:00
|
|
|
private createPeerConnection(user : UserSimplePeerInterface) : VideoPeer | null{
|
2020-06-14 14:47:16 +02:00
|
|
|
if(
|
2020-08-20 16:56:10 +02:00
|
|
|
this.PeerConnectionArray.has(user.userId)
|
2020-06-14 14:47:16 +02:00
|
|
|
){
|
2020-09-29 16:01:22 +02:00
|
|
|
console.log('Peer connection already exists to user '+user.userId)
|
2020-06-08 09:20:36 +02:00
|
|
|
return null;
|
2020-05-02 20:46:02 +02:00
|
|
|
}
|
2020-05-01 21:15:00 +02:00
|
|
|
|
2020-05-14 20:39:30 +02:00
|
|
|
let name = user.name;
|
|
|
|
if(!name){
|
2020-06-08 09:20:36 +02:00
|
|
|
const userSearch = this.Users.find((userSearch: UserSimplePeerInterface) => userSearch.userId === user.userId);
|
2020-05-14 20:39:30 +02:00
|
|
|
if(userSearch) {
|
|
|
|
name = userSearch.name;
|
|
|
|
}
|
|
|
|
}
|
2020-06-08 09:20:36 +02:00
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
mediaManager.removeActiveVideo("" + user.userId);
|
2020-10-15 12:12:11 +02:00
|
|
|
|
2020-10-15 17:58:27 +02:00
|
|
|
const reportCallback = this.enableReporting ? (comment: string) => {
|
|
|
|
this.reportUser(user.userId, comment);
|
|
|
|
}: undefined;
|
|
|
|
|
|
|
|
mediaManager.addActiveVideo("" + user.userId, reportCallback, name);
|
2020-05-02 20:46:02 +02:00
|
|
|
|
2020-08-20 22:29:14 +02:00
|
|
|
const peer = new VideoPeer(user.userId, user.initiator ? user.initiator : false, this.Connection);
|
2020-08-20 16:56:10 +02:00
|
|
|
// When a connection is established to a video stream, and if a screen sharing is taking place,
|
|
|
|
// the user sharing screen should also initiate a connection to the remote user!
|
2020-06-03 22:32:43 +02:00
|
|
|
peer.on('connect', () => {
|
2020-08-20 16:56:10 +02:00
|
|
|
if (mediaManager.localScreenCapture) {
|
2020-08-20 00:05:00 +02:00
|
|
|
this.sendLocalScreenSharingStreamToUser(user.userId);
|
|
|
|
}
|
2020-05-02 20:46:02 +02:00
|
|
|
});
|
2020-08-20 16:56:10 +02:00
|
|
|
this.PeerConnectionArray.set(user.userId, peer);
|
2020-05-02 20:46:02 +02:00
|
|
|
|
2020-08-20 16:56:10 +02:00
|
|
|
for (const peerConnectionListener of this.peerConnectionListeners) {
|
|
|
|
peerConnectionListener.onConnect(user);
|
|
|
|
}
|
|
|
|
return peer;
|
|
|
|
}
|
2020-06-06 17:03:10 +02:00
|
|
|
|
2020-08-20 16:56:10 +02:00
|
|
|
/**
|
|
|
|
* create peer connection to bind users
|
|
|
|
*/
|
|
|
|
private createPeerScreenSharingConnection(user : UserSimplePeerInterface) : ScreenSharingPeer | null{
|
|
|
|
if(
|
|
|
|
this.PeerScreenSharingConnectionArray.has(user.userId)
|
|
|
|
){
|
|
|
|
return null;
|
|
|
|
}
|
2020-05-23 14:00:36 +02:00
|
|
|
|
2020-08-20 16:56:10 +02:00
|
|
|
// We should display the screen sharing ONLY if we are not initiator
|
|
|
|
if (!user.initiator) {
|
2020-09-18 13:57:38 +02:00
|
|
|
mediaManager.removeActiveScreenSharingVideo("" + user.userId);
|
|
|
|
mediaManager.addScreenSharingActiveVideo("" + user.userId);
|
2020-06-11 23:18:06 +02:00
|
|
|
}
|
2020-08-17 16:12:53 +02:00
|
|
|
|
2020-08-20 22:29:14 +02:00
|
|
|
const peer = new ScreenSharingPeer(user.userId, user.initiator ? user.initiator : false, this.Connection);
|
2020-08-20 16:56:10 +02:00
|
|
|
this.PeerScreenSharingConnectionArray.set(user.userId, peer);
|
|
|
|
|
2020-08-17 16:18:39 +02:00
|
|
|
for (const peerConnectionListener of this.peerConnectionListeners) {
|
2020-08-17 16:12:53 +02:00
|
|
|
peerConnectionListener.onConnect(user);
|
|
|
|
}
|
2020-06-08 09:20:36 +02:00
|
|
|
return peer;
|
2020-04-26 19:12:01 +02:00
|
|
|
}
|
|
|
|
|
2020-06-05 13:07:18 +02:00
|
|
|
/**
|
|
|
|
* This is triggered twice. Once by the server, and once by a remote client disconnecting
|
|
|
|
*
|
|
|
|
* @param userId
|
|
|
|
*/
|
2020-09-18 13:57:38 +02:00
|
|
|
private closeConnection(userId : number) {
|
2020-05-02 20:46:02 +02:00
|
|
|
try {
|
2020-08-20 16:56:10 +02:00
|
|
|
//mediaManager.removeActiveVideo(userId);
|
2020-06-09 23:13:26 +02:00
|
|
|
const peer = this.PeerConnectionArray.get(userId);
|
2020-06-05 13:07:18 +02:00
|
|
|
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;
|
|
|
|
}
|
2020-08-20 22:23:22 +02:00
|
|
|
peer.destroy();
|
2020-06-05 13:07:18 +02:00
|
|
|
// 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);
|
2020-06-14 14:47:16 +02:00
|
|
|
this.PeerConnectionArray.delete(userId);
|
|
|
|
this.closeScreenSharingConnection(userId);
|
2020-06-05 13:07:18 +02:00
|
|
|
//console.log('Nb users in peerConnectionArray '+this.PeerConnectionArray.size);
|
2020-08-17 16:18:39 +02:00
|
|
|
for (const peerConnectionListener of this.peerConnectionListeners) {
|
2020-08-17 16:12:53 +02:00
|
|
|
peerConnectionListener.onDisconnect(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-06-11 23:18:06 +02:00
|
|
|
/**
|
|
|
|
* This is triggered twice. Once by the server, and once by a remote client disconnecting
|
|
|
|
*
|
|
|
|
* @param userId
|
|
|
|
*/
|
2020-09-18 13:57:38 +02:00
|
|
|
private closeScreenSharingConnection(userId : number) {
|
2020-06-11 23:18:06 +02:00
|
|
|
try {
|
2020-09-18 13:57:38 +02:00
|
|
|
mediaManager.removeActiveScreenSharingVideo("" + userId);
|
2020-08-18 14:59:50 +02:00
|
|
|
const peer = this.PeerScreenSharingConnectionArray.get(userId);
|
2020-06-11 23:18:06 +02:00
|
|
|
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);
|
2020-08-20 22:23:22 +02:00
|
|
|
peer.destroy();
|
2020-06-11 23:18:06 +02:00
|
|
|
this.PeerScreenSharingConnectionArray.delete(userId)
|
|
|
|
//console.log('Nb users in peerConnectionArray '+this.PeerConnectionArray.size);
|
|
|
|
} catch (err) {
|
|
|
|
console.error("closeConnection", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-22 15:00:23 +02:00
|
|
|
public closeAllConnections() {
|
|
|
|
for (const userId of this.PeerConnectionArray.keys()) {
|
|
|
|
this.closeConnection(userId);
|
|
|
|
}
|
2020-08-20 16:56:10 +02:00
|
|
|
|
|
|
|
for (const userId of this.PeerScreenSharingConnectionArray.keys()) {
|
|
|
|
this.closeScreenSharingConnection(userId);
|
|
|
|
}
|
2020-06-22 15:00:23 +02:00
|
|
|
}
|
|
|
|
|
2020-06-23 14:56:57 +02:00
|
|
|
/**
|
|
|
|
* Unregisters any held event handler.
|
|
|
|
*/
|
|
|
|
public unregister() {
|
2020-08-20 00:05:00 +02:00
|
|
|
mediaManager.removeUpdateLocalStreamEventListener(this.sendLocalVideoStreamCallback);
|
2020-06-23 14:56:57 +02:00
|
|
|
}
|
|
|
|
|
2020-06-19 16:36:40 +02:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
2020-08-20 16:56:10 +02:00
|
|
|
private receiveWebrtcSignal(data: WebRtcSignalReceivedMessageInterface) {
|
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-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-08-20 16:56:10 +02:00
|
|
|
private receiveWebrtcScreenSharingSignal(data: WebRtcSignalReceivedMessageInterface) {
|
2020-06-11 23:18:06 +02:00
|
|
|
console.log("receiveWebrtcScreenSharingSignal", data);
|
|
|
|
try {
|
|
|
|
//if offer type, create peer connection
|
|
|
|
if(data.signal.type === "offer"){
|
2020-08-20 16:56:10 +02:00
|
|
|
this.createPeerScreenSharingConnection(data);
|
2020-06-11 23:18:06 +02:00
|
|
|
}
|
2020-08-18 14:59:50 +02:00
|
|
|
const peer = this.PeerScreenSharingConnectionArray.get(data.userId);
|
2020-06-11 23:18:06 +02:00
|
|
|
if (peer !== undefined) {
|
|
|
|
peer.signal(data.signal);
|
|
|
|
} else {
|
2020-06-14 14:47:16 +02:00
|
|
|
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
|
|
|
*/
|
2020-09-18 13:57:38 +02:00
|
|
|
private pushVideoToRemoteUser(userId : number) {
|
2020-05-02 20:46:02 +02:00
|
|
|
try {
|
2020-08-18 14:59:50 +02:00
|
|
|
const PeerConnection = this.PeerConnectionArray.get(userId);
|
2020-06-08 22:52:25 +02:00
|
|
|
if (!PeerConnection) {
|
2020-06-06 17:03:10 +02:00
|
|
|
throw new Error('While adding media, cannot find user with ID ' + userId);
|
2020-06-03 22:57:00 +02:00
|
|
|
}
|
2020-08-18 14:59:50 +02:00
|
|
|
const 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
|
|
|
|
2020-06-08 09:20:36 +02:00
|
|
|
if(!localStream){
|
|
|
|
return;
|
|
|
|
}
|
2020-08-20 00:05:00 +02:00
|
|
|
|
|
|
|
for (const track of localStream.getTracks()) {
|
|
|
|
PeerConnection.addTrack(track, localStream);
|
2020-06-03 22:57:00 +02:00
|
|
|
}
|
2020-05-02 20:46:02 +02:00
|
|
|
}catch (e) {
|
2020-08-20 00:05:00 +02:00
|
|
|
console.error(`pushVideoToRemoteUser => ${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
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
private pushScreenSharingToRemoteUser(userId : number) {
|
2020-08-18 14:59:50 +02:00
|
|
|
const PeerConnection = this.PeerScreenSharingConnectionArray.get(userId);
|
2020-06-11 23:18:06 +02:00
|
|
|
if (!PeerConnection) {
|
2020-08-20 00:05:00 +02:00
|
|
|
throw new Error('While pushing screen sharing, cannot find user with ID ' + userId);
|
2020-06-11 23:18:06 +02:00
|
|
|
}
|
2020-08-18 14:59:50 +02:00
|
|
|
const localScreenCapture: MediaStream | null = mediaManager.localScreenCapture;
|
2020-06-11 23:18:06 +02:00
|
|
|
if(!localScreenCapture){
|
|
|
|
return;
|
|
|
|
}
|
2020-08-20 00:05:00 +02:00
|
|
|
|
|
|
|
for (const track of localScreenCapture.getTracks()) {
|
2020-06-11 23:18:06 +02:00
|
|
|
PeerConnection.addTrack(track, localScreenCapture);
|
2020-08-20 00:05:00 +02:00
|
|
|
}
|
2020-06-11 23:18:06 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-08-20 00:05:00 +02:00
|
|
|
public sendLocalVideoStream(){
|
2020-08-31 15:21:05 +02:00
|
|
|
for (const user of this.Users) {
|
2020-08-20 00:05:00 +02:00
|
|
|
this.pushVideoToRemoteUser(user.userId);
|
2020-08-31 15:21:05 +02:00
|
|
|
}
|
2020-05-03 17:19:42 +02:00
|
|
|
}
|
2020-06-08 09:20:36 +02:00
|
|
|
|
2020-08-20 00:05:00 +02:00
|
|
|
/**
|
|
|
|
* Triggered locally when clicking on the screen sharing button
|
|
|
|
*/
|
|
|
|
public sendLocalScreenSharingStream() {
|
2020-08-21 22:53:17 +02:00
|
|
|
if (!mediaManager.localScreenCapture) {
|
|
|
|
console.error('Could not find localScreenCapture to share')
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const user of this.Users) {
|
|
|
|
this.sendLocalScreenSharingStreamToUser(user.userId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Triggered locally when clicking on the screen sharing button
|
|
|
|
*/
|
|
|
|
public stopLocalScreenSharingStream(stream: MediaStream) {
|
|
|
|
for (const user of this.Users) {
|
|
|
|
this.stopLocalScreenSharingStreamToUser(user.userId, stream);
|
2020-06-08 09:20:36 +02:00
|
|
|
}
|
|
|
|
}
|
2020-08-20 00:05:00 +02:00
|
|
|
|
2020-10-13 19:56:42 +02:00
|
|
|
/**
|
|
|
|
* Triggered locally when clicking on the report button
|
|
|
|
*/
|
|
|
|
public reportUser(userId: number, message: string) {
|
|
|
|
this.Connection.emitReportPlayerMessage(userId, message)
|
|
|
|
}
|
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
private sendLocalScreenSharingStreamToUser(userId: number): void {
|
2020-08-20 00:05:00 +02:00
|
|
|
// If a connection already exists with user (because it is already sharing a screen with us... let's use this connection)
|
|
|
|
if (this.PeerScreenSharingConnectionArray.has(userId)) {
|
|
|
|
this.pushScreenSharingToRemoteUser(userId);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const screenSharingUser: UserSimplePeerInterface = {
|
|
|
|
userId,
|
|
|
|
initiator: true
|
|
|
|
};
|
2020-08-20 16:56:10 +02:00
|
|
|
const PeerConnectionScreenSharing = this.createPeerScreenSharingConnection(screenSharingUser);
|
2020-08-20 00:05:00 +02:00
|
|
|
if (!PeerConnectionScreenSharing) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
private stopLocalScreenSharingStreamToUser(userId: number, stream: MediaStream): void {
|
2020-08-20 00:05:00 +02:00
|
|
|
const PeerConnectionScreenSharing = this.PeerScreenSharingConnectionArray.get(userId);
|
|
|
|
if (!PeerConnectionScreenSharing) {
|
|
|
|
throw new Error('Weird, screen sharing connection to user ' + userId + 'not found')
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log("updatedScreenSharing => destroy", PeerConnectionScreenSharing);
|
2020-08-21 22:53:17 +02:00
|
|
|
|
|
|
|
// Stop sending stream and close peer connection if peer is not sending stream too
|
|
|
|
PeerConnectionScreenSharing.stopPushingScreenSharingToRemoteUser(stream);
|
|
|
|
|
|
|
|
if (!PeerConnectionScreenSharing.isReceivingScreenSharingStream()) {
|
|
|
|
PeerConnectionScreenSharing.destroy();
|
|
|
|
|
|
|
|
this.PeerScreenSharingConnectionArray.delete(userId);
|
|
|
|
}
|
2020-08-20 00:05:00 +02:00
|
|
|
}
|
2020-05-14 22:00:31 +02:00
|
|
|
}
|