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 12:42:02 +02:00
|
|
|
import {MessageUserPosition} from "@Model/Websocket/MessageUserPosition";
|
2020-04-04 04:08:12 +02:00
|
|
|
|
|
|
|
export class IoSocketController{
|
|
|
|
Io: socketIO.Server;
|
|
|
|
constructor(server : http.Server) {
|
|
|
|
this.Io = socketIO(server);
|
|
|
|
this.ioConnection();
|
|
|
|
}
|
|
|
|
|
|
|
|
ioConnection() {
|
|
|
|
this.Io.on('connection', (socket: Socket) => {
|
|
|
|
//TODO check token access
|
|
|
|
|
|
|
|
/*join-rom event permit to join one room.
|
|
|
|
message :
|
|
|
|
userId : user identification
|
|
|
|
roomId: room identification
|
|
|
|
positionXUser: user x position map
|
|
|
|
positionYUser: user y position on map
|
|
|
|
*/
|
2020-04-04 12:42:02 +02:00
|
|
|
socket.on('join-room', (message : MessageUserPosition) => {
|
2020-04-04 04:08:12 +02:00
|
|
|
socket.join(message.roomId);
|
2020-04-04 12:42:02 +02:00
|
|
|
// sending to all clients in room except sender
|
|
|
|
socket.to(message.roomId).emit('join-room', message.toString());
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.on('user-position', (message : MessageUserPosition) => {
|
|
|
|
// sending to all clients in room except sender
|
2020-04-04 04:08:12 +02:00
|
|
|
socket.to(message.roomId).emit('join-room', message.toString());
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|