workadventure/pusher/src/Controller/MapController.ts

82 lines
2.7 KiB
TypeScript
Raw Normal View History

2021-06-24 10:09:10 +02:00
import { HttpRequest, HttpResponse, TemplatedApp } from "uWebSockets.js";
import { BaseController } from "./BaseController";
import { parse } from "query-string";
import { adminApi } from "../Services/AdminApi";
import { ADMIN_API_URL } from "../Enum/EnvironmentVariable";
import { GameRoomPolicyTypes } from "../Model/PusherRoom";
import { MapDetailsData } from "../Services/AdminApi/MapDetailsData";
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();
this.App = App;
2020-10-13 15:12:24 +02:00
this.getMapUrl();
}
// 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) => {
res.onAborted(() => {
2021-06-24 10:09:10 +02:00
console.warn("/map request was aborted");
});
2020-10-13 15:12:24 +02:00
const query = parse(req.getQuery());
if (typeof query.playUri !== "string") {
console.error("Expected playUri parameter in /map endpoint");
res.writeStatus("400 Bad request");
this.addCorsHeaders(res);
res.end("Expected playUri parameter");
2020-11-13 12:11:59 +01:00
return;
2020-10-13 15:12:24 +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");
this.addCorsHeaders(res);
res.end(
JSON.stringify({
mapUrl,
policy_type: GameRoomPolicyTypes.ANONYMOUS_POLICY,
roomSlug: "", // Deprecated
tags: [],
textures: [],
} as MapDetailsData)
);
2020-11-13 12:11:59 +01:00
return;
2020-10-13 15:12:24 +02:00
}
(async () => {
try {
const mapDetails = await adminApi.fetchMapDetails(query.playUri as string);
res.writeStatus("200 OK");
this.addCorsHeaders(res);
res.end(JSON.stringify(mapDetails));
} catch (e) {
this.errorToResponse(e, res);
}
2020-10-13 15:12:24 +02:00
})();
});
}
}