mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	add try-catch to demo auth middleware (#1044)
- Since we validate email used in auth the route function needs to handle the possibility that userService.loginUserWithoutPassword can throw.
This commit is contained in:
		
							parent
							
								
									72445b6423
								
							
						
					
					
						commit
						28d0238732
					
				| @ -9,7 +9,11 @@ function demoAuthentication( | ||||
| ): void { | ||||
|     app.post(`${basePath}/api/admin/login`, async (req, res) => { | ||||
|         const { email } = req.body; | ||||
|         const user = await userService.loginUserWithoutPassword(email, true); | ||||
|         try { | ||||
|             const user = await userService.loginUserWithoutPassword( | ||||
|                 email, | ||||
|                 true, | ||||
|             ); | ||||
|             const session = req.session || {}; | ||||
|             // @ts-ignore
 | ||||
|             session.user = user; | ||||
| @ -19,6 +23,11 @@ function demoAuthentication( | ||||
|                 // @ts-ignore
 | ||||
|                 .json(req.session.user) | ||||
|                 .end(); | ||||
|         } catch (e) { | ||||
|             res.status(400) | ||||
|                 .json({ error: `Could not sign in with ${email}` }) | ||||
|                 .end(); | ||||
|         } | ||||
|     }); | ||||
| 
 | ||||
|     app.use(`${basePath}/api/admin/`, (req, res, next) => { | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user