Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 1.42 KB

README.md

File metadata and controls

23 lines (14 loc) · 1.42 KB

Exercise #14: Panic/Recover Middleware

exercise status: released

Exercise details

In the recover exercise we will be looking at the panic and recover mechanisms in Go and utilizing them to create middleware for an HTTP server.

Given a simple web server (see main.go) that can potentially panic, create an http.Handler that wraps the existing mux and will recover from any panics and then does the following:

  1. Logs the error, as well as the stack trace.
  2. Sets the status code to http.StatusInternalServerError (500) whenever a panic occurs.
  3. Write a "Something went wrong" message when a panic occurs.
  4. Ensure that partial writes and 200 headers aren't set even if the handler started writing to the http.ResponseWriter BEFORE the panic occurred (this one may be trickier)
  5. If the environment is set to be development, print the stack trace and the error to the webpage as well as to the logs. Otherwise default to the "Something went wrong" message described in (3).

Bonus

As a bonus exercises you can also look at ways to ensure you don't lose functionality like implementing the http.Flusher or the http.Hijacker interfaces.

Useful links