Add summary prefix

This commit is contained in:
Pieter Vander Vennet 2024-02-18 16:06:16 +01:00
parent aae9b90ca2
commit eac8b85d35

View file

@ -201,7 +201,7 @@ const connectionString = "postgresql://user:password@localhost:5444/osm-poi"
const tcs = new OsmPoiDatabase(connectionString) const tcs = new OsmPoiDatabase(connectionString)
const server = new Server(2345, [ const server = new Server(2345, [
{ {
mustMatch: "status.json", mustMatch: "summary/status.json",
mimetype: "application/json", mimetype: "application/json",
handle: async (path: string) => { handle: async (path: string) => {
const layers = await tcs.getLayers() const layers = await tcs.getLayers()
@ -210,7 +210,7 @@ const server = new Server(2345, [
}, },
}, },
{ {
mustMatch: /[a-zA-Z0-9+]+\/[0-9]+\/[0-9]+\/[0-9]+\.json/, mustMatch: /summary\/[a-zA-Z0-9+]+\/[0-9]+\/[0-9]+\/[0-9]+\.json/,
mimetype: "application/json", // "application/vnd.geo+json", mimetype: "application/json", // "application/vnd.geo+json",
async handle(path) { async handle(path) {
console.log("Path is:", path, path.split(".")[0]) console.log("Path is:", path, path.split(".")[0])