This commit is contained in:
lbenedar
2026-03-17 12:22:29 +03:00
parent 4694f0aa2f
commit 714295bc0d
3 changed files with 36 additions and 3 deletions

View File

@@ -35,3 +35,7 @@ func (app *application) methodNotAllowedResponse(w http.ResponseWriter, r *http.
message := fmt.Sprintf("the %s method is not supported for this resource", r.Method)
app.errorResponse(w, r, http.StatusMethodNotAllowed, message)
}
func (app *application) badRequestResponse(w http.ResponseWriter, r *http.Request, err error) {
app.errorResponse(w, r, http.StatusBadRequest, err.Error())
}

View File

@@ -3,6 +3,8 @@ package main
import (
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"strconv"
@@ -37,3 +39,31 @@ func (app *application) writeJSON(w http.ResponseWriter, status int, data envelo
return nil
}
func (app *application) readJSON(w http.ResponseWriter, r *http.Request, dst any) error {
err := json.NewDecoder(r.Body).Decode(dst)
if err != nil {
var syntaxError *json.SyntaxError
var unmarshalTypeError *json.UnmarshalTypeError
var invalidMarshallError *json.InvalidUnmarshalError
switch {
case errors.As(err, &syntaxError):
return fmt.Errorf("body contains badly-formed JSON (at character %d)", syntaxError.Offset)
case errors.Is(err, io.ErrUnexpectedEOF):
return errors.New("body contains badly-formed JSON")
case errors.As(err, &unmarshalTypeError):
if unmarshalTypeError.Field != "" {
return fmt.Errorf("body contains incorrect JSON type for field %q", unmarshalTypeError.Field)
}
return fmt.Errorf("body contains incorrect JSON type for field (at character %d)", unmarshalTypeError.Offset)
case errors.Is(err, io.EOF):
return errors.New("body must be not empty")
case errors.As(err, &invalidMarshallError):
panic(err)
default:
return err
}
}
return nil
}

View File

@@ -1,7 +1,6 @@
package main
import (
"encoding/json"
"fmt"
"net/http"
"time"
@@ -17,9 +16,9 @@ func (app *application) createMovieHandler(w http.ResponseWriter, r *http.Reques
Genres []string `json:"genres"`
}
err := json.NewDecoder(r.Body).Decode(&input)
err := app.readJSON(w, r, &input)
if err != nil {
app.errorResponse(w, r, http.StatusBadRequest, err.Error())
app.badRequestResponse(w, r, err)
return
}
fmt.Fprintf(w, "%+v\n", input)