workadventure/back/src/Controller/MapController.ts

35 lines
1 KiB
TypeScript
Raw Normal View History

import {OK} from "http-status-codes";
import {URL_ROOM_STARTED} from "../Enum/EnvironmentVariable";
2020-09-28 18:52:54 +02:00
import {HttpRequest, HttpResponse, TemplatedApp} from "uWebSockets.js";
import {BaseController} from "./BaseController";
2020-09-28 15:02:37 +02:00
//todo: delete this
2020-09-28 18:52:54 +02:00
export class MapController extends BaseController{
2020-09-28 18:52:54 +02:00
constructor(private App : TemplatedApp) {
super();
this.App = App;
this.getStartMap();
}
// Returns a map mapping map name to file name of the map
getStartMap() {
2020-09-28 18:52:54 +02:00
this.App.options("/start-map", (res: HttpResponse, req: HttpRequest) => {
this.addCorsHeaders(res);
res.end();
});
this.App.get("/start-map", (res: HttpResponse, req: HttpRequest) => {
this.addCorsHeaders(res);
const url = req.getHeader('host').replace('api.', 'maps.') + URL_ROOM_STARTED;
res.writeStatus("200 OK").end(JSON.stringify({
2020-07-23 18:43:51 +02:00
mapUrlStart: url,
startInstance: "global"
2020-09-28 18:52:54 +02:00
}));
});
}
}