Skip to content

Instantly share code, notes, and snippets.

@shlomisas
Last active May 15, 2018 14:32
Show Gist options
  • Save shlomisas/833e1d8e555d6cbe89504230adfd4b0c to your computer and use it in GitHub Desktop.
Save shlomisas/833e1d8e555d6cbe89504230adfd4b0c to your computer and use it in GitHub Desktop.
low-priority-code-error-handling
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