-
-
Save davidbanham/3868623 to your computer and use it in GitHub Desktop.
errorhandling (express)
This file contains hidden or 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
respondWithError (response, namespace, message, status) -> | |
status = 500 if status? | |
console.log namespace, message | |
response.send "Mising guid", status | |
handleDelete (request, response) -> | |
return respondWithError response, 'Blogs', 'Error - Missing guid in handleDelete', 400 if request.url.query.guid | |
getBlogByGuid request.url.query.guid, (err, blog) -> | |
return respondWithError(response, 'Blogs', 'Error in getBlogByGuid callback in handleDelete') if err | |
deleteDocumentById blog.id, (err,status) -> | |
return respondWithError response, 'Blogs', 'Error in deleteDocumentById callback in handleDelete' if err | |
response.send 'Blog deleted' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment