Updating healthcheckHandler using json.Marshal method instead of raw json string.

This commit is contained in:
Maxime Delporte
2025-10-11 11:31:58 +02:00
parent 4f531c6fe0
commit 0db52ad9de

View File

@@ -1,7 +1,7 @@
package main
import (
"fmt"
"encoding/json"
"net/http"
)
@@ -13,22 +13,32 @@ healthcheckHandler needs can simply be included as a field in the application st
initialize it in main()
*/
func (app *application) healthcheckHandler(w http.ResponseWriter, r *http.Request) {
/*
Create a fixed-format JSON response from a string. Notice how we're using a raw
string literal (enclosed with backticks) so that we can include double-quote
characters in the JSON without needing to espace them? We also use the %q verb to
wrap the interpolated values in double-quotes.
*/
js := `{"status": "available", "environment": %q, "version": %q}`
js = fmt.Sprintf(js, app.config.env, version)
// Create a map which holds the information that we want to send in the response.
data := map[string]string{
"status": "available",
"environment": app.config.env,
"version": version,
}
/*
Set the "Content-Type: application/json" header on the response. If you forget to
this, Go will default to sending a "Content-Type: text/plain; charset=utf-8"
header instead.
Pass the map to the json.Marshal() function. This returns a []byte slice
containing the encoded JSON. If there was an error, we log it and send the client
a generic error message.
*/
js, err := json.Marshal(data)
if err != nil {
app.logger.Error(err.Error())
http.Error(w, "The server encountered a problem and could not process your request.", http.StatusInternalServerError)
}
// Append a newline to the JSON. This is just a small nicety to make it easier to
// view in terminal applications.
js = append(js, '\n')
// At this point, we know that encoding the data worked without any problem, so we
// can safely set any necessary HTTP headers for a successful response.
w.Header().Set("Content-Type", "application/json")
// Write the JSON as the HTTP response body.
w.Write([]byte(js))
// Use w.Write() to send the []byte slice containing the JSON as the response body.
w.Write(js)
}