2020-09-25 18:29:22 +02:00
|
|
|
import Axios from "axios";
|
2021-03-31 16:00:14 +02:00
|
|
|
import {PUSHER_URL, START_ROOM_URL} from "../Enum/EnvironmentVariable";
|
2020-09-25 18:29:22 +02:00
|
|
|
import {RoomConnection} from "./RoomConnection";
|
2021-05-12 09:13:25 +02:00
|
|
|
import type {OnConnectInterface, PositionInterface, ViewportInterface} from "./ConnexionModels";
|
2020-10-12 16:23:07 +02:00
|
|
|
import {GameConnexionTypes, urlManager} from "../Url/UrlManager";
|
|
|
|
import {localUserStore} from "./LocalUserStore";
|
|
|
|
import {LocalUser} from "./LocalUser";
|
|
|
|
import {Room} from "./Room";
|
2021-03-05 18:25:27 +01:00
|
|
|
|
2020-09-28 15:02:37 +02:00
|
|
|
|
2020-09-25 18:29:22 +02:00
|
|
|
class ConnectionManager {
|
2020-10-12 16:23:07 +02:00
|
|
|
private localUser!:LocalUser;
|
2020-09-29 17:12:28 +02:00
|
|
|
|
2020-11-22 12:40:03 +01:00
|
|
|
private connexionType?: GameConnexionTypes
|
2021-03-26 14:12:22 +01:00
|
|
|
private reconnectingTimeout: NodeJS.Timeout|null = null;
|
|
|
|
private _unloading:boolean = false;
|
2021-03-30 16:08:49 +02:00
|
|
|
|
2021-03-26 14:12:22 +01:00
|
|
|
get unloading () {
|
|
|
|
return this._unloading;
|
|
|
|
}
|
2021-03-30 16:08:49 +02:00
|
|
|
|
2021-03-26 14:12:22 +01:00
|
|
|
constructor() {
|
|
|
|
window.addEventListener('beforeunload', () => {
|
|
|
|
this._unloading = true;
|
|
|
|
if (this.reconnectingTimeout) clearTimeout(this.reconnectingTimeout)
|
|
|
|
})
|
|
|
|
}
|
2020-10-12 16:23:07 +02:00
|
|
|
/**
|
|
|
|
* Tries to login to the node server and return the starting map url to be loaded
|
|
|
|
*/
|
|
|
|
public async initGameConnexion(): Promise<Room> {
|
2020-09-29 17:12:28 +02:00
|
|
|
|
2020-10-12 16:23:07 +02:00
|
|
|
const connexionType = urlManager.getGameConnexionType();
|
2020-11-22 12:40:03 +01:00
|
|
|
this.connexionType = connexionType;
|
2020-10-12 16:23:07 +02:00
|
|
|
if(connexionType === GameConnexionTypes.register) {
|
|
|
|
const organizationMemberToken = urlManager.getOrganizationToken();
|
2021-03-31 16:00:14 +02:00
|
|
|
const data = await Axios.post(`${PUSHER_URL}/register`, {organizationMemberToken}).then(res => res.data);
|
2020-10-20 16:39:23 +02:00
|
|
|
this.localUser = new LocalUser(data.userUuid, data.authToken, data.textures);
|
2020-10-12 16:23:07 +02:00
|
|
|
localUserStore.saveUser(this.localUser);
|
2020-10-13 16:46:46 +02:00
|
|
|
|
2020-10-12 16:23:07 +02:00
|
|
|
const organizationSlug = data.organizationSlug;
|
|
|
|
const worldSlug = data.worldSlug;
|
|
|
|
const roomSlug = data.roomSlug;
|
2020-10-13 16:46:46 +02:00
|
|
|
|
2021-03-30 16:08:49 +02:00
|
|
|
const room = new Room('/@/'+organizationSlug+'/'+worldSlug+'/'+roomSlug + window.location.search + window.location.hash);
|
2021-01-21 09:40:11 +01:00
|
|
|
urlManager.pushRoomIdToUrl(room);
|
2020-10-12 16:23:07 +02:00
|
|
|
return Promise.resolve(room);
|
2020-12-01 19:34:36 +01:00
|
|
|
} else if (connexionType === GameConnexionTypes.organization || connexionType === GameConnexionTypes.anonymous || connexionType === GameConnexionTypes.empty) {
|
2020-10-12 16:23:07 +02:00
|
|
|
const localUser = localUserStore.getLocalUser();
|
2020-10-13 16:46:46 +02:00
|
|
|
|
2020-10-20 16:39:23 +02:00
|
|
|
if (localUser && localUser.jwtToken && localUser.uuid && localUser.textures) {
|
2020-10-15 16:48:42 +02:00
|
|
|
this.localUser = localUser;
|
|
|
|
try {
|
|
|
|
await this.verifyToken(localUser.jwtToken);
|
|
|
|
} catch(e) {
|
|
|
|
// If the token is invalid, let's generate an anonymous one.
|
|
|
|
console.error('JWT token invalid. Did it expire? Login anonymously instead.');
|
|
|
|
await this.anonymousLogin();
|
|
|
|
}
|
2020-10-12 16:23:07 +02:00
|
|
|
} else {
|
2020-10-15 16:48:42 +02:00
|
|
|
await this.anonymousLogin();
|
2020-10-12 16:23:07 +02:00
|
|
|
}
|
2020-10-13 17:20:20 +02:00
|
|
|
let roomId: string
|
|
|
|
if (connexionType === GameConnexionTypes.empty) {
|
2021-01-21 09:40:11 +01:00
|
|
|
roomId = START_ROOM_URL;
|
2020-10-13 17:20:20 +02:00
|
|
|
} else {
|
2021-03-30 16:08:49 +02:00
|
|
|
roomId = window.location.pathname + window.location.search + window.location.hash;
|
2020-10-13 17:20:20 +02:00
|
|
|
}
|
2020-12-04 11:30:35 +01:00
|
|
|
return Promise.resolve(new Room(roomId));
|
2020-09-25 18:29:22 +02:00
|
|
|
}
|
2020-10-13 17:20:20 +02:00
|
|
|
|
2021-03-31 15:48:25 +02:00
|
|
|
return Promise.reject(new Error('Invalid URL'));
|
2020-09-25 18:29:22 +02:00
|
|
|
}
|
2020-09-29 17:12:28 +02:00
|
|
|
|
2020-10-15 16:48:42 +02:00
|
|
|
private async verifyToken(token: string): Promise<void> {
|
2021-03-31 16:00:14 +02:00
|
|
|
await Axios.get(`${PUSHER_URL}/verify`, {params: {token}});
|
2020-10-15 16:48:42 +02:00
|
|
|
}
|
|
|
|
|
2020-10-21 14:55:18 +02:00
|
|
|
public async anonymousLogin(isBenchmark: boolean = false): Promise<void> {
|
2021-03-31 16:00:14 +02:00
|
|
|
const data = await Axios.post(`${PUSHER_URL}/anonymLogin`).then(res => res.data);
|
2020-10-20 16:39:23 +02:00
|
|
|
this.localUser = new LocalUser(data.userUuid, data.authToken, []);
|
2020-10-21 14:55:18 +02:00
|
|
|
if (!isBenchmark) { // In benchmark, we don't have a local storage.
|
|
|
|
localUserStore.saveUser(this.localUser);
|
|
|
|
}
|
2020-10-15 16:48:42 +02:00
|
|
|
}
|
|
|
|
|
2020-09-30 12:12:24 +02:00
|
|
|
public initBenchmark(): void {
|
2020-10-20 16:39:23 +02:00
|
|
|
this.localUser = new LocalUser('', 'test', []);
|
2020-09-30 12:12:24 +02:00
|
|
|
}
|
|
|
|
|
2021-04-02 21:21:11 +02:00
|
|
|
public connectToRoomSocket(roomId: string, name: string, characterLayers: string[], position: PositionInterface, viewport: ViewportInterface, companion: string|null): Promise<OnConnectInterface> {
|
2020-12-03 16:39:44 +01:00
|
|
|
return new Promise<OnConnectInterface>((resolve, reject) => {
|
2021-04-02 21:21:11 +02:00
|
|
|
const connection = new RoomConnection(this.localUser.jwtToken, roomId, name, characterLayers, position, viewport, companion);
|
2020-09-28 15:02:37 +02:00
|
|
|
connection.onConnectError((error: object) => {
|
|
|
|
console.log('An error occurred while connecting to socket server. Retrying');
|
|
|
|
reject(error);
|
2020-09-25 18:29:22 +02:00
|
|
|
});
|
2020-11-13 18:00:22 +01:00
|
|
|
|
2020-12-03 16:39:44 +01:00
|
|
|
connection.onConnectingError((event: CloseEvent) => {
|
|
|
|
console.log('An error occurred while connecting to socket server. Retrying');
|
|
|
|
reject(new Error('An error occurred while connecting to socket server. Retrying. Code: '+event.code+', Reason: '+event.reason));
|
|
|
|
});
|
|
|
|
|
|
|
|
connection.onConnect((connect: OnConnectInterface) => {
|
|
|
|
resolve(connect);
|
|
|
|
});
|
|
|
|
|
2020-09-28 15:02:37 +02:00
|
|
|
}).catch((err) => {
|
|
|
|
// Let's retry in 4-6 seconds
|
2020-12-03 16:39:44 +01:00
|
|
|
return new Promise<OnConnectInterface>((resolve, reject) => {
|
2021-03-26 14:12:22 +01:00
|
|
|
this.reconnectingTimeout = setTimeout(() => {
|
2020-12-03 16:39:44 +01:00
|
|
|
//todo: allow a way to break recursion?
|
|
|
|
//todo: find a way to avoid recursive function. Otherwise, the call stack will grow indefinitely.
|
2021-04-02 21:21:11 +02:00
|
|
|
this.connectToRoomSocket(roomId, name, characterLayers, position, viewport, companion).then((connection) => resolve(connection));
|
2020-09-28 15:02:37 +02:00
|
|
|
}, 4000 + Math.floor(Math.random() * 2000) );
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2020-11-22 12:40:03 +01:00
|
|
|
|
|
|
|
get getConnexionType(){
|
|
|
|
return this.connexionType;
|
|
|
|
}
|
2020-09-25 18:29:22 +02:00
|
|
|
}
|
|
|
|
|
2020-09-29 17:12:28 +02:00
|
|
|
export const connectionManager = new ConnectionManager();
|