2021-06-24 10:09:10 +02:00
|
|
|
import { HttpRequest, HttpResponse, TemplatedApp } from "uWebSockets.js";
|
|
|
|
import { BaseController } from "./BaseController";
|
|
|
|
import { parse } from "query-string";
|
2021-07-16 09:52:51 +02:00
|
|
|
import { adminApi } from "../Services/AdminApi";
|
2021-07-13 19:09:07 +02:00
|
|
|
import { ADMIN_API_URL } from "../Enum/EnvironmentVariable";
|
|
|
|
import { GameRoomPolicyTypes } from "../Model/PusherRoom";
|
2021-07-16 09:52:51 +02:00
|
|
|
import { MapDetailsData } from "../Services/AdminApi/MapDetailsData";
|
2021-08-15 08:51:35 +02:00
|
|
|
import { socketManager } from "../Services/SocketManager";
|
|
|
|
import { jwtTokenManager } from "../Services/JWTTokenManager";
|
2020-05-09 17:50:47 +02:00
|
|
|
|
2021-06-24 10:09:10 +02:00
|
|
|
export class MapController extends BaseController {
|
|
|
|
constructor(private App: TemplatedApp) {
|
2020-09-28 18:52:54 +02:00
|
|
|
super();
|
2020-05-09 17:50:47 +02:00
|
|
|
this.App = App;
|
2020-10-13 15:12:24 +02:00
|
|
|
this.getMapUrl();
|
2020-05-09 17:50:47 +02:00
|
|
|
}
|
|
|
|
|
2020-05-10 14:48:34 +02:00
|
|
|
// Returns a map mapping map name to file name of the map
|
2020-10-13 15:12:24 +02:00
|
|
|
getMapUrl() {
|
|
|
|
this.App.options("/map", (res: HttpResponse, req: HttpRequest) => {
|
2020-09-28 18:52:54 +02:00
|
|
|
this.addCorsHeaders(res);
|
|
|
|
|
|
|
|
res.end();
|
|
|
|
});
|
|
|
|
|
2020-10-13 15:12:24 +02:00
|
|
|
this.App.get("/map", (res: HttpResponse, req: HttpRequest) => {
|
2020-10-13 15:29:08 +02:00
|
|
|
res.onAborted(() => {
|
2021-06-24 10:09:10 +02:00
|
|
|
console.warn("/map request was aborted");
|
|
|
|
});
|
2020-10-13 15:29:08 +02:00
|
|
|
|
2020-10-13 15:12:24 +02:00
|
|
|
const query = parse(req.getQuery());
|
|
|
|
|
2021-07-13 19:09:07 +02:00
|
|
|
if (typeof query.playUri !== "string") {
|
|
|
|
console.error("Expected playUri parameter in /map endpoint");
|
2020-10-15 17:27:40 +02:00
|
|
|
res.writeStatus("400 Bad request");
|
|
|
|
this.addCorsHeaders(res);
|
2021-07-13 19:09:07 +02:00
|
|
|
res.end("Expected playUri parameter");
|
2020-11-13 12:11:59 +01:00
|
|
|
return;
|
2020-10-13 15:12:24 +02:00
|
|
|
}
|
2021-07-13 19:09:07 +02:00
|
|
|
|
|
|
|
// If no admin URL is set, let's react on '/_/[instance]/[map url]' URLs
|
|
|
|
if (!ADMIN_API_URL) {
|
|
|
|
const roomUrl = new URL(query.playUri);
|
|
|
|
|
|
|
|
const match = /\/_\/[^/]+\/(.+)/.exec(roomUrl.pathname);
|
|
|
|
if (!match) {
|
|
|
|
res.writeStatus("404 Not Found");
|
|
|
|
this.addCorsHeaders(res);
|
|
|
|
res.end(JSON.stringify({}));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const mapUrl = roomUrl.protocol + "//" + match[1];
|
|
|
|
|
|
|
|
res.writeStatus("200 OK");
|
2020-10-15 17:27:40 +02:00
|
|
|
this.addCorsHeaders(res);
|
2021-07-13 19:09:07 +02:00
|
|
|
res.end(
|
|
|
|
JSON.stringify({
|
|
|
|
mapUrl,
|
|
|
|
policy_type: GameRoomPolicyTypes.ANONYMOUS_POLICY,
|
|
|
|
roomSlug: "", // Deprecated
|
|
|
|
tags: [],
|
2021-07-16 09:52:51 +02:00
|
|
|
textures: [],
|
2021-07-13 19:09:07 +02:00
|
|
|
} as MapDetailsData)
|
|
|
|
);
|
|
|
|
|
2020-11-13 12:11:59 +01:00
|
|
|
return;
|
2020-10-13 15:12:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
(async () => {
|
2020-10-13 15:29:08 +02:00
|
|
|
try {
|
2021-08-15 08:51:35 +02:00
|
|
|
let userId: string | undefined = undefined;
|
|
|
|
if (query.authToken != undefined) {
|
|
|
|
const authTokenData = jwtTokenManager.decodeJWTToken(query.authToken as string);
|
|
|
|
userId = authTokenData.identifier;
|
|
|
|
}
|
|
|
|
const mapDetails = await adminApi.fetchMapDetails(query.playUri as string, userId);
|
2020-10-13 15:29:08 +02:00
|
|
|
|
2020-10-15 17:27:40 +02:00
|
|
|
res.writeStatus("200 OK");
|
|
|
|
this.addCorsHeaders(res);
|
|
|
|
res.end(JSON.stringify(mapDetails));
|
2020-10-13 15:29:08 +02:00
|
|
|
} catch (e) {
|
2021-01-17 20:42:33 +01:00
|
|
|
this.errorToResponse(e, res);
|
2020-10-13 15:29:08 +02:00
|
|
|
}
|
2020-10-13 15:12:24 +02:00
|
|
|
})();
|
2020-05-09 17:50:47 +02:00
|
|
|
});
|
|
|
|
}
|
2020-05-10 14:48:34 +02:00
|
|
|
}
|