Last active
May 15, 2018 14:32
-
-
Save shlomisas/833e1d8e555d6cbe89504230adfd4b0c to your computer and use it in GitHub Desktop.
low-priority-code-error-handling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.put('/user/:id', async(req, res, next) => { | |
try { | |
// Find a user model in the Database | |
const user = await User.findById(req.params.id); | |
if (!user) { | |
const e = new Error('User not found'); | |
e.status = 404; | |
throw e; | |
} | |
// Update the user model | |
user.set(request.body); | |
await user.save(); | |
// Create a tracking log for the user's update operation | |
try { | |
const log = new Log({ | |
user: user.id, | |
action: 'update' | |
}); | |
await log.save(); | |
} catch (e) { | |
// If the user's update operation failed, we'll silently log it and continue | |
console.log(e); | |
} | |
res.json(user); | |
} catch (e) { | |
next(e); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment