2020-04-04 04:08:12 +02:00
|
|
|
import socketIO = require('socket.io');
|
|
|
|
import {Socket} from "socket.io";
|
|
|
|
import * as http from "http";
|
2020-04-04 17:22:02 +02:00
|
|
|
import {MessageUserPosition} from "../Model/Websocket/MessageUserPosition"; //TODO fix import by "_Model/.."
|
|
|
|
import {ExSocketInterface} from "../Model/Websocket/ExSocketInterface"; //TODO fix import by "_Model/.."
|
2020-04-04 14:05:18 +02:00
|
|
|
import Jwt, {JsonWebTokenError} from "jsonwebtoken";
|
2020-05-03 16:56:19 +02:00
|
|
|
import {SECRET_KEY, MINIMUM_DISTANCE, GROUP_RADIUS} from "../Enum/EnvironmentVariable"; //TODO fix import by "_Enum/..."
|
2020-05-10 19:45:17 +02:00
|
|
|
import {ExtRooms, RefreshUserPositionFunction} from "../Model/Websocket/ExtRooms";
|
2020-04-27 00:44:25 +02:00
|
|
|
import {ExtRoomsInterface} from "../Model/Websocket/ExtRoomsInterface";
|
|
|
|
import {World} from "../Model/World";
|
2020-05-01 21:15:00 +02:00
|
|
|
import {Group} from "_Model/Group";
|
2020-05-08 00:35:36 +02:00
|
|
|
import {UserInterface} from "_Model/UserInterface";
|
2020-04-29 01:40:32 +02:00
|
|
|
|
|
|
|
enum SockerIoEvent {
|
|
|
|
CONNECTION = "connection",
|
2020-05-02 20:46:02 +02:00
|
|
|
DISCONNECT = "disconnect",
|
2020-04-29 01:40:32 +02:00
|
|
|
JOIN_ROOM = "join-room",
|
|
|
|
USER_POSITION = "user-position",
|
|
|
|
WEBRTC_SIGNAL = "webrtc-signal",
|
2020-05-02 20:46:02 +02:00
|
|
|
WEBRTC_OFFER = "webrtc-offer",
|
2020-04-29 01:40:32 +02:00
|
|
|
WEBRTC_START = "webrtc-start",
|
2020-05-02 20:46:02 +02:00
|
|
|
WEBRTC_DISCONNECT = "webrtc-disconect",
|
2020-04-29 01:40:32 +02:00
|
|
|
MESSAGE_ERROR = "message-error",
|
2020-05-08 00:35:36 +02:00
|
|
|
GROUP_CREATE_UPDATE = "group-create-update",
|
|
|
|
GROUP_DELETE = "group-delete",
|
2020-04-29 01:40:32 +02:00
|
|
|
}
|
2020-04-04 04:08:12 +02:00
|
|
|
|
2020-05-03 16:28:18 +02:00
|
|
|
export class IoSocketController {
|
2020-04-04 04:08:12 +02:00
|
|
|
Io: socketIO.Server;
|
2020-05-10 19:45:17 +02:00
|
|
|
Worlds: Map<string, World> = new Map<string, World>();
|
2020-05-03 16:28:18 +02:00
|
|
|
|
|
|
|
constructor(server: http.Server) {
|
2020-04-04 04:08:12 +02:00
|
|
|
this.Io = socketIO(server);
|
2020-04-04 14:05:18 +02:00
|
|
|
|
2020-04-04 22:35:20 +02:00
|
|
|
// Authentication with token. it will be decoded and stored in the socket.
|
2020-05-03 16:28:18 +02:00
|
|
|
this.Io.use((socket: Socket, next) => {
|
2020-04-04 14:05:18 +02:00
|
|
|
if (!socket.handshake.query || !socket.handshake.query.token) {
|
|
|
|
return next(new Error('Authentication error'));
|
|
|
|
}
|
|
|
|
Jwt.verify(socket.handshake.query.token, SECRET_KEY, (err: JsonWebTokenError, tokenDecoded: object) => {
|
|
|
|
if (err) {
|
|
|
|
return next(new Error('Authentication error'));
|
|
|
|
}
|
|
|
|
(socket as ExSocketInterface).token = tokenDecoded;
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-04-04 04:08:12 +02:00
|
|
|
this.ioConnection();
|
2020-04-04 19:25:08 +02:00
|
|
|
this.shareUsersPosition();
|
2020-05-08 00:35:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private sendUpdateGroupEvent(group: Group): void {
|
|
|
|
// Let's get the room of the group. To do this, let's get anyone in the group and find its room.
|
|
|
|
// Note: this is suboptimal
|
|
|
|
let userId = group.getUsers()[0].id;
|
|
|
|
let client: ExSocketInterface|null = this.searchClientById(userId);
|
|
|
|
if (client === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let roomId = client.roomId;
|
|
|
|
this.Io.in(roomId).emit(SockerIoEvent.GROUP_CREATE_UPDATE, {
|
|
|
|
position: group.getPosition(),
|
|
|
|
groupId: group.getId()
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private sendDeleteGroupEvent(uuid: string, lastUser: UserInterface): void {
|
|
|
|
// Let's get the room of the group. To do this, let's get anyone in the group and find its room.
|
|
|
|
// Note: this is suboptimal
|
|
|
|
let userId = lastUser.id;
|
|
|
|
let client: ExSocketInterface|null = this.searchClientById(userId);
|
|
|
|
if (client === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let roomId = client.roomId;
|
|
|
|
this.Io.in(roomId).emit(SockerIoEvent.GROUP_DELETE, uuid);
|
2020-04-04 04:08:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ioConnection() {
|
2020-05-03 16:28:18 +02:00
|
|
|
this.Io.on(SockerIoEvent.CONNECTION, (socket: Socket) => {
|
2020-04-04 04:08:12 +02:00
|
|
|
/*join-rom event permit to join one room.
|
|
|
|
message :
|
|
|
|
userId : user identification
|
|
|
|
roomId: room identification
|
2020-04-04 16:25:03 +02:00
|
|
|
position: position of user in map
|
|
|
|
x: user x position on map
|
|
|
|
y: user y position on map
|
2020-04-04 04:08:12 +02:00
|
|
|
*/
|
2020-05-03 16:28:18 +02:00
|
|
|
socket.on(SockerIoEvent.JOIN_ROOM, (message: string) => {
|
2020-04-04 17:22:02 +02:00
|
|
|
let messageUserPosition = this.hydrateMessageReceive(message);
|
2020-05-03 16:28:18 +02:00
|
|
|
if (messageUserPosition instanceof Error) {
|
2020-04-29 01:40:32 +02:00
|
|
|
return socket.emit(SockerIoEvent.MESSAGE_ERROR, JSON.stringify({message: messageUserPosition.message}))
|
2020-04-04 17:22:02 +02:00
|
|
|
}
|
2020-04-05 15:51:47 +02:00
|
|
|
|
2020-05-10 19:54:41 +02:00
|
|
|
let Client = (socket as ExSocketInterface);
|
|
|
|
|
|
|
|
if(Client.roomId === messageUserPosition.roomId){
|
2020-05-10 13:58:32 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-10 19:54:41 +02:00
|
|
|
//leave previous room
|
|
|
|
this.leaveRoom(Client);
|
2020-05-10 13:58:32 +02:00
|
|
|
|
2020-05-10 19:54:41 +02:00
|
|
|
//join new previous room
|
|
|
|
this.joinRoom(Client, messageUserPosition);
|
2020-04-27 00:44:25 +02:00
|
|
|
|
2020-04-04 12:42:02 +02:00
|
|
|
// sending to all clients in room except sender
|
2020-05-10 19:54:41 +02:00
|
|
|
this.saveUserInformation(Client, messageUserPosition);
|
2020-04-05 15:51:47 +02:00
|
|
|
|
|
|
|
//add function to refresh position user in real time.
|
2020-05-11 13:17:02 +02:00
|
|
|
this.refreshUserPosition(Client);
|
2020-04-05 15:51:47 +02:00
|
|
|
|
2020-04-29 01:40:32 +02:00
|
|
|
socket.to(messageUserPosition.roomId).emit(SockerIoEvent.JOIN_ROOM, messageUserPosition.toString());
|
2020-04-04 12:42:02 +02:00
|
|
|
});
|
|
|
|
|
2020-05-03 16:28:18 +02:00
|
|
|
socket.on(SockerIoEvent.USER_POSITION, (message: string) => {
|
2020-04-04 17:22:02 +02:00
|
|
|
let messageUserPosition = this.hydrateMessageReceive(message);
|
2020-04-05 15:51:47 +02:00
|
|
|
if (messageUserPosition instanceof Error) {
|
2020-04-29 01:40:32 +02:00
|
|
|
return socket.emit(SockerIoEvent.MESSAGE_ERROR, JSON.stringify({message: messageUserPosition.message}));
|
2020-04-04 17:22:02 +02:00
|
|
|
}
|
2020-04-05 15:51:47 +02:00
|
|
|
|
2020-05-11 13:17:02 +02:00
|
|
|
let Client = (socket as ExSocketInterface);
|
|
|
|
|
2020-04-04 12:42:02 +02:00
|
|
|
// sending to all clients in room except sender
|
2020-05-11 13:17:02 +02:00
|
|
|
this.saveUserInformation(Client, messageUserPosition);
|
2020-04-05 15:51:47 +02:00
|
|
|
|
|
|
|
//refresh position of all user in all rooms in real time
|
2020-05-11 13:17:02 +02:00
|
|
|
this.refreshUserPosition(Client);
|
2020-04-04 04:08:12 +02:00
|
|
|
});
|
2020-04-19 19:32:38 +02:00
|
|
|
|
2020-05-03 16:28:18 +02:00
|
|
|
socket.on(SockerIoEvent.WEBRTC_SIGNAL, (message: string) => {
|
|
|
|
let data: any = JSON.parse(message);
|
2020-05-02 20:46:02 +02:00
|
|
|
//send only at user
|
|
|
|
let client = this.searchClientById(data.receiverId);
|
2020-05-03 16:28:18 +02:00
|
|
|
if (!client) {
|
2020-05-02 20:46:02 +02:00
|
|
|
console.error("client doesn't exist for ", data.receiverId);
|
|
|
|
return;
|
2020-04-20 01:10:47 +02:00
|
|
|
}
|
2020-05-03 16:28:18 +02:00
|
|
|
return client.emit(SockerIoEvent.WEBRTC_SIGNAL, message);
|
2020-04-04 04:08:12 +02:00
|
|
|
});
|
2020-04-19 19:32:38 +02:00
|
|
|
|
2020-05-03 16:28:18 +02:00
|
|
|
socket.on(SockerIoEvent.WEBRTC_OFFER, (message: string) => {
|
|
|
|
let data: any = JSON.parse(message);
|
2020-04-26 19:12:01 +02:00
|
|
|
|
|
|
|
//send only at user
|
2020-05-02 20:46:02 +02:00
|
|
|
let client = this.searchClientById(data.receiverId);
|
2020-05-03 16:28:18 +02:00
|
|
|
if (!client) {
|
2020-05-02 20:46:02 +02:00
|
|
|
console.error("client doesn't exist for ", data.receiverId);
|
|
|
|
return;
|
2020-04-26 19:12:01 +02:00
|
|
|
}
|
2020-05-03 16:28:18 +02:00
|
|
|
client.emit(SockerIoEvent.WEBRTC_OFFER, message);
|
2020-04-19 19:32:38 +02:00
|
|
|
});
|
2020-04-29 01:40:32 +02:00
|
|
|
|
2020-05-02 20:46:02 +02:00
|
|
|
socket.on(SockerIoEvent.DISCONNECT, () => {
|
2020-04-29 01:40:32 +02:00
|
|
|
let Client = (socket as ExSocketInterface);
|
2020-05-03 16:28:18 +02:00
|
|
|
this.sendDisconnectedEvent(Client);
|
2020-05-02 20:46:02 +02:00
|
|
|
|
|
|
|
//refresh position of all user in all rooms in real time
|
2020-05-11 13:17:02 +02:00
|
|
|
this.refreshUserPosition(Client);
|
2020-05-02 20:46:02 +02:00
|
|
|
|
2020-04-29 01:40:32 +02:00
|
|
|
//leave room
|
2020-05-10 19:54:41 +02:00
|
|
|
this.leaveRoom(Client);
|
|
|
|
|
|
|
|
//leave webrtc room
|
2020-04-29 01:40:32 +02:00
|
|
|
socket.leave(Client.webRtcRoomId);
|
|
|
|
|
|
|
|
//delete all socket information
|
|
|
|
delete Client.userId;
|
|
|
|
delete Client.webRtcRoomId;
|
|
|
|
delete Client.roomId;
|
|
|
|
delete Client.token;
|
|
|
|
delete Client.position;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-05-02 20:46:02 +02:00
|
|
|
/**
|
2020-05-08 00:35:36 +02:00
|
|
|
* TODO: each call to this method is suboptimal. It means that instead of passing an ID, we should pass a client object.
|
2020-05-02 20:46:02 +02:00
|
|
|
* @param userId
|
|
|
|
*/
|
2020-05-03 16:28:18 +02:00
|
|
|
searchClientById(userId: string): ExSocketInterface | null {
|
2020-05-02 20:46:02 +02:00
|
|
|
let clients: Array<any> = Object.values(this.Io.sockets.sockets);
|
2020-05-03 16:28:18 +02:00
|
|
|
for (let i = 0; i < clients.length; i++) {
|
|
|
|
let client: ExSocketInterface = clients[i];
|
|
|
|
if (client.userId !== userId) {
|
2020-05-02 20:46:02 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
return client;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2020-05-03 16:28:18 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param Client: ExSocketInterface
|
|
|
|
*/
|
|
|
|
sendDisconnectedEvent(Client: ExSocketInterface) {
|
|
|
|
Client.broadcast.emit(SockerIoEvent.WEBRTC_DISCONNECT, JSON.stringify({
|
|
|
|
userId: Client.userId
|
|
|
|
}));
|
2020-05-08 11:16:49 +02:00
|
|
|
|
|
|
|
//disconnect webrtc room
|
2020-05-08 21:17:52 +02:00
|
|
|
if(!Client.webRtcRoomId){
|
|
|
|
return;
|
|
|
|
}
|
2020-05-08 11:16:49 +02:00
|
|
|
Client.leave(Client.webRtcRoomId);
|
2020-05-08 21:17:52 +02:00
|
|
|
delete Client.webRtcRoomId;
|
2020-05-03 16:28:18 +02:00
|
|
|
}
|
|
|
|
|
2020-05-10 19:54:41 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param Client
|
|
|
|
*/
|
|
|
|
leaveRoom(Client : ExSocketInterface){
|
|
|
|
//lease previous room and world
|
|
|
|
if(Client.roomId){
|
|
|
|
//user leave previous room
|
|
|
|
Client.leave(Client.roomId);
|
|
|
|
//user leave previous world
|
|
|
|
let world : World|undefined = this.Worlds.get(Client.roomId);
|
|
|
|
if(world){
|
|
|
|
world.leave(Client);
|
|
|
|
this.Worlds.set(Client.roomId, world);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param Client
|
|
|
|
* @param messageUserPosition
|
|
|
|
*/
|
|
|
|
joinRoom(Client : ExSocketInterface, messageUserPosition: MessageUserPosition){
|
|
|
|
//join user in room
|
|
|
|
Client.join(messageUserPosition.roomId);
|
|
|
|
|
|
|
|
//check and create new world for a room
|
|
|
|
if(!this.Worlds.get(messageUserPosition.roomId)){
|
|
|
|
let world = new World((user1: string, group: Group) => {
|
|
|
|
this.connectedUser(user1, group);
|
|
|
|
}, (user1: string, group: Group) => {
|
|
|
|
this.disConnectedUser(user1, group);
|
|
|
|
}, MINIMUM_DISTANCE, GROUP_RADIUS, (group: Group) => {
|
|
|
|
this.sendUpdateGroupEvent(group);
|
|
|
|
}, (groupUuid: string, lastUser: UserInterface) => {
|
|
|
|
this.sendDeleteGroupEvent(groupUuid, lastUser);
|
|
|
|
});
|
|
|
|
this.Worlds.set(messageUserPosition.roomId, world);
|
|
|
|
}
|
|
|
|
|
|
|
|
//join world
|
|
|
|
let world : World|undefined = this.Worlds.get(messageUserPosition.roomId);
|
|
|
|
if(world) {
|
|
|
|
world.join(messageUserPosition);
|
|
|
|
this.Worlds.set(messageUserPosition.roomId, world);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-29 01:40:32 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param socket
|
|
|
|
* @param roomId
|
|
|
|
*/
|
2020-05-03 16:28:18 +02:00
|
|
|
joinWebRtcRoom(socket: ExSocketInterface, roomId: string) {
|
|
|
|
if (socket.webRtcRoomId === roomId) {
|
2020-04-29 01:40:32 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
socket.join(roomId);
|
|
|
|
socket.webRtcRoomId = roomId;
|
|
|
|
//if two persone in room share
|
2020-05-08 11:16:49 +02:00
|
|
|
if (this.Io.sockets.adapter.rooms[roomId].length < 2 || this.Io.sockets.adapter.rooms[roomId].length >= 4) {
|
2020-04-29 01:40:32 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-05-08 11:58:09 +02:00
|
|
|
let clients: Array<ExSocketInterface> = (Object.values(this.Io.sockets.sockets) as Array<ExSocketInterface>)
|
2020-05-08 11:54:47 +02:00
|
|
|
.filter((client: ExSocketInterface) => client.webRtcRoomId && client.webRtcRoomId === roomId);
|
2020-04-29 01:40:32 +02:00
|
|
|
//send start at one client to initialise offer webrtc
|
|
|
|
//send all users in room to create PeerConnection in front
|
|
|
|
clients.forEach((client: ExSocketInterface, index: number) => {
|
|
|
|
|
|
|
|
let clientsId = clients.reduce((tabs: Array<any>, clientId: ExSocketInterface, indexClientId: number) => {
|
|
|
|
if (!clientId.userId || clientId.userId === client.userId) {
|
|
|
|
return tabs;
|
|
|
|
}
|
|
|
|
tabs.push({
|
|
|
|
userId: clientId.userId,
|
|
|
|
initiator: index <= indexClientId
|
|
|
|
});
|
|
|
|
return tabs;
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
client.emit(SockerIoEvent.WEBRTC_START, JSON.stringify({clients: clientsId, roomId: roomId}));
|
2020-04-04 04:08:12 +02:00
|
|
|
});
|
|
|
|
}
|
2020-04-04 16:25:03 +02:00
|
|
|
|
|
|
|
//permit to save user position in socket
|
2020-05-03 16:28:18 +02:00
|
|
|
saveUserInformation(socket: ExSocketInterface, message: MessageUserPosition) {
|
2020-04-04 16:25:03 +02:00
|
|
|
socket.position = message.position;
|
2020-04-04 19:25:08 +02:00
|
|
|
socket.roomId = message.roomId;
|
|
|
|
socket.userId = message.userId;
|
2020-05-03 22:24:14 +02:00
|
|
|
socket.name = message.name;
|
2020-05-08 15:18:22 +02:00
|
|
|
socket.character = message.character;
|
2020-04-04 16:25:03 +02:00
|
|
|
}
|
2020-04-04 17:22:02 +02:00
|
|
|
|
2020-05-11 13:17:02 +02:00
|
|
|
refreshUserPosition(Client : ExSocketInterface) {
|
2020-05-02 20:46:02 +02:00
|
|
|
//refresh position of all user in all rooms in real time
|
|
|
|
let rooms = (this.Io.sockets.adapter.rooms as ExtRoomsInterface);
|
2020-05-03 16:28:18 +02:00
|
|
|
if (!rooms.refreshUserPosition) {
|
2020-05-02 20:46:02 +02:00
|
|
|
rooms.refreshUserPosition = RefreshUserPositionFunction;
|
|
|
|
}
|
2020-05-11 13:17:02 +02:00
|
|
|
rooms.refreshUserPosition(rooms, this.Io);
|
|
|
|
|
|
|
|
// update position in the worl
|
|
|
|
let data = {
|
|
|
|
userId: Client.userId,
|
|
|
|
roomId: Client.roomId,
|
|
|
|
position: Client.position,
|
|
|
|
name: Client.name,
|
|
|
|
character: Client.character,
|
|
|
|
};
|
|
|
|
let messageUserPosition = new MessageUserPosition(data);
|
|
|
|
let world = this.Worlds.get(messageUserPosition.roomId);
|
|
|
|
if (!world) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
world.updatePosition(messageUserPosition);
|
|
|
|
this.Worlds.set(messageUserPosition.roomId, world);
|
2020-05-10 19:45:17 +02:00
|
|
|
}
|
|
|
|
|
2020-04-04 17:22:02 +02:00
|
|
|
//Hydrate and manage error
|
2020-05-03 16:28:18 +02:00
|
|
|
hydrateMessageReceive(message: string): MessageUserPosition | Error {
|
2020-04-04 17:22:02 +02:00
|
|
|
try {
|
2020-04-27 00:44:25 +02:00
|
|
|
return new MessageUserPosition(JSON.parse(message));
|
2020-05-03 16:28:18 +02:00
|
|
|
} catch (err) {
|
2020-04-04 17:22:02 +02:00
|
|
|
//TODO log error
|
2020-04-04 17:56:43 +02:00
|
|
|
return new Error(err);
|
2020-04-04 17:22:02 +02:00
|
|
|
}
|
|
|
|
}
|
2020-04-04 19:25:08 +02:00
|
|
|
|
|
|
|
/** permit to share user position
|
2020-05-03 16:28:18 +02:00
|
|
|
** users position will send in event 'user-position'
|
|
|
|
** The data sent is an array with information for each user :
|
|
|
|
[
|
|
|
|
{
|
2020-04-04 19:25:08 +02:00
|
|
|
userId: <string>,
|
|
|
|
roomId: <string>,
|
|
|
|
position: {
|
|
|
|
x : <number>,
|
2020-04-07 21:03:33 +02:00
|
|
|
y : <number>,
|
|
|
|
direction: <string>
|
2020-04-04 19:25:08 +02:00
|
|
|
}
|
|
|
|
},
|
2020-05-03 16:28:18 +02:00
|
|
|
...
|
|
|
|
]
|
2020-04-04 19:25:08 +02:00
|
|
|
**/
|
2020-05-03 16:28:18 +02:00
|
|
|
seTimeOutInProgress: any = null;
|
|
|
|
|
|
|
|
shareUsersPosition() {
|
|
|
|
if (this.seTimeOutInProgress) {
|
2020-04-04 19:25:08 +02:00
|
|
|
clearTimeout(this.seTimeOutInProgress);
|
|
|
|
}
|
|
|
|
//send for each room, all data of position user
|
2020-04-05 15:51:47 +02:00
|
|
|
let arrayMap = (this.Io.sockets.adapter.rooms as ExtRooms).userPositionMapByRoom;
|
2020-05-03 16:28:18 +02:00
|
|
|
if (!arrayMap) {
|
2020-04-05 15:51:47 +02:00
|
|
|
this.seTimeOutInProgress = setTimeout(() => {
|
|
|
|
this.shareUsersPosition();
|
|
|
|
}, 10);
|
|
|
|
return;
|
|
|
|
}
|
2020-05-03 16:28:18 +02:00
|
|
|
arrayMap.forEach((value: any) => {
|
2020-04-04 19:25:08 +02:00
|
|
|
let roomId = value[0];
|
2020-05-10 13:58:32 +02:00
|
|
|
this.Io.in(roomId).emit(SockerIoEvent.USER_POSITION, JSON.stringify(value));
|
2020-04-04 19:25:08 +02:00
|
|
|
});
|
|
|
|
this.seTimeOutInProgress = setTimeout(() => {
|
|
|
|
this.shareUsersPosition();
|
|
|
|
}, 10);
|
|
|
|
}
|
2020-04-27 00:44:25 +02:00
|
|
|
|
|
|
|
//connected user
|
2020-05-03 16:28:18 +02:00
|
|
|
connectedUser(userId: string, group: Group) {
|
|
|
|
let Client = this.searchClientById(userId);
|
|
|
|
if (!Client) {
|
2020-05-01 21:15:00 +02:00
|
|
|
return;
|
2020-04-29 01:40:32 +02:00
|
|
|
}
|
2020-05-03 16:28:18 +02:00
|
|
|
this.joinWebRtcRoom(Client, group.getId());
|
2020-04-27 00:44:25 +02:00
|
|
|
}
|
|
|
|
|
2020-05-08 00:35:36 +02:00
|
|
|
//disconnect user
|
2020-05-03 16:28:18 +02:00
|
|
|
disConnectedUser(userId: string, group: Group) {
|
|
|
|
let Client = this.searchClientById(userId);
|
|
|
|
if (!Client) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.sendDisconnectedEvent(Client)
|
2020-04-27 00:44:25 +02:00
|
|
|
}
|
2020-04-04 22:35:20 +02:00
|
|
|
}
|