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-04-04 17:22:02 +02:00
|
|
|
import {SECRET_KEY} from "../Enum/EnvironmentVariable"; //TODO fix import by "_Enum/..."
|
2020-04-05 15:51:47 +02:00
|
|
|
import {ExtRooms, RefreshUserPositionFunction} from "../Model/Websocket/ExtRoom";
|
2020-04-27 00:44:25 +02:00
|
|
|
import {ExtRoomsInterface} from "../Model/Websocket/ExtRoomsInterface";
|
|
|
|
import {World} from "../Model/World";
|
2020-04-29 01:40:32 +02:00
|
|
|
import { uuid } from 'uuidv4';
|
|
|
|
|
|
|
|
enum SockerIoEvent {
|
|
|
|
CONNECTION = "connection",
|
|
|
|
DISCONNECTION = "disconnect",
|
|
|
|
JOIN_ROOM = "join-room",
|
|
|
|
USER_POSITION = "user-position",
|
|
|
|
WEBRTC_SIGNAL = "webrtc-signal",
|
|
|
|
WEBRTC_START = "webrtc-start",
|
|
|
|
MESSAGE_ERROR = "message-error",
|
|
|
|
}
|
2020-04-04 04:08:12 +02:00
|
|
|
|
|
|
|
export class IoSocketController{
|
|
|
|
Io: socketIO.Server;
|
2020-04-27 00:44:25 +02:00
|
|
|
World: World;
|
2020-04-04 04:08:12 +02:00
|
|
|
constructor(server : http.Server) {
|
|
|
|
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-04-04 14:05:18 +02:00
|
|
|
this.Io.use( (socket: Socket, next) => {
|
|
|
|
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-04-29 01:40:32 +02:00
|
|
|
|
|
|
|
//don't send only function because the context will be not this
|
|
|
|
this.World = new World((user1 : string, user2 : string) => {
|
|
|
|
this.connectedUser(user1, user2);
|
|
|
|
}, (user1 : string, user2 : string) => {
|
|
|
|
this.disConnectedUser(user1, user2);
|
|
|
|
});
|
2020-04-04 04:08:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ioConnection() {
|
2020-04-29 01:40:32 +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-04-29 01:40:32 +02:00
|
|
|
socket.on(SockerIoEvent.JOIN_ROOM, (message : string) => {
|
2020-04-04 17:22:02 +02:00
|
|
|
let messageUserPosition = this.hydrateMessageReceive(message);
|
2020-04-04 17:56:43 +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-04-04 17:22:02 +02:00
|
|
|
//join user in room
|
2020-04-04 16:25:03 +02:00
|
|
|
socket.join(messageUserPosition.roomId);
|
2020-04-05 15:51:47 +02:00
|
|
|
|
2020-04-27 00:44:25 +02:00
|
|
|
//join user in world
|
|
|
|
this.World.join(messageUserPosition);
|
|
|
|
|
2020-04-04 12:42:02 +02:00
|
|
|
// sending to all clients in room except sender
|
2020-04-04 19:25:08 +02:00
|
|
|
this.saveUserInformation((socket as ExSocketInterface), messageUserPosition);
|
2020-04-05 15:51:47 +02:00
|
|
|
|
|
|
|
//add function to refresh position user in real time.
|
|
|
|
let rooms = (this.Io.sockets.adapter.rooms as ExtRoomsInterface);
|
|
|
|
rooms.refreshUserPosition = RefreshUserPositionFunction;
|
|
|
|
rooms.refreshUserPosition(rooms, this.Io);
|
|
|
|
|
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-04-29 01:40:32 +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-04-27 00:44:25 +02:00
|
|
|
// update position in the worl
|
|
|
|
this.World.updatePosition(messageUserPosition);
|
|
|
|
|
2020-04-04 12:42:02 +02:00
|
|
|
// sending to all clients in room except sender
|
2020-04-04 19:25:08 +02:00
|
|
|
this.saveUserInformation((socket as ExSocketInterface), messageUserPosition);
|
2020-04-05 15:51:47 +02:00
|
|
|
|
|
|
|
//refresh position of all user in all rooms in real time
|
2020-04-20 01:10:47 +02:00
|
|
|
let rooms = (this.Io.sockets.adapter.rooms as ExtRoomsInterface);
|
|
|
|
if(!rooms.refreshUserPosition){
|
|
|
|
rooms.refreshUserPosition = RefreshUserPositionFunction;
|
|
|
|
}
|
2020-04-05 15:51:47 +02:00
|
|
|
rooms.refreshUserPosition(rooms, this.Io);
|
2020-04-04 04:08:12 +02:00
|
|
|
});
|
2020-04-19 19:32:38 +02:00
|
|
|
|
2020-04-29 01:40:32 +02:00
|
|
|
socket.on(SockerIoEvent.WEBRTC_SIGNAL, (message : string) => {
|
2020-04-19 19:32:38 +02:00
|
|
|
let data : any = JSON.parse(message);
|
2020-04-26 19:12:01 +02:00
|
|
|
|
|
|
|
//send only at user
|
|
|
|
let clients: Array<any> = Object.values(this.Io.sockets.sockets);
|
|
|
|
for(let i = 0; i < clients.length; i++){
|
2020-04-26 22:35:16 +02:00
|
|
|
let client : ExSocketInterface = clients[i];
|
2020-04-26 19:12:01 +02:00
|
|
|
if(client.userId !== data.receiverId){
|
|
|
|
continue
|
|
|
|
}
|
2020-04-29 01:40:32 +02:00
|
|
|
client.emit(SockerIoEvent.WEBRTC_SIGNAL, message);
|
2020-04-26 19:12:01 +02:00
|
|
|
break;
|
|
|
|
}
|
2020-04-19 19:32:38 +02:00
|
|
|
});
|
2020-04-29 01:40:32 +02:00
|
|
|
|
|
|
|
socket.on(SockerIoEvent.DISCONNECTION, (reason : string) => {
|
|
|
|
let Client = (socket as ExSocketInterface);
|
|
|
|
//leave group of user
|
|
|
|
this.World.leave(Client);
|
|
|
|
|
|
|
|
//leave room
|
|
|
|
socket.leave(Client.roomId);
|
|
|
|
socket.leave(Client.webRtcRoomId);
|
|
|
|
|
|
|
|
//delete all socket information
|
|
|
|
delete Client.userId;
|
|
|
|
delete Client.webRtcRoomId;
|
|
|
|
delete Client.roomId;
|
|
|
|
delete Client.token;
|
|
|
|
delete Client.position;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param socket
|
|
|
|
* @param roomId
|
|
|
|
*/
|
|
|
|
joinWebRtcRoom(socket : ExSocketInterface, roomId : string) {
|
|
|
|
if(socket.webRtcRoomId === roomId){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
socket.join(roomId);
|
|
|
|
socket.webRtcRoomId = roomId;
|
|
|
|
//if two persone in room share
|
|
|
|
if (this.Io.sockets.adapter.rooms[roomId].length < 2) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let clients: Array<any> = Object.values(this.Io.sockets.sockets);
|
|
|
|
|
|
|
|
//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-04-04 19:25:08 +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-04-04 16:25:03 +02:00
|
|
|
}
|
2020-04-04 17:22:02 +02:00
|
|
|
|
|
|
|
//Hydrate and manage error
|
2020-04-04 17:56:43 +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-04-04 17:22:02 +02:00
|
|
|
}catch (err) {
|
|
|
|
//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
|
|
|
|
** users position will send in event 'user-position'
|
|
|
|
** The data sent is an array with information for each user :
|
|
|
|
[
|
|
|
|
{
|
|
|
|
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
|
|
|
}
|
|
|
|
},
|
|
|
|
...
|
|
|
|
]
|
|
|
|
**/
|
|
|
|
seTimeOutInProgress : any = null;
|
|
|
|
shareUsersPosition(){
|
2020-04-05 15:51:47 +02:00
|
|
|
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;
|
|
|
|
if(!arrayMap){
|
|
|
|
this.seTimeOutInProgress = setTimeout(() => {
|
|
|
|
this.shareUsersPosition();
|
|
|
|
}, 10);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
arrayMap.forEach((value : any) => {
|
2020-04-04 19:25:08 +02:00
|
|
|
let roomId = value[0];
|
2020-04-10 12:54:05 +02:00
|
|
|
this.Io.in(roomId).emit('user-position', JSON.stringify(arrayMap));
|
2020-04-04 19:25:08 +02:00
|
|
|
});
|
|
|
|
this.seTimeOutInProgress = setTimeout(() => {
|
|
|
|
this.shareUsersPosition();
|
|
|
|
}, 10);
|
|
|
|
}
|
2020-04-27 00:44:25 +02:00
|
|
|
|
|
|
|
//connected user
|
|
|
|
connectedUser(user1 : string, user2 : string){
|
2020-04-29 01:40:32 +02:00
|
|
|
/* TODO manager room and group user to enter and leave */
|
|
|
|
let roomId = uuid();
|
|
|
|
let clients : Array<any> = Object.values(this.Io.sockets.sockets);
|
|
|
|
let User1 = clients.find((user : ExSocketInterface) => user.userId === user1);
|
|
|
|
let User2 = clients.find((user : ExSocketInterface) => user.userId === user2);
|
|
|
|
|
|
|
|
if(User1) {
|
|
|
|
this.joinWebRtcRoom(User1, roomId);
|
|
|
|
}
|
|
|
|
if(User2) {
|
|
|
|
this.joinWebRtcRoom(User2, roomId);
|
|
|
|
}
|
2020-04-27 00:44:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//connected user
|
|
|
|
disConnectedUser(user1 : string, user2 : string){
|
|
|
|
console.log("disConnectedUser => user1", user1);
|
|
|
|
console.log("disConnectedUser => user2", user2);
|
|
|
|
}
|
2020-04-04 22:35:20 +02:00
|
|
|
}
|