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";
|
|
|
|
import {ExtRoomsInterface} from "_Model/Websocket/ExtRoomsInterface";
|
2020-04-04 04:08:12 +02:00
|
|
|
|
|
|
|
export class IoSocketController{
|
|
|
|
Io: socketIO.Server;
|
|
|
|
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-04 04:08:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ioConnection() {
|
|
|
|
this.Io.on('connection', (socket: Socket) => {
|
|
|
|
/*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-04 16:25:03 +02:00
|
|
|
socket.on('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){
|
|
|
|
return socket.emit("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-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-04 16:25:03 +02:00
|
|
|
socket.to(messageUserPosition.roomId).emit('join-room', messageUserPosition.toString());
|
2020-04-04 12:42:02 +02:00
|
|
|
});
|
|
|
|
|
2020-04-04 16:25:03 +02:00
|
|
|
socket.on('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-04 17:56:43 +02:00
|
|
|
return socket.emit("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 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
|
|
|
|
let rooms = (this.Io.sockets.adapter.rooms as ExtRoomsInterface)
|
|
|
|
rooms.refreshUserPosition(rooms, this.Io);
|
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 {
|
|
|
|
return new MessageUserPosition(message);
|
|
|
|
}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];
|
|
|
|
let data = value[1];
|
|
|
|
this.Io.in(roomId).emit('user-position', JSON.stringify(data));
|
|
|
|
});
|
|
|
|
this.seTimeOutInProgress = setTimeout(() => {
|
|
|
|
this.shareUsersPosition();
|
|
|
|
}, 10);
|
|
|
|
}
|
2020-04-04 22:35:20 +02:00
|
|
|
}
|