From 4a12fc92b5afd6da8d372a952a786a41bbf425b6 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Tue, 12 Sep 2023 07:57:46 -0400 Subject: [PATCH] Fixes for configuration; some debugging code --- src/main.ts | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/src/main.ts b/src/main.ts index bcdf2ab..9b272ef 100644 --- a/src/main.ts +++ b/src/main.ts @@ -44,32 +44,40 @@ class Server { private setupRoutes(): void { - this.app.post('/subscribe', async (req: Request, res: Response) => { + this.app.use(express.json()) + this.app.post('/web-push/subscribe', async (req: Request, res: Response) => { const subscription = req.body as Subscription; + console.log("/web-push/subscribe", req.body); await this.subscriptionService.addSubscription(subscription); res.status(201).send(); }); - this.app.post('/unsubscribe', async (req: Request, res: Response) => { + this.app.post('/web-push/unsubscribe', async (req: Request, res: Response) => { const subscription = req.body as Subscription; console.log(subscription); res.status(501).send(); }); - this.app.post('/mute', async (req: Request, res: Response) => { + this.app.post('/web-push/mute', async (req: Request, res: Response) => { const subscription = req.body as Subscription; console.log(subscription); res.status(501).send(); }); - this.app.get('/vapid', async (_: Request, res: Response) => { + this.app.get('/web-push/vapid', async (_: Request, res: Response) => { const vapidkeys: VapidKeys[] = await this.vapidService.getVapidKeys(); const vapidkey = vapidkeys[0]; res.send({"vapidKey": vapidkey['publicKey']}); }); + + this.app.use((req, _, next) => { + console.log("Raw body:", req.body); + next(); + }); + } @@ -95,6 +103,7 @@ class Server { }); } + private setupWorkerListeners(): void { if (this.worker) { this.worker.on('message', (message) => { @@ -107,6 +116,7 @@ class Server { } } + public start(): void { this.app.listen(this.port, () => { console.log(`Server is running on http://localhost:${this.port}`); @@ -116,7 +126,6 @@ class Server { - // Initialize and start the server const server = new Server(3000);