2020-04-04 04:08:12 +02:00
|
|
|
import socketIO = require('socket.io');
|
|
|
|
import {Socket} from "socket.io";
|
|
|
|
import * as http from "http";
|
2020-05-15 23:24:04 +02:00
|
|
|
import {MessageUserPosition, Point} from "../Model/Websocket/MessageUserPosition"; //TODO fix import by "_Model/.."
|
2020-04-04 17:22:02 +02:00
|
|
|
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-09-11 09:56:05 +02:00
|
|
|
import {SECRET_KEY, MINIMUM_DISTANCE, GROUP_RADIUS, ALLOW_ARTILLERY} from "../Enum/EnvironmentVariable"; //TODO fix import by "_Enum/..."
|
2020-04-27 00:44:25 +02:00
|
|
|
import {World} from "../Model/World";
|
2020-09-15 10:06:11 +02:00
|
|
|
import {Group} from "../Model/Group";
|
2020-09-16 16:06:43 +02:00
|
|
|
import {User} from "../Model/User";
|
2020-06-09 23:07:19 +02:00
|
|
|
import {isSetPlayerDetailsMessage,} from "../Model/Websocket/SetPlayerDetailsMessage";
|
2020-05-19 19:11:12 +02:00
|
|
|
import {MessageUserJoined} from "../Model/Websocket/MessageUserJoined";
|
2020-05-28 22:00:56 +02:00
|
|
|
import si from "systeminformation";
|
2020-06-09 11:49:23 +02:00
|
|
|
import {Gauge} from "prom-client";
|
2020-06-09 23:07:19 +02:00
|
|
|
import {TokenInterface} from "../Controller/AuthenticateController";
|
|
|
|
import {isJoinRoomMessageInterface} from "../Model/Websocket/JoinRoomMessage";
|
2020-09-21 11:24:03 +02:00
|
|
|
import {PointInterface} from "../Model/Websocket/PointInterface";
|
2020-06-09 23:07:19 +02:00
|
|
|
import {isWebRtcSignalMessageInterface} from "../Model/Websocket/WebRtcSignalMessage";
|
|
|
|
import {UserInGroupInterface} from "../Model/Websocket/UserInGroupInterface";
|
2020-07-27 22:36:07 +02:00
|
|
|
import {isItemEventMessageInterface} from "../Model/Websocket/ItemEventMessage";
|
2020-09-09 12:32:01 +02:00
|
|
|
import {uuid} from 'uuidv4';
|
2020-09-15 16:21:41 +02:00
|
|
|
import {isViewport} from "../Model/Websocket/ViewportMessage";
|
2020-09-16 16:06:43 +02:00
|
|
|
import {GroupUpdateInterface} from "_Model/Websocket/GroupUpdateInterface";
|
|
|
|
import {Movable} from "../Model/Movable";
|
2020-09-18 15:51:15 +02:00
|
|
|
import {
|
|
|
|
PositionMessage,
|
|
|
|
SetPlayerDetailsMessage,
|
|
|
|
SubMessage,
|
|
|
|
UserMovedMessage,
|
2020-09-24 17:24:37 +02:00
|
|
|
BatchMessage,
|
|
|
|
GroupUpdateMessage,
|
|
|
|
PointMessage,
|
|
|
|
GroupDeleteMessage,
|
|
|
|
UserJoinedMessage,
|
|
|
|
UserLeftMessage,
|
|
|
|
ItemEventMessage
|
2020-09-24 11:16:08 +02:00
|
|
|
} from "../Messages/generated/messages_pb";
|
|
|
|
import {UserMovesMessage} from "../Messages/generated/messages_pb";
|
2020-09-18 13:57:38 +02:00
|
|
|
import Direction = PositionMessage.Direction;
|
2020-09-18 15:51:15 +02:00
|
|
|
import {ProtobufUtils} from "../Model/Websocket/ProtobufUtils";
|
2020-04-29 01:40:32 +02:00
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
enum SocketIoEvent {
|
2020-04-29 01:40:32 +02:00
|
|
|
CONNECTION = "connection",
|
2020-05-02 20:46:02 +02:00
|
|
|
DISCONNECT = "disconnect",
|
2020-05-19 19:11:12 +02:00
|
|
|
JOIN_ROOM = "join-room", // bi-directional
|
2020-09-15 10:06:11 +02:00
|
|
|
USER_POSITION = "user-position", // From client to server
|
2020-05-19 19:11:12 +02:00
|
|
|
USER_MOVED = "user-moved", // From server to client
|
|
|
|
USER_LEFT = "user-left", // From server to client
|
2020-04-29 01:40:32 +02:00
|
|
|
WEBRTC_SIGNAL = "webrtc-signal",
|
2020-06-11 23:18:06 +02:00
|
|
|
WEBRTC_SCREEN_SHARING_SIGNAL = "webrtc-screen-sharing-signal",
|
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-07-27 22:36:07 +02:00
|
|
|
SET_PLAYER_DETAILS = "set-player-details",
|
|
|
|
ITEM_EVENT = 'item-event',
|
2020-08-31 14:03:40 +02:00
|
|
|
SET_SILENT = "set_silent", // Set or unset the silent mode for this user.
|
2020-09-15 10:06:11 +02:00
|
|
|
SET_VIEWPORT = "set-viewport",
|
|
|
|
BATCH = "batch",
|
|
|
|
}
|
|
|
|
|
2020-09-18 15:51:15 +02:00
|
|
|
function emitInBatch(socket: ExSocketInterface, event: string, payload: SubMessage): void {
|
|
|
|
socket.batchedMessages.addPayload(payload);
|
2020-09-15 10:06:11 +02:00
|
|
|
|
|
|
|
if (socket.batchTimeout === null) {
|
|
|
|
socket.batchTimeout = setTimeout(() => {
|
2020-09-18 18:18:39 +02:00
|
|
|
socket./*binary(true).*/emit(SocketIoEvent.BATCH, socket.batchedMessages.serializeBinary().buffer);
|
2020-09-18 15:51:15 +02:00
|
|
|
socket.batchedMessages = new BatchMessage();
|
2020-09-15 10:06:11 +02:00
|
|
|
socket.batchTimeout = null;
|
|
|
|
}, 100);
|
|
|
|
}
|
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-06-09 11:49:23 +02:00
|
|
|
public readonly Io: socketIO.Server;
|
|
|
|
private Worlds: Map<string, World> = new Map<string, World>();
|
2020-09-18 13:57:38 +02:00
|
|
|
private sockets: Map<number, ExSocketInterface> = new Map<number, ExSocketInterface>();
|
2020-06-09 11:49:23 +02:00
|
|
|
private nbClientsGauge: Gauge<string>;
|
|
|
|
private nbClientsPerRoomGauge: Gauge<string>;
|
2020-09-18 13:57:38 +02:00
|
|
|
private nextUserId: number = 1;
|
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-06-09 11:49:23 +02:00
|
|
|
this.nbClientsGauge = new Gauge({
|
|
|
|
name: 'workadventure_nb_sockets',
|
|
|
|
help: 'Number of connected sockets',
|
2020-06-29 23:01:52 +02:00
|
|
|
labelNames: [ ]
|
2020-06-09 11:49:23 +02:00
|
|
|
});
|
|
|
|
this.nbClientsPerRoomGauge = new Gauge({
|
|
|
|
name: 'workadventure_nb_clients_per_room',
|
|
|
|
help: 'Number of clients per room',
|
2020-06-29 23:01:52 +02:00
|
|
|
labelNames: [ 'room' ]
|
2020-06-09 11:49:23 +02:00
|
|
|
});
|
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-14 23:19:48 +02:00
|
|
|
// Completely commented for now, as we do not use the "/login" route at all.
|
2020-05-23 14:00:36 +02:00
|
|
|
this.Io.use((socket: Socket, next) => {
|
2020-09-21 11:24:03 +02:00
|
|
|
//console.log(socket.handshake.query.token);
|
2020-04-04 14:05:18 +02:00
|
|
|
if (!socket.handshake.query || !socket.handshake.query.token) {
|
2020-06-10 12:32:39 +02:00
|
|
|
console.error('An authentication error happened, a user tried to connect without a token.');
|
2020-04-04 14:05:18 +02:00
|
|
|
return next(new Error('Authentication error'));
|
|
|
|
}
|
2020-09-09 12:32:01 +02:00
|
|
|
if(socket.handshake.query.token === 'test'){
|
2020-09-11 09:56:05 +02:00
|
|
|
if (ALLOW_ARTILLERY) {
|
|
|
|
(socket as ExSocketInterface).token = socket.handshake.query.token;
|
2020-09-18 13:57:38 +02:00
|
|
|
(socket as ExSocketInterface).userId = this.nextUserId;
|
|
|
|
(socket as ExSocketInterface).userUuid = uuid();
|
|
|
|
this.nextUserId++;
|
2020-09-11 09:56:05 +02:00
|
|
|
(socket as ExSocketInterface).isArtillery = true;
|
|
|
|
console.log((socket as ExSocketInterface).userId);
|
|
|
|
next();
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
console.warn("In order to perform a load-testing test on this environment, you must set the ALLOW_ARTILLERY environment variable to 'true'");
|
|
|
|
next();
|
|
|
|
}
|
2020-09-09 12:32:01 +02:00
|
|
|
}
|
2020-09-11 09:56:05 +02:00
|
|
|
(socket as ExSocketInterface).isArtillery = false;
|
2020-05-13 20:22:42 +02:00
|
|
|
if(this.searchClientByToken(socket.handshake.query.token)){
|
2020-06-10 12:32:39 +02:00
|
|
|
console.error('An authentication error happened, a user tried to connect while its token is already connected.');
|
2020-05-13 20:22:42 +02:00
|
|
|
return next(new Error('Authentication error'));
|
|
|
|
}
|
2020-06-09 23:07:19 +02:00
|
|
|
Jwt.verify(socket.handshake.query.token, SECRET_KEY, (err: JsonWebTokenError, tokenDecoded: object) => {
|
2020-04-04 14:05:18 +02:00
|
|
|
if (err) {
|
2020-06-10 12:32:39 +02:00
|
|
|
console.error('An authentication error happened, invalid JsonWebToken.', err);
|
2020-04-04 14:05:18 +02:00
|
|
|
return next(new Error('Authentication error'));
|
|
|
|
}
|
2020-06-09 23:07:19 +02:00
|
|
|
|
|
|
|
if (!this.isValidToken(tokenDecoded)) {
|
|
|
|
return next(new Error('Authentication error, invalid token structure'));
|
|
|
|
}
|
|
|
|
|
2020-06-10 12:32:39 +02:00
|
|
|
(socket as ExSocketInterface).token = socket.handshake.query.token;
|
2020-09-18 13:57:38 +02:00
|
|
|
(socket as ExSocketInterface).userId = this.nextUserId;
|
|
|
|
(socket as ExSocketInterface).userUuid = tokenDecoded.userUuid;
|
|
|
|
this.nextUserId++;
|
2020-04-04 14:05:18 +02:00
|
|
|
next();
|
|
|
|
});
|
2020-05-23 14:00:36 +02:00
|
|
|
});
|
2020-04-04 14:05:18 +02:00
|
|
|
|
2020-04-04 04:08:12 +02:00
|
|
|
this.ioConnection();
|
2020-05-08 00:35:36 +02:00
|
|
|
}
|
|
|
|
|
2020-06-09 23:07:19 +02:00
|
|
|
private isValidToken(token: object): token is TokenInterface {
|
2020-09-18 13:57:38 +02:00
|
|
|
if (typeof((token as TokenInterface).userUuid) !== 'string') {
|
2020-06-09 23:07:19 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (typeof((token as TokenInterface).name) !== 'string') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-05-23 14:00:36 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param token
|
|
|
|
*/
|
|
|
|
searchClientByToken(token: string): ExSocketInterface | null {
|
2020-06-09 23:07:19 +02:00
|
|
|
const clients: ExSocketInterface[] = Object.values(this.Io.sockets.sockets) as ExSocketInterface[];
|
2020-05-23 14:00:36 +02:00
|
|
|
for (let i = 0; i < clients.length; i++) {
|
2020-06-09 23:07:19 +02:00
|
|
|
const client = clients[i];
|
2020-05-23 14:00:36 +02:00
|
|
|
if (client.token !== token) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return client;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-04-04 04:08:12 +02:00
|
|
|
ioConnection() {
|
2020-09-18 13:57:38 +02:00
|
|
|
this.Io.on(SocketIoEvent.CONNECTION, (socket: Socket) => {
|
2020-06-09 15:54:54 +02:00
|
|
|
const client : ExSocketInterface = socket as ExSocketInterface;
|
2020-09-18 15:51:15 +02:00
|
|
|
client.batchedMessages = new BatchMessage();
|
2020-09-15 10:06:11 +02:00
|
|
|
client.batchTimeout = null;
|
2020-09-18 15:51:15 +02:00
|
|
|
client.emitInBatch = (event: string, payload: SubMessage): void => {
|
2020-09-15 10:06:11 +02:00
|
|
|
emitInBatch(client, event, payload);
|
|
|
|
}
|
2020-05-23 15:04:25 +02:00
|
|
|
this.sockets.set(client.userId, client);
|
2020-05-28 22:00:56 +02:00
|
|
|
|
|
|
|
// Let's log server load when a user joins
|
2020-06-09 15:54:54 +02:00
|
|
|
const srvSockets = this.Io.sockets.sockets;
|
2020-06-29 23:01:52 +02:00
|
|
|
this.nbClientsGauge.inc();
|
2020-06-09 09:30:12 +02:00
|
|
|
console.log(new Date().toISOString() + ' A user joined (', Object.keys(srvSockets).length, ' connected users)');
|
2020-09-21 11:24:03 +02:00
|
|
|
//si.currentLoad().then(data => console.log(' Current load: ', data.avgload));
|
|
|
|
//si.currentLoad().then(data => console.log(' CPU: ', data.currentload, '%'));
|
2020-05-28 22:00:56 +02:00
|
|
|
// End log server load
|
|
|
|
|
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-09-18 13:57:38 +02:00
|
|
|
socket.on(SocketIoEvent.JOIN_ROOM, (message: unknown, answerFn): void => {
|
2020-09-21 11:24:03 +02:00
|
|
|
//console.log(SocketIoEvent.JOIN_ROOM, message);
|
2020-05-12 11:49:55 +02:00
|
|
|
try {
|
2020-06-09 23:07:19 +02:00
|
|
|
if (!isJoinRoomMessageInterface(message)) {
|
2020-09-18 13:57:38 +02:00
|
|
|
socket.emit(SocketIoEvent.MESSAGE_ERROR, {message: 'Invalid JOIN_ROOM message.'});
|
2020-06-09 23:07:19 +02:00
|
|
|
console.warn('Invalid JOIN_ROOM message received: ', message);
|
2020-05-22 22:59:43 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-06-09 23:07:19 +02:00
|
|
|
const roomId = message.roomId;
|
2020-04-05 15:51:47 +02:00
|
|
|
|
2020-06-09 15:54:54 +02:00
|
|
|
const Client = (socket as ExSocketInterface);
|
2020-05-10 19:54:41 +02:00
|
|
|
|
2020-05-15 23:24:04 +02:00
|
|
|
if (Client.roomId === roomId) {
|
2020-05-12 11:49:55 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-05-10 13:58:32 +02:00
|
|
|
|
2020-05-12 11:49:55 +02:00
|
|
|
//leave previous room
|
|
|
|
this.leaveRoom(Client);
|
2020-05-10 13:58:32 +02:00
|
|
|
|
2020-05-12 11:49:55 +02:00
|
|
|
//join new previous room
|
2020-06-09 23:07:19 +02:00
|
|
|
const world = this.joinRoom(Client, roomId, message.position);
|
2020-04-05 15:51:47 +02:00
|
|
|
|
2020-09-16 16:06:43 +02:00
|
|
|
const things = world.setViewport(Client, message.viewport);
|
|
|
|
|
|
|
|
const listOfUsers: Array<MessageUserPosition> = [];
|
|
|
|
const listOfGroups: Array<GroupUpdateInterface> = [];
|
|
|
|
|
|
|
|
for (const thing of things) {
|
|
|
|
if (thing instanceof User) {
|
|
|
|
const player: ExSocketInterface|undefined = this.sockets.get(thing.id);
|
|
|
|
if (player === undefined) {
|
|
|
|
console.warn('Something went wrong. The World contains a user "'+thing.id+"' but this user does not exist in the sockets list!");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
listOfUsers.push(new MessageUserPosition(thing.id, player.name, player.characterLayers, player.position));
|
|
|
|
} else if (thing instanceof Group) {
|
|
|
|
listOfGroups.push({
|
|
|
|
groupId: thing.getId(),
|
|
|
|
position: thing.getPosition(),
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
console.error("Unexpected type for Movable returned by setViewport");
|
2020-06-29 19:16:15 +02:00
|
|
|
}
|
2020-09-16 16:06:43 +02:00
|
|
|
}
|
2020-07-27 22:36:07 +02:00
|
|
|
|
|
|
|
const listOfItems: {[itemId: string]: unknown} = {};
|
|
|
|
for (const [itemId, item] of world.getItemsState().entries()) {
|
|
|
|
listOfItems[itemId] = item;
|
|
|
|
}
|
|
|
|
|
2020-09-16 09:31:44 +02:00
|
|
|
//console.warn('ANSWER PLAYER POSITIONS', listOfUsers);
|
|
|
|
if (answerFn === undefined && ALLOW_ARTILLERY === true) {
|
|
|
|
// For some reason, answerFn can be undefined if we use Artillery (?)
|
|
|
|
return;
|
|
|
|
}
|
2020-09-16 11:41:03 +02:00
|
|
|
|
2020-07-27 22:36:07 +02:00
|
|
|
answerFn({
|
|
|
|
users: listOfUsers,
|
2020-09-16 16:06:43 +02:00
|
|
|
groups: listOfGroups,
|
2020-07-27 22:36:07 +02:00
|
|
|
items: listOfItems
|
|
|
|
});
|
2020-05-12 11:49:55 +02:00
|
|
|
} catch (e) {
|
|
|
|
console.error('An error occurred on "join_room" event');
|
|
|
|
console.error(e);
|
|
|
|
}
|
2020-04-04 12:42:02 +02:00
|
|
|
});
|
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
socket.on(SocketIoEvent.SET_VIEWPORT, (message: unknown): void => {
|
2020-05-12 11:49:55 +02:00
|
|
|
try {
|
2020-09-15 16:21:41 +02:00
|
|
|
//console.log('SET_VIEWPORT')
|
|
|
|
if (!isViewport(message)) {
|
2020-09-18 13:57:38 +02:00
|
|
|
socket.emit(SocketIoEvent.MESSAGE_ERROR, {message: 'Invalid SET_VIEWPORT message.'});
|
2020-09-15 16:21:41 +02:00
|
|
|
console.warn('Invalid SET_VIEWPORT message received: ', message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Client = (socket as ExSocketInterface);
|
|
|
|
Client.viewport = message;
|
|
|
|
|
|
|
|
const world = this.Worlds.get(Client.roomId);
|
|
|
|
if (!world) {
|
2020-09-16 09:31:44 +02:00
|
|
|
console.error("In SET_VIEWPORT, could not find world with id '", Client.roomId, "'");
|
2020-09-15 16:21:41 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
world.setViewport(Client, Client.viewport);
|
|
|
|
} catch (e) {
|
|
|
|
console.error('An error occurred on "SET_VIEWPORT" event');
|
|
|
|
console.error(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
socket.on(SocketIoEvent.USER_POSITION, (message: unknown): void => {
|
2020-09-16 09:31:44 +02:00
|
|
|
//console.log(SockerIoEvent.USER_POSITION, userMovesMessage);
|
2020-05-12 11:49:55 +02:00
|
|
|
try {
|
2020-09-18 18:16:26 +02:00
|
|
|
if (!(message instanceof Buffer)) {
|
|
|
|
socket.emit(SocketIoEvent.MESSAGE_ERROR, {message: 'Invalid USER_POSITION message. Expecting binary buffer.'});
|
|
|
|
console.warn('Invalid USER_POSITION message received (expecting binary buffer): ', message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
const userMovesMessage = UserMovesMessage.deserializeBinary(new Uint8Array(message as ArrayBuffer));
|
|
|
|
const userMoves = userMovesMessage.toObject();
|
|
|
|
|
|
|
|
const position = userMoves.position;
|
|
|
|
if (position === undefined) {
|
|
|
|
throw new Error('Position not found in message');
|
|
|
|
}
|
|
|
|
const viewport = userMoves.viewport;
|
|
|
|
if (viewport === undefined) {
|
|
|
|
throw new Error('Viewport not found in message');
|
|
|
|
}
|
|
|
|
|
|
|
|
let direction: string;
|
|
|
|
switch (position.direction) {
|
|
|
|
case Direction.UP:
|
|
|
|
direction = 'up';
|
|
|
|
break;
|
|
|
|
case Direction.DOWN:
|
|
|
|
direction = 'down';
|
|
|
|
break;
|
|
|
|
case Direction.LEFT:
|
|
|
|
direction = 'left';
|
|
|
|
break;
|
|
|
|
case Direction.RIGHT:
|
|
|
|
direction = 'right';
|
|
|
|
break;
|
2020-09-24 11:54:00 +02:00
|
|
|
default:
|
|
|
|
throw new Error("Unexpected direction");
|
2020-05-12 11:49:55 +02:00
|
|
|
}
|
|
|
|
|
2020-06-09 15:54:54 +02:00
|
|
|
const Client = (socket as ExSocketInterface);
|
2020-05-12 11:49:55 +02:00
|
|
|
|
|
|
|
// sending to all clients in room except sender
|
2020-09-18 13:57:38 +02:00
|
|
|
Client.position = {
|
|
|
|
x: position.x,
|
|
|
|
y: position.y,
|
|
|
|
direction,
|
|
|
|
moving: position.moving,
|
|
|
|
};
|
|
|
|
Client.viewport = viewport;
|
2020-05-12 11:49:55 +02:00
|
|
|
|
2020-05-19 19:11:12 +02:00
|
|
|
// update position in the world
|
2020-06-09 15:54:54 +02:00
|
|
|
const world = this.Worlds.get(Client.roomId);
|
2020-05-19 19:11:12 +02:00
|
|
|
if (!world) {
|
2020-09-16 09:31:44 +02:00
|
|
|
console.error("In USER_POSITION, could not find world with id '", Client.roomId, "'");
|
2020-05-19 19:11:12 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-09-15 10:06:11 +02:00
|
|
|
world.updatePosition(Client, Client.position);
|
2020-09-15 16:21:41 +02:00
|
|
|
world.setViewport(Client, Client.viewport);
|
2020-05-12 11:49:55 +02:00
|
|
|
} catch (e) {
|
|
|
|
console.error('An error occurred on "user_position" event');
|
|
|
|
console.error(e);
|
2020-04-04 17:22:02 +02:00
|
|
|
}
|
2020-05-14 20:39:30 +02:00
|
|
|
});
|
2020-04-19 19:32:38 +02:00
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
socket.on(SocketIoEvent.WEBRTC_SIGNAL, (data: unknown) => {
|
2020-08-20 00:05:00 +02:00
|
|
|
this.emitVideo((socket as ExSocketInterface), data);
|
2020-06-11 23:18:06 +02:00
|
|
|
});
|
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
socket.on(SocketIoEvent.WEBRTC_SCREEN_SHARING_SIGNAL, (data: unknown) => {
|
2020-08-20 00:05:00 +02:00
|
|
|
this.emitScreenSharing((socket as ExSocketInterface), data);
|
2020-04-19 19:32:38 +02:00
|
|
|
});
|
2020-04-29 01:40:32 +02:00
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
socket.on(SocketIoEvent.DISCONNECT, () => {
|
2020-06-09 15:54:54 +02:00
|
|
|
const Client = (socket as ExSocketInterface);
|
2020-05-12 11:49:55 +02:00
|
|
|
try {
|
|
|
|
//leave room
|
|
|
|
this.leaveRoom(Client);
|
|
|
|
|
|
|
|
//leave webrtc room
|
2020-05-18 18:33:04 +02:00
|
|
|
//socket.leave(Client.webRtcRoomId);
|
2020-05-12 11:49:55 +02:00
|
|
|
|
|
|
|
//delete all socket information
|
|
|
|
delete Client.webRtcRoomId;
|
|
|
|
delete Client.roomId;
|
|
|
|
delete Client.token;
|
|
|
|
delete Client.position;
|
|
|
|
} catch (e) {
|
|
|
|
console.error('An error occurred on "disconnect"');
|
|
|
|
console.error(e);
|
|
|
|
}
|
2020-05-23 15:04:25 +02:00
|
|
|
this.sockets.delete(Client.userId);
|
2020-05-28 22:00:56 +02:00
|
|
|
|
|
|
|
// Let's log server load when a user leaves
|
2020-06-09 15:54:54 +02:00
|
|
|
const srvSockets = this.Io.sockets.sockets;
|
2020-06-29 23:01:52 +02:00
|
|
|
this.nbClientsGauge.dec();
|
2020-05-28 22:00:56 +02:00
|
|
|
console.log('A user left (', Object.keys(srvSockets).length, ' connected users)');
|
2020-09-21 11:24:03 +02:00
|
|
|
//si.currentLoad().then(data => console.log('Current load: ', data.avgload));
|
|
|
|
//si.currentLoad().then(data => console.log('CPU: ', data.currentload, '%'));
|
2020-05-28 22:00:56 +02:00
|
|
|
// End log server load
|
2020-04-29 01:40:32 +02:00
|
|
|
});
|
2020-05-14 23:19:48 +02:00
|
|
|
|
|
|
|
// Let's send the user id to the user
|
2020-09-18 18:16:26 +02:00
|
|
|
socket.on(SocketIoEvent.SET_PLAYER_DETAILS, (message: unknown, answerFn) => {
|
|
|
|
//console.log(SocketIoEvent.SET_PLAYER_DETAILS, message);
|
|
|
|
if (!(message instanceof Buffer)) {
|
|
|
|
socket.emit(SocketIoEvent.MESSAGE_ERROR, {message: 'Invalid SET_PLAYER_DETAILS message. Expecting binary buffer.'});
|
|
|
|
console.warn('Invalid SET_PLAYER_DETAILS message received (expecting binary buffer): ', message);
|
|
|
|
return;
|
|
|
|
}
|
2020-09-17 17:14:47 +02:00
|
|
|
const playerDetailsMessage = SetPlayerDetailsMessage.deserializeBinary(new Uint8Array(message));
|
|
|
|
const playerDetails = {
|
|
|
|
name: playerDetailsMessage.getName(),
|
|
|
|
characterLayers: playerDetailsMessage.getCharacterlayersList()
|
|
|
|
};
|
2020-09-18 18:16:26 +02:00
|
|
|
//console.log(SocketIoEvent.SET_PLAYER_DETAILS, playerDetails);
|
2020-06-09 23:07:19 +02:00
|
|
|
if (!isSetPlayerDetailsMessage(playerDetails)) {
|
2020-09-18 13:57:38 +02:00
|
|
|
socket.emit(SocketIoEvent.MESSAGE_ERROR, {message: 'Invalid SET_PLAYER_DETAILS message.'});
|
2020-06-09 23:07:19 +02:00
|
|
|
console.warn('Invalid SET_PLAYER_DETAILS message received: ', playerDetails);
|
|
|
|
return;
|
|
|
|
}
|
2020-06-09 15:54:54 +02:00
|
|
|
const Client = (socket as ExSocketInterface);
|
2020-05-15 22:40:06 +02:00
|
|
|
Client.name = playerDetails.name;
|
2020-07-28 17:43:33 +02:00
|
|
|
Client.characterLayers = playerDetails.characterLayers;
|
2020-09-11 09:56:05 +02:00
|
|
|
// Artillery fails when receiving an acknowledgement that is not a JSON object
|
|
|
|
if (!Client.isArtillery) {
|
|
|
|
answerFn(Client.userId);
|
|
|
|
}
|
2020-05-15 22:40:06 +02:00
|
|
|
});
|
2020-08-31 14:03:40 +02:00
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
socket.on(SocketIoEvent.SET_SILENT, (silent: unknown) => {
|
2020-09-21 11:24:03 +02:00
|
|
|
//console.log(SocketIoEvent.SET_SILENT, silent);
|
2020-08-31 14:03:40 +02:00
|
|
|
if (typeof silent !== "boolean") {
|
2020-09-18 13:57:38 +02:00
|
|
|
socket.emit(SocketIoEvent.MESSAGE_ERROR, {message: 'Invalid SET_SILENT message.'});
|
2020-08-31 14:03:40 +02:00
|
|
|
console.warn('Invalid SET_SILENT message received: ', silent);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
const Client = (socket as ExSocketInterface);
|
|
|
|
|
|
|
|
// update position in the world
|
|
|
|
const world = this.Worlds.get(Client.roomId);
|
|
|
|
if (!world) {
|
2020-09-16 09:31:44 +02:00
|
|
|
console.error("In SET_SILENT, could not find world with id '", Client.roomId, "'");
|
2020-08-31 14:03:40 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
world.setSilent(Client, silent);
|
|
|
|
} catch (e) {
|
|
|
|
console.error('An error occurred on "SET_SILENT"');
|
|
|
|
console.error(e);
|
|
|
|
}
|
2020-05-15 22:40:06 +02:00
|
|
|
});
|
2020-07-27 22:36:07 +02:00
|
|
|
|
2020-09-24 17:24:37 +02:00
|
|
|
socket.on(SocketIoEvent.ITEM_EVENT, (message: unknown) => {
|
|
|
|
if (!(message instanceof Buffer)) {
|
|
|
|
socket.emit(SocketIoEvent.MESSAGE_ERROR, {message: 'Invalid ITEM_EVENT message. Expecting binary buffer.'});
|
|
|
|
console.warn('Invalid ITEM_EVENT message received (expecting binary buffer): ', message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const itemEventMessage = ItemEventMessage.deserializeBinary(new Uint8Array(message));
|
|
|
|
|
|
|
|
const itemEvent = ProtobufUtils.toItemEvent(itemEventMessage);
|
|
|
|
|
|
|
|
/*if (!isItemEventMessageInterface(itemEvent)) {
|
2020-09-18 13:57:38 +02:00
|
|
|
socket.emit(SocketIoEvent.MESSAGE_ERROR, {message: 'Invalid ITEM_EVENT message.'});
|
2020-07-27 22:36:07 +02:00
|
|
|
console.warn('Invalid ITEM_EVENT message received: ', itemEvent);
|
|
|
|
return;
|
2020-09-24 17:24:37 +02:00
|
|
|
}*/
|
2020-07-27 22:36:07 +02:00
|
|
|
try {
|
|
|
|
const Client = (socket as ExSocketInterface);
|
|
|
|
|
2020-09-24 17:24:37 +02:00
|
|
|
//socket.to(Client.roomId).emit(SocketIoEvent.ITEM_EVENT, itemEvent);
|
2020-07-27 22:36:07 +02:00
|
|
|
|
|
|
|
const world = this.Worlds.get(Client.roomId);
|
|
|
|
if (!world) {
|
|
|
|
console.error("Could not find world with id '", Client.roomId, "'");
|
|
|
|
return;
|
|
|
|
}
|
2020-09-24 17:24:37 +02:00
|
|
|
|
|
|
|
const subMessage = new SubMessage();
|
|
|
|
subMessage.setItemeventmessage(itemEventMessage);
|
|
|
|
|
|
|
|
// Let's send the event without using the SocketIO room.
|
|
|
|
for (let user of world.getUsers().values()) {
|
|
|
|
const client = this.searchClientByIdOrFail(user.id);
|
|
|
|
//client.emit(SocketIoEvent.ITEM_EVENT, itemEvent);
|
|
|
|
emitInBatch(client, SocketIoEvent.ITEM_EVENT, subMessage);
|
|
|
|
}
|
|
|
|
|
2020-07-27 22:36:07 +02:00
|
|
|
world.setItemState(itemEvent.itemId, itemEvent.state);
|
|
|
|
} catch (e) {
|
|
|
|
console.error('An error occurred on "item_event"');
|
|
|
|
console.error(e);
|
|
|
|
}
|
|
|
|
});
|
2020-04-29 01:40:32 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-08-20 00:05:00 +02:00
|
|
|
emitVideo(socket: ExSocketInterface, data: unknown){
|
2020-06-11 23:18:06 +02:00
|
|
|
if (!isWebRtcSignalMessageInterface(data)) {
|
2020-09-18 13:57:38 +02:00
|
|
|
socket.emit(SocketIoEvent.MESSAGE_ERROR, {message: 'Invalid WEBRTC_SIGNAL message.'});
|
2020-06-11 23:18:06 +02:00
|
|
|
console.warn('Invalid WEBRTC_SIGNAL message received: ', data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
//send only at user
|
|
|
|
const client = this.sockets.get(data.receiverId);
|
|
|
|
if (client === undefined) {
|
|
|
|
console.warn("While exchanging a WebRTC signal: client with id ", data.receiverId, " does not exist. This might be a race condition.");
|
|
|
|
return;
|
|
|
|
}
|
2020-09-18 13:57:38 +02:00
|
|
|
return client.emit(SocketIoEvent.WEBRTC_SIGNAL, {
|
2020-08-20 16:56:10 +02:00
|
|
|
userId: socket.userId,
|
|
|
|
signal: data.signal
|
|
|
|
});
|
2020-06-11 23:18:06 +02:00
|
|
|
}
|
|
|
|
|
2020-08-20 00:05:00 +02:00
|
|
|
emitScreenSharing(socket: ExSocketInterface, data: unknown){
|
|
|
|
if (!isWebRtcSignalMessageInterface(data)) {
|
2020-09-18 13:57:38 +02:00
|
|
|
socket.emit(SocketIoEvent.MESSAGE_ERROR, {message: 'Invalid WEBRTC_SCREEN_SHARING message.'});
|
2020-08-20 00:05:00 +02:00
|
|
|
console.warn('Invalid WEBRTC_SCREEN_SHARING message received: ', data);
|
2020-06-14 14:47:16 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-08-20 00:05:00 +02:00
|
|
|
//send only at user
|
|
|
|
const client = this.sockets.get(data.receiverId);
|
|
|
|
if (client === undefined) {
|
|
|
|
console.warn("While exchanging a WEBRTC_SCREEN_SHARING signal: client with id ", data.receiverId, " does not exist. This might be a race condition.");
|
|
|
|
return;
|
2020-06-14 20:53:18 +02:00
|
|
|
}
|
2020-09-18 13:57:38 +02:00
|
|
|
return client.emit(SocketIoEvent.WEBRTC_SCREEN_SHARING_SIGNAL, {
|
2020-08-20 16:56:10 +02:00
|
|
|
userId: socket.userId,
|
|
|
|
signal: data.signal
|
|
|
|
});
|
2020-06-14 14:47:16 +02:00
|
|
|
}
|
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
searchClientByIdOrFail(userId: number): ExSocketInterface {
|
2020-06-09 15:54:54 +02:00
|
|
|
const client: ExSocketInterface|undefined = this.sockets.get(userId);
|
2020-05-18 18:33:04 +02:00
|
|
|
if (client === undefined) {
|
|
|
|
throw new Error("Could not find user with id " + userId);
|
2020-05-08 21:17:52 +02:00
|
|
|
}
|
2020-05-18 18:33:04 +02:00
|
|
|
return client;
|
2020-05-03 16:28:18 +02:00
|
|
|
}
|
|
|
|
|
2020-05-10 19:54:41 +02:00
|
|
|
leaveRoom(Client : ExSocketInterface){
|
2020-05-19 19:11:12 +02:00
|
|
|
// leave previous room and world
|
2020-05-10 19:54:41 +02:00
|
|
|
if(Client.roomId){
|
2020-06-29 22:56:41 +02:00
|
|
|
try {
|
|
|
|
//user leave previous world
|
|
|
|
const world: World | undefined = this.Worlds.get(Client.roomId);
|
|
|
|
if (world) {
|
|
|
|
world.leave(Client);
|
|
|
|
if (world.isEmpty()) {
|
|
|
|
this.Worlds.delete(Client.roomId);
|
|
|
|
}
|
2020-06-29 19:14:54 +02:00
|
|
|
}
|
2020-06-29 22:56:41 +02:00
|
|
|
//user leave previous room
|
|
|
|
Client.leave(Client.roomId);
|
|
|
|
} finally {
|
2020-06-29 23:01:52 +02:00
|
|
|
this.nbClientsPerRoomGauge.dec({ room: Client.roomId });
|
2020-06-29 22:56:41 +02:00
|
|
|
delete Client.roomId;
|
2020-05-10 19:54:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-15 23:24:04 +02:00
|
|
|
|
2020-06-09 23:07:19 +02:00
|
|
|
private joinRoom(Client : ExSocketInterface, roomId: string, position: PointInterface): World {
|
2020-05-10 19:54:41 +02:00
|
|
|
//join user in room
|
2020-05-15 23:24:04 +02:00
|
|
|
Client.join(roomId);
|
2020-06-29 23:01:52 +02:00
|
|
|
this.nbClientsPerRoomGauge.inc({ room: roomId });
|
2020-05-15 23:24:04 +02:00
|
|
|
Client.roomId = roomId;
|
2020-05-22 22:59:43 +02:00
|
|
|
Client.position = position;
|
2020-05-10 19:54:41 +02:00
|
|
|
|
|
|
|
//check and create new world for a room
|
2020-05-19 19:11:12 +02:00
|
|
|
let world = this.Worlds.get(roomId)
|
|
|
|
if(world === undefined){
|
2020-09-18 13:57:38 +02:00
|
|
|
world = new World((user1: number, group: Group) => {
|
2020-05-10 19:54:41 +02:00
|
|
|
this.connectedUser(user1, group);
|
2020-09-18 13:57:38 +02:00
|
|
|
}, (user1: number, group: Group) => {
|
2020-05-10 19:54:41 +02:00
|
|
|
this.disConnectedUser(user1, group);
|
2020-09-16 16:13:47 +02:00
|
|
|
}, MINIMUM_DISTANCE, GROUP_RADIUS, (thing: Movable, listener: User) => {
|
2020-09-15 16:21:41 +02:00
|
|
|
const clientListener = this.searchClientByIdOrFail(listener.id);
|
2020-09-16 16:06:43 +02:00
|
|
|
if (thing instanceof User) {
|
|
|
|
const clientUser = this.searchClientByIdOrFail(thing.id);
|
|
|
|
|
2020-09-24 14:50:28 +02:00
|
|
|
const userJoinedMessage = new UserJoinedMessage();
|
|
|
|
userJoinedMessage.setUserid(clientUser.userId);
|
|
|
|
userJoinedMessage.setName(clientUser.name);
|
|
|
|
userJoinedMessage.setCharacterlayersList(clientUser.characterLayers);
|
|
|
|
userJoinedMessage.setPosition(ProtobufUtils.toPositionMessage(clientUser.position));
|
|
|
|
|
|
|
|
const subMessage = new SubMessage();
|
|
|
|
subMessage.setUserjoinedmessage(userJoinedMessage);
|
|
|
|
|
|
|
|
emitInBatch(clientListener, SocketIoEvent.JOIN_ROOM, subMessage);
|
2020-09-16 16:06:43 +02:00
|
|
|
} else if (thing instanceof Group) {
|
2020-09-21 11:24:03 +02:00
|
|
|
this.emitCreateUpdateGroupEvent(clientListener, thing);
|
2020-09-16 16:06:43 +02:00
|
|
|
} else {
|
|
|
|
console.error('Unexpected type for Movable.');
|
|
|
|
}
|
|
|
|
}, (thing: Movable, position, listener) => {
|
2020-09-15 16:21:41 +02:00
|
|
|
const clientListener = this.searchClientByIdOrFail(listener.id);
|
2020-09-16 16:06:43 +02:00
|
|
|
if (thing instanceof User) {
|
|
|
|
const clientUser = this.searchClientByIdOrFail(thing.id);
|
|
|
|
|
2020-09-18 15:51:15 +02:00
|
|
|
const userMovedMessage = new UserMovedMessage();
|
|
|
|
userMovedMessage.setUserid(clientUser.userId);
|
2020-09-18 18:16:26 +02:00
|
|
|
userMovedMessage.setPosition(ProtobufUtils.toPositionMessage(clientUser.position));
|
2020-09-18 15:51:15 +02:00
|
|
|
|
|
|
|
const subMessage = new SubMessage();
|
|
|
|
subMessage.setUsermovedmessage(userMovedMessage);
|
|
|
|
|
|
|
|
clientListener.emitInBatch(SocketIoEvent.USER_MOVED, subMessage);
|
2020-09-16 16:06:43 +02:00
|
|
|
//console.log("Sending USER_MOVED event");
|
|
|
|
} else if (thing instanceof Group) {
|
2020-09-21 11:24:03 +02:00
|
|
|
this.emitCreateUpdateGroupEvent(clientListener, thing);
|
2020-09-16 16:06:43 +02:00
|
|
|
} else {
|
|
|
|
console.error('Unexpected type for Movable.');
|
|
|
|
}
|
|
|
|
}, (thing: Movable, listener) => {
|
2020-09-15 16:21:41 +02:00
|
|
|
const clientListener = this.searchClientByIdOrFail(listener.id);
|
2020-09-16 16:06:43 +02:00
|
|
|
if (thing instanceof User) {
|
|
|
|
const clientUser = this.searchClientByIdOrFail(thing.id);
|
2020-09-24 16:11:47 +02:00
|
|
|
this.emitUserLeftEvent(clientListener, clientUser.userId);
|
2020-09-16 16:06:43 +02:00
|
|
|
} else if (thing instanceof Group) {
|
2020-09-24 10:05:16 +02:00
|
|
|
this.emitDeleteGroupEvent(clientListener, thing.getId());
|
2020-09-16 16:06:43 +02:00
|
|
|
} else {
|
|
|
|
console.error('Unexpected type for Movable.');
|
|
|
|
}
|
2020-09-15 16:21:41 +02:00
|
|
|
|
2020-05-10 19:54:41 +02:00
|
|
|
});
|
2020-05-15 23:24:04 +02:00
|
|
|
this.Worlds.set(roomId, world);
|
2020-05-10 19:54:41 +02:00
|
|
|
}
|
|
|
|
|
2020-05-19 19:11:12 +02:00
|
|
|
// Dispatch groups position to newly connected user
|
|
|
|
world.getGroups().forEach((group: Group) => {
|
2020-09-24 10:05:16 +02:00
|
|
|
this.emitCreateUpdateGroupEvent(Client, group);
|
2020-05-19 19:11:12 +02:00
|
|
|
});
|
|
|
|
//join world
|
|
|
|
world.join(Client, Client.position);
|
|
|
|
return world;
|
2020-05-10 19:54:41 +02:00
|
|
|
}
|
|
|
|
|
2020-09-21 11:24:03 +02:00
|
|
|
private emitCreateUpdateGroupEvent(socket: Socket, group: Group): void {
|
|
|
|
const position = group.getPosition();
|
|
|
|
const pointMessage = new PointMessage();
|
|
|
|
pointMessage.setX(Math.floor(position.x));
|
|
|
|
pointMessage.setY(Math.floor(position.y));
|
|
|
|
const groupUpdateMessage = new GroupUpdateMessage();
|
|
|
|
groupUpdateMessage.setGroupid(group.getId());
|
|
|
|
groupUpdateMessage.setPosition(pointMessage);
|
|
|
|
|
2020-09-24 10:05:16 +02:00
|
|
|
const subMessage = new SubMessage();
|
|
|
|
subMessage.setGroupupdatemessage(groupUpdateMessage);
|
|
|
|
|
|
|
|
const client : ExSocketInterface = socket as ExSocketInterface;
|
|
|
|
emitInBatch(client, SocketIoEvent.GROUP_CREATE_UPDATE, subMessage);
|
|
|
|
//socket.emit(SocketIoEvent.GROUP_CREATE_UPDATE, groupUpdateMessage.serializeBinary().buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
private emitDeleteGroupEvent(socket: Socket, groupId: number): void {
|
|
|
|
const groupDeleteMessage = new GroupDeleteMessage();
|
|
|
|
groupDeleteMessage.setGroupid(groupId);
|
|
|
|
|
|
|
|
const subMessage = new SubMessage();
|
|
|
|
subMessage.setGroupdeletemessage(groupDeleteMessage);
|
|
|
|
|
|
|
|
const client : ExSocketInterface = socket as ExSocketInterface;
|
|
|
|
emitInBatch(client, SocketIoEvent.GROUP_DELETE, subMessage);
|
2020-09-21 11:24:03 +02:00
|
|
|
}
|
|
|
|
|
2020-09-24 16:11:47 +02:00
|
|
|
private emitUserLeftEvent(socket: Socket, userId: number): void {
|
|
|
|
const userLeftMessage = new UserLeftMessage();
|
|
|
|
userLeftMessage.setUserid(userId);
|
|
|
|
|
|
|
|
const subMessage = new SubMessage();
|
|
|
|
subMessage.setUserleftmessage(userLeftMessage);
|
|
|
|
|
|
|
|
const client : ExSocketInterface = socket as ExSocketInterface;
|
|
|
|
emitInBatch(client, SocketIoEvent.USER_LEFT, subMessage);
|
|
|
|
}
|
|
|
|
|
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;
|
2020-05-13 09:39:48 +02:00
|
|
|
//if two persons in room share
|
|
|
|
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-08-20 00:05:00 +02:00
|
|
|
|
|
|
|
// TODO: scanning all sockets is maybe not the most efficient
|
2020-06-09 15:54:54 +02:00
|
|
|
const 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) => {
|
|
|
|
|
2020-08-20 00:05:00 +02:00
|
|
|
const peerClients = clients.reduce((tabs: Array<UserInGroupInterface>, clientId: ExSocketInterface, indexClientId: number) => {
|
2020-05-23 15:04:25 +02:00
|
|
|
if (!clientId.userId || clientId.userId === client.userId) {
|
2020-04-29 01:40:32 +02:00
|
|
|
return tabs;
|
|
|
|
}
|
|
|
|
tabs.push({
|
2020-05-23 15:04:25 +02:00
|
|
|
userId: clientId.userId,
|
2020-05-14 20:39:30 +02:00
|
|
|
name: clientId.name,
|
2020-04-29 01:40:32 +02:00
|
|
|
initiator: index <= indexClientId
|
|
|
|
});
|
|
|
|
return tabs;
|
|
|
|
}, []);
|
|
|
|
|
2020-09-18 13:57:38 +02:00
|
|
|
client.emit(SocketIoEvent.WEBRTC_START, {clients: peerClients, roomId: roomId});
|
2020-04-04 04:08:12 +02:00
|
|
|
});
|
|
|
|
}
|
2020-04-04 16:25:03 +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-04-27 00:44:25 +02:00
|
|
|
|
|
|
|
//connected user
|
2020-09-18 13:57:38 +02:00
|
|
|
connectedUser(userId: number, group: Group) {
|
2020-05-18 18:33:04 +02:00
|
|
|
/*let Client = this.sockets.get(userId);
|
|
|
|
if (Client === undefined) {
|
2020-05-01 21:15:00 +02:00
|
|
|
return;
|
2020-05-18 18:33:04 +02:00
|
|
|
}*/
|
2020-06-09 15:54:54 +02:00
|
|
|
const Client = this.searchClientByIdOrFail(userId);
|
2020-09-18 13:57:38 +02:00
|
|
|
this.joinWebRtcRoom(Client, "webrtcroom"+group.getId());
|
2020-04-27 00:44:25 +02:00
|
|
|
}
|
|
|
|
|
2020-05-08 00:35:36 +02:00
|
|
|
//disconnect user
|
2020-09-18 13:57:38 +02:00
|
|
|
disConnectedUser(userId: number, group: Group) {
|
2020-06-09 15:54:54 +02:00
|
|
|
const Client = this.searchClientByIdOrFail(userId);
|
2020-09-18 13:57:38 +02:00
|
|
|
Client.to("webrtcroom"+group.getId()).emit(SocketIoEvent.WEBRTC_DISCONNECT, {
|
2020-05-18 18:33:04 +02:00
|
|
|
userId: userId
|
|
|
|
});
|
|
|
|
|
2020-06-05 13:07:18 +02:00
|
|
|
// Most of the time, sending a disconnect event to one of the players is enough (the player will close the connection
|
|
|
|
// which will be shut for the other player).
|
|
|
|
// However! In the rare case where the WebRTC connection is not yet established, if we close the connection on one of the player,
|
|
|
|
// the other player will try connecting until a timeout happens (during this time, the connection icon will be displayed for nothing).
|
|
|
|
// So we also send the disconnect event to the other player.
|
2020-06-09 15:54:54 +02:00
|
|
|
for (const user of group.getUsers()) {
|
2020-09-18 13:57:38 +02:00
|
|
|
Client.emit(SocketIoEvent.WEBRTC_DISCONNECT, {
|
2020-06-05 13:07:18 +02:00
|
|
|
userId: user.id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-05-18 18:33:04 +02:00
|
|
|
//disconnect webrtc room
|
|
|
|
if(!Client.webRtcRoomId){
|
2020-05-03 16:28:18 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-05-18 18:33:04 +02:00
|
|
|
Client.leave(Client.webRtcRoomId);
|
|
|
|
delete Client.webRtcRoomId;
|
2020-04-27 00:44:25 +02:00
|
|
|
}
|
2020-04-04 22:35:20 +02:00
|
|
|
}
|