Fix webrtc multi
This commit is contained in:
parent
aff77fe074
commit
fdb40ec3e2
@ -12,11 +12,13 @@ import {Group} from "_Model/Group";
|
|||||||
|
|
||||||
enum SockerIoEvent {
|
enum SockerIoEvent {
|
||||||
CONNECTION = "connection",
|
CONNECTION = "connection",
|
||||||
DISCONNECTION = "disconnect",
|
DISCONNECT = "disconnect",
|
||||||
JOIN_ROOM = "join-room",
|
JOIN_ROOM = "join-room",
|
||||||
USER_POSITION = "user-position",
|
USER_POSITION = "user-position",
|
||||||
WEBRTC_SIGNAL = "webrtc-signal",
|
WEBRTC_SIGNAL = "webrtc-signal",
|
||||||
|
WEBRTC_OFFER = "webrtc-offer",
|
||||||
WEBRTC_START = "webrtc-start",
|
WEBRTC_START = "webrtc-start",
|
||||||
|
WEBRTC_DISCONNECT = "webrtc-disconect",
|
||||||
MESSAGE_ERROR = "message-error",
|
MESSAGE_ERROR = "message-error",
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -77,9 +79,7 @@ export class IoSocketController{
|
|||||||
this.saveUserInformation((socket as ExSocketInterface), messageUserPosition);
|
this.saveUserInformation((socket as ExSocketInterface), messageUserPosition);
|
||||||
|
|
||||||
//add function to refresh position user in real time.
|
//add function to refresh position user in real time.
|
||||||
let rooms = (this.Io.sockets.adapter.rooms as ExtRoomsInterface);
|
this.refreshUserPosition();
|
||||||
rooms.refreshUserPosition = RefreshUserPositionFunction;
|
|
||||||
rooms.refreshUserPosition(rooms, this.Io);
|
|
||||||
|
|
||||||
socket.to(messageUserPosition.roomId).emit(SockerIoEvent.JOIN_ROOM, messageUserPosition.toString());
|
socket.to(messageUserPosition.roomId).emit(SockerIoEvent.JOIN_ROOM, messageUserPosition.toString());
|
||||||
});
|
});
|
||||||
@ -97,30 +97,41 @@ export class IoSocketController{
|
|||||||
this.saveUserInformation((socket as ExSocketInterface), messageUserPosition);
|
this.saveUserInformation((socket as ExSocketInterface), messageUserPosition);
|
||||||
|
|
||||||
//refresh position of all user in all rooms in real time
|
//refresh position of all user in all rooms in real time
|
||||||
let rooms = (this.Io.sockets.adapter.rooms as ExtRoomsInterface);
|
this.refreshUserPosition();
|
||||||
if(!rooms.refreshUserPosition){
|
|
||||||
rooms.refreshUserPosition = RefreshUserPositionFunction;
|
|
||||||
}
|
|
||||||
rooms.refreshUserPosition(rooms, this.Io);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
socket.on(SockerIoEvent.WEBRTC_SIGNAL, (message : string) => {
|
socket.on(SockerIoEvent.WEBRTC_SIGNAL, (message : string) => {
|
||||||
let data : any = JSON.parse(message);
|
let data : any = JSON.parse(message);
|
||||||
|
|
||||||
//send only at user
|
//send only at user
|
||||||
let clients: Array<any> = Object.values(this.Io.sockets.sockets);
|
let client = this.searchClientById(data.receiverId);
|
||||||
for(let i = 0; i < clients.length; i++){
|
if(!client){
|
||||||
let client : ExSocketInterface = clients[i];
|
console.error("client doesn't exist for ", data.receiverId);
|
||||||
if(client.userId !== data.receiverId){
|
return;
|
||||||
continue
|
|
||||||
}
|
|
||||||
client.emit(SockerIoEvent.WEBRTC_SIGNAL, message);
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
return client.emit(SockerIoEvent.WEBRTC_SIGNAL, message);
|
||||||
});
|
});
|
||||||
|
|
||||||
socket.on(SockerIoEvent.DISCONNECTION, (reason : string) => {
|
socket.on(SockerIoEvent.WEBRTC_OFFER, (message : string) => {
|
||||||
|
let data : any = JSON.parse(message);
|
||||||
|
|
||||||
|
//send only at user
|
||||||
|
let client = this.searchClientById(data.receiverId);
|
||||||
|
if(!client){
|
||||||
|
console.error("client doesn't exist for ", data.receiverId);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
client.emit(SockerIoEvent.WEBRTC_OFFER, message);
|
||||||
|
});
|
||||||
|
|
||||||
|
socket.on(SockerIoEvent.DISCONNECT, () => {
|
||||||
let Client = (socket as ExSocketInterface);
|
let Client = (socket as ExSocketInterface);
|
||||||
|
socket.broadcast.emit(SockerIoEvent.WEBRTC_DISCONNECT, JSON.stringify({
|
||||||
|
userId: Client.userId
|
||||||
|
}));
|
||||||
|
|
||||||
|
//refresh position of all user in all rooms in real time
|
||||||
|
this.refreshUserPosition();
|
||||||
|
|
||||||
//leave group of user
|
//leave group of user
|
||||||
this.World.leave(Client);
|
this.World.leave(Client);
|
||||||
|
|
||||||
@ -138,6 +149,21 @@ export class IoSocketController{
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param userId
|
||||||
|
*/
|
||||||
|
searchClientById(userId : string) : ExSocketInterface | null{
|
||||||
|
let clients: Array<any> = Object.values(this.Io.sockets.sockets);
|
||||||
|
for(let i = 0; i < clients.length; i++){
|
||||||
|
let client : ExSocketInterface = clients[i];
|
||||||
|
if(client.userId !== userId){
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
return client;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param socket
|
* @param socket
|
||||||
@ -181,6 +207,15 @@ export class IoSocketController{
|
|||||||
socket.userId = message.userId;
|
socket.userId = message.userId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
refreshUserPosition(){
|
||||||
|
//refresh position of all user in all rooms in real time
|
||||||
|
let rooms = (this.Io.sockets.adapter.rooms as ExtRoomsInterface);
|
||||||
|
if(!rooms.refreshUserPosition){
|
||||||
|
rooms.refreshUserPosition = RefreshUserPositionFunction;
|
||||||
|
}
|
||||||
|
rooms.refreshUserPosition(rooms, this.Io);
|
||||||
|
}
|
||||||
|
|
||||||
//Hydrate and manage error
|
//Hydrate and manage error
|
||||||
hydrateMessageReceive(message : string) : MessageUserPosition | Error{
|
hydrateMessageReceive(message : string) : MessageUserPosition | Error{
|
||||||
try {
|
try {
|
||||||
|
1
front/dist/resources/style/style.css
vendored
1
front/dist/resources/style/style.css
vendored
@ -16,7 +16,6 @@
|
|||||||
top: 10px;
|
top: 10px;
|
||||||
right: 10px;
|
right: 10px;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
background-color: white;
|
|
||||||
}
|
}
|
||||||
.activeCam video#myCamVideo{
|
.activeCam video#myCamVideo{
|
||||||
width: 200px;
|
width: 200px;
|
||||||
|
@ -7,9 +7,11 @@ import {API_URL, ROOM} from "./Enum/EnvironmentVariable";
|
|||||||
enum EventMessage{
|
enum EventMessage{
|
||||||
WEBRTC_SIGNAL = "webrtc-signal",
|
WEBRTC_SIGNAL = "webrtc-signal",
|
||||||
WEBRTC_START = "webrtc-start",
|
WEBRTC_START = "webrtc-start",
|
||||||
|
WEBRTC_JOIN_ROOM = "webrtc-join-room",
|
||||||
JOIN_ROOM = "join-room",
|
JOIN_ROOM = "join-room",
|
||||||
USER_POSITION = "user-position",
|
USER_POSITION = "user-position",
|
||||||
MESSAGE_ERROR = "message-error"
|
MESSAGE_ERROR = "message-error",
|
||||||
|
WEBRTC_DISCONNECT = "webrtc-disconect"
|
||||||
}
|
}
|
||||||
|
|
||||||
class Message {
|
class Message {
|
||||||
@ -131,6 +133,8 @@ export interface ConnexionInterface {
|
|||||||
receiveWebrtcSignal(callBack: Function): void;
|
receiveWebrtcSignal(callBack: Function): void;
|
||||||
|
|
||||||
receiveWebrtcStart(callBack: Function): void;
|
receiveWebrtcStart(callBack: Function): void;
|
||||||
|
|
||||||
|
disconnectMessage(callBack: Function): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Connexion implements ConnexionInterface {
|
export class Connexion implements ConnexionInterface {
|
||||||
@ -227,7 +231,7 @@ export class Connexion implements ConnexionInterface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
sendWebrtcSignal(signal: any, roomId: string, userId? : string, receiverId? : string) {
|
sendWebrtcSignal(signal: any, roomId: string, userId? : string, receiverId? : string) {
|
||||||
this.socket.emit(EventMessage.WEBRTC_SIGNAL, JSON.stringify({
|
return this.socket.emit(EventMessage.WEBRTC_SIGNAL, JSON.stringify({
|
||||||
userId: userId ? userId : this.userId,
|
userId: userId ? userId : this.userId,
|
||||||
receiverId: receiverId ? receiverId : this.userId,
|
receiverId: receiverId ? receiverId : this.userId,
|
||||||
roomId: roomId,
|
roomId: roomId,
|
||||||
@ -240,7 +244,7 @@ export class Connexion implements ConnexionInterface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
receiveWebrtcSignal(callback: Function) {
|
receiveWebrtcSignal(callback: Function) {
|
||||||
this.socket.on(EventMessage.WEBRTC_SIGNAL, callback);
|
return this.socket.on(EventMessage.WEBRTC_SIGNAL, callback);
|
||||||
}
|
}
|
||||||
|
|
||||||
errorMessage(): void {
|
errorMessage(): void {
|
||||||
@ -248,4 +252,8 @@ export class Connexion implements ConnexionInterface {
|
|||||||
console.error(EventMessage.MESSAGE_ERROR, message);
|
console.error(EventMessage.MESSAGE_ERROR, message);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
disconnectMessage(callback: Function): void {
|
||||||
|
this.socket.on(EventMessage.WEBRTC_DISCONNECT, callback);
|
||||||
|
}
|
||||||
}
|
}
|
@ -3,6 +3,8 @@ import {TextField} from "../Components/TextField";
|
|||||||
import {TextInput} from "../Components/TextInput";
|
import {TextInput} from "../Components/TextInput";
|
||||||
import {ClickButton} from "../Components/ClickButton";
|
import {ClickButton} from "../Components/ClickButton";
|
||||||
import {GameSceneName} from "../Game/GameScene";
|
import {GameSceneName} from "../Game/GameScene";
|
||||||
|
import {SimplePeer} from "../../WebRtc/SimplePeer";
|
||||||
|
import {Connexion} from "../../Connexion";
|
||||||
|
|
||||||
//todo: put this constants in a dedicated file
|
//todo: put this constants in a dedicated file
|
||||||
export const LoginSceneName = "LoginScene";
|
export const LoginSceneName = "LoginScene";
|
||||||
|
@ -6,7 +6,7 @@ export class MediaManager {
|
|||||||
cinema: any = null;
|
cinema: any = null;
|
||||||
microphoneClose: any = null;
|
microphoneClose: any = null;
|
||||||
microphone: any = null;
|
microphone: any = null;
|
||||||
constraintsMedia = {audio: false, video: true};
|
constraintsMedia = {audio: true, video: true};
|
||||||
getCameraPromise : Promise<any> = null;
|
getCameraPromise : Promise<any> = null;
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
@ -37,9 +37,6 @@ export class MediaManager {
|
|||||||
this.disabledCamera();
|
this.disabledCamera();
|
||||||
//update tracking
|
//update tracking
|
||||||
});
|
});
|
||||||
|
|
||||||
this.enabledCamera();
|
|
||||||
this.enabledMicrophone();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
activeVisio(){
|
activeVisio(){
|
||||||
@ -127,6 +124,15 @@ export class MediaManager {
|
|||||||
this.remoteVideo[(userId as any)] = document.getElementById(userId);
|
this.remoteVideo[(userId as any)] = document.getElementById(userId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param userId
|
||||||
|
* @param stream
|
||||||
|
*/
|
||||||
|
addStreamRemoteVideo(userId : string, stream : MediaStream){
|
||||||
|
this.remoteVideo[(userId as any)].srcObject = stream;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param userId
|
* @param userId
|
||||||
|
@ -4,24 +4,22 @@ let Peer = require('simple-peer');
|
|||||||
|
|
||||||
export interface SimplePeerInterface {
|
export interface SimplePeerInterface {
|
||||||
}
|
}
|
||||||
enum PeerConnexionStatus{
|
|
||||||
DISABLED = 1,
|
|
||||||
ACTIVATED = 2
|
|
||||||
}
|
|
||||||
export class SimplePeer {
|
export class SimplePeer {
|
||||||
private Connexion: ConnexionInterface;
|
private Connexion: ConnexionInterface;
|
||||||
private MediaManager: MediaManager;
|
|
||||||
private WebRtcRoomId: string;
|
private WebRtcRoomId: string;
|
||||||
private Users: Array<any>;
|
private Users: Array<any>;
|
||||||
|
|
||||||
private PeerConnexionArray: Array<any> = new Array<any>();
|
private MediaManager: MediaManager;
|
||||||
|
|
||||||
private PeerConnexionStatus : number = PeerConnexionStatus.DISABLED;
|
private PeerConnexionArray: Array<any> = new Array<any>();
|
||||||
|
|
||||||
constructor(Connexion: ConnexionInterface, WebRtcRoomId: string = "test-webrtc") {
|
constructor(Connexion: ConnexionInterface, WebRtcRoomId: string = "test-webrtc") {
|
||||||
this.Connexion = Connexion;
|
this.Connexion = Connexion;
|
||||||
this.WebRtcRoomId = WebRtcRoomId;
|
this.WebRtcRoomId = WebRtcRoomId;
|
||||||
this.MediaManager = new MediaManager();
|
this.MediaManager = new MediaManager();
|
||||||
|
this.PeerConnexionArray = new Array<any>();
|
||||||
|
|
||||||
this.initialise();
|
this.initialise();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -30,41 +28,28 @@ export class SimplePeer {
|
|||||||
*/
|
*/
|
||||||
private initialise() {
|
private initialise() {
|
||||||
|
|
||||||
//receive message start
|
|
||||||
this.Connexion.receiveWebrtcStart((message: string) => {
|
|
||||||
this.receiveWebrtcStart(message);
|
|
||||||
});
|
|
||||||
|
|
||||||
//when button to call is clicked, start video
|
|
||||||
/*this.MediaManager.getElementActivePhone().addEventListener("click", () => {
|
|
||||||
this.startWebRtc();
|
|
||||||
this.disablePhone();
|
|
||||||
});*/
|
|
||||||
|
|
||||||
return this.MediaManager.getCamera().then((stream: MediaStream) => {
|
|
||||||
this.MediaManager.activeVisio();
|
|
||||||
this.MediaManager.localStream = stream;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* server has two person connected, start the meet
|
|
||||||
*/
|
|
||||||
private startWebRtc() {
|
|
||||||
//create pear connexion
|
|
||||||
this.createPeerConnexion();
|
|
||||||
|
|
||||||
//receive signal by gemer
|
//receive signal by gemer
|
||||||
this.Connexion.receiveWebrtcSignal((message: string) => {
|
this.Connexion.receiveWebrtcSignal((message: string) => {
|
||||||
this.receiveWebrtcSignal(message);
|
this.receiveWebrtcSignal(message);
|
||||||
});
|
});
|
||||||
|
|
||||||
// add media or new media for all peer connexion
|
this.MediaManager.activeVisio();
|
||||||
this.Users.forEach((user: any) => {
|
this.MediaManager.getCamera().then(() => {
|
||||||
this.addMedia(user.userId);
|
|
||||||
|
//receive message start
|
||||||
|
this.Connexion.receiveWebrtcStart((message: string) => {
|
||||||
|
this.receiveWebrtcStart(message);
|
||||||
});
|
});
|
||||||
|
|
||||||
//change status to manage other user
|
}).catch((err) => {
|
||||||
this.PeerConnexionStatus = PeerConnexionStatus.ACTIVATED;
|
console.error("err", err);
|
||||||
|
});
|
||||||
|
|
||||||
|
//receive signal by gemer
|
||||||
|
this.Connexion.disconnectMessage((message: string) => {
|
||||||
|
let data = JSON.parse(message);
|
||||||
|
this.closeConnexion(data.userId);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -76,31 +61,53 @@ export class SimplePeer {
|
|||||||
this.WebRtcRoomId = data.roomId;
|
this.WebRtcRoomId = data.roomId;
|
||||||
this.Users = data.clients;
|
this.Users = data.clients;
|
||||||
|
|
||||||
console.log("receiveWebrtcStart", this.Users);
|
|
||||||
|
|
||||||
//start connexion
|
//start connexion
|
||||||
this.startWebRtc();
|
this.startWebRtc();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
private createPeerConnexion() {
|
* server has two person connected, start the meet
|
||||||
|
*/
|
||||||
|
private startWebRtc() {
|
||||||
this.Users.forEach((user: any) => {
|
this.Users.forEach((user: any) => {
|
||||||
|
//if it's not an initiator, peer connexion will be created when gamer will receive offer signal
|
||||||
|
if(!user.initiator){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.createPeerConnexion(user);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* create peer connexion to bind users
|
||||||
|
*/
|
||||||
|
private createPeerConnexion(user : any) {
|
||||||
if(this.PeerConnexionArray[user.userId]) {
|
if(this.PeerConnexionArray[user.userId]) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.MediaManager.removeActiveVideo(user.userId);
|
||||||
this.MediaManager.addActiveVideo(user.userId);
|
this.MediaManager.addActiveVideo(user.userId);
|
||||||
|
|
||||||
console.info("createPeerConnexion => create peerConexion", user);
|
|
||||||
this.PeerConnexionArray[user.userId] = new Peer({
|
this.PeerConnexionArray[user.userId] = new Peer({
|
||||||
initiator: user.initiator,
|
initiator: user.initiator ? user.initiator : false,
|
||||||
config: { iceServers: [{ urls: 'stun:stun.l.google.com:19302' }, { urls: 'stun:global.stun.twilio.com:3478?transport=udp' }] }
|
reconnectTimer: 10000,
|
||||||
|
config: {
|
||||||
|
iceServers: [
|
||||||
|
{
|
||||||
|
urls: 'stun:stun.l.google.com:19302'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
urls: 'turn:numb.viagenie.ca',
|
||||||
|
username: 'g.parant@thecodingmachine.com',
|
||||||
|
credential: 'Muzuvo$6'
|
||||||
|
},
|
||||||
|
]
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
//add lof info PeerConnexionArray
|
//start listen signal for the peer connexion
|
||||||
//this.PeerConnexionArray[user.userId]._debug = console.info;
|
|
||||||
|
|
||||||
this.PeerConnexionArray[user.userId].on('signal', (data: any) => {
|
this.PeerConnexionArray[user.userId].on('signal', (data: any) => {
|
||||||
console.info("createPeerConnexion => sendWebrtcSignal : "+user.userId, data);
|
|
||||||
this.sendWebrtcSignal(data, user.userId);
|
this.sendWebrtcSignal(data, user.userId);
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -108,19 +115,38 @@ export class SimplePeer {
|
|||||||
this.stream(user.userId, stream);
|
this.stream(user.userId, stream);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.PeerConnexionArray[user.userId].on('track', (track: MediaStreamTrack, stream: MediaStream) => {
|
||||||
|
this.stream(user.userId, stream);
|
||||||
|
});
|
||||||
|
|
||||||
this.PeerConnexionArray[user.userId].on('close', () => {
|
this.PeerConnexionArray[user.userId].on('close', () => {
|
||||||
console.info("createPeerConnexion => close", user.userId);
|
|
||||||
this.closeConnexion(user.userId);
|
this.closeConnexion(user.userId);
|
||||||
});
|
});
|
||||||
|
|
||||||
this.addMedia(user.userId);
|
this.PeerConnexionArray[user.userId].on('error', (err: any) => {
|
||||||
|
console.error(`error => ${user.userId} => ${err.code}`, err);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.PeerConnexionArray[user.userId].on('connect', () => {
|
||||||
|
console.info(`connect => ${user.userId}`);
|
||||||
|
});
|
||||||
|
|
||||||
|
this.addMedia(user.userId);
|
||||||
}
|
}
|
||||||
|
|
||||||
private closeConnexion(userId : string) {
|
private closeConnexion(userId : string) {
|
||||||
|
try {
|
||||||
|
this.MediaManager.removeActiveVideo(userId);
|
||||||
|
if (!this.PeerConnexionArray[(userId as any)]) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
this.PeerConnexionArray[userId] = null;
|
this.PeerConnexionArray[(userId as any)].destroy();
|
||||||
this.MediaManager.removeActiveVideo(userId)
|
this.PeerConnexionArray[(userId as any)] = null;
|
||||||
|
delete this.PeerConnexionArray[(userId as any)];
|
||||||
|
} catch (err) {
|
||||||
|
console.error("closeConnexion", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -129,7 +155,11 @@ export class SimplePeer {
|
|||||||
* @param data
|
* @param data
|
||||||
*/
|
*/
|
||||||
private sendWebrtcSignal(data: any, userId : string) {
|
private sendWebrtcSignal(data: any, userId : string) {
|
||||||
|
try {
|
||||||
this.Connexion.sendWebrtcSignal(data, this.WebRtcRoomId, null, userId);
|
this.Connexion.sendWebrtcSignal(data, this.WebRtcRoomId, null, userId);
|
||||||
|
}catch (e) {
|
||||||
|
console.error(`sendWebrtcSignal => ${userId}`, e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -138,12 +168,15 @@ export class SimplePeer {
|
|||||||
*/
|
*/
|
||||||
private receiveWebrtcSignal(message: string) {
|
private receiveWebrtcSignal(message: string) {
|
||||||
let data = JSON.parse(message);
|
let data = JSON.parse(message);
|
||||||
console.log("receiveWebrtcSignal", data.userId);
|
try {
|
||||||
console.log("receiveWebrtcSignal => data", data);
|
//if offer type, create peer connexion
|
||||||
if(!this.PeerConnexionArray[data.userId]){
|
if(data.signal.type === "offer"){
|
||||||
return;
|
this.createPeerConnexion(data);
|
||||||
}
|
}
|
||||||
this.PeerConnexionArray[data.userId].signal(data.signal);
|
this.PeerConnexionArray[data.userId].signal(data.signal);
|
||||||
|
} catch (e) {
|
||||||
|
console.error(`receiveWebrtcSignal => ${data.userId}`, e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -152,7 +185,7 @@ export class SimplePeer {
|
|||||||
* @param stream
|
* @param stream
|
||||||
*/
|
*/
|
||||||
private stream(userId : any, stream: MediaStream) {
|
private stream(userId : any, stream: MediaStream) {
|
||||||
this.MediaManager.remoteVideo[userId].srcObject = stream;
|
this.MediaManager.addStreamRemoteVideo(userId, stream);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -160,18 +193,13 @@ export class SimplePeer {
|
|||||||
* @param userId
|
* @param userId
|
||||||
*/
|
*/
|
||||||
private addMedia (userId : any = null) {
|
private addMedia (userId : any = null) {
|
||||||
if (!this.MediaManager.localStream || !this.PeerConnexionArray[userId]) {
|
try {
|
||||||
return;
|
let transceiver : any = null;
|
||||||
}
|
this.MediaManager.localStream.getTracks().forEach(
|
||||||
this.PeerConnexionArray[userId].addStream(this.MediaManager.localStream) // <- add streams to peer dynamically
|
transceiver = (track: MediaStreamTrack) => this.PeerConnexionArray[userId].addTrack(track, this.MediaManager.localStream)
|
||||||
return;
|
)
|
||||||
}
|
}catch (e) {
|
||||||
|
console.error(`addMedia => addMedia => ${userId}`, e);
|
||||||
private activePhone(){
|
}
|
||||||
this.MediaManager.activePhoneOpen();
|
|
||||||
}
|
|
||||||
|
|
||||||
private disablePhone(){
|
|
||||||
this.MediaManager.disablePhoneOpen();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user