mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-28 12:16:48 +08:00
32 lines
758 B
Go
32 lines
758 B
Go
package middleware
|
|
|
|
import (
|
|
"encoding/json"
|
|
. "github.com/mickael-kerjean/filestash/server/common"
|
|
"io/ioutil"
|
|
"net/http"
|
|
)
|
|
|
|
func BodyParser (fn func(App, http.ResponseWriter, *http.Request)) func(ctx App, res http.ResponseWriter, req *http.Request) {
|
|
extractBody := func(req *http.Request) (map[string]interface{}, error) {
|
|
var body map[string]interface{}
|
|
byt, err := ioutil.ReadAll(req.Body)
|
|
if err != nil {
|
|
return body, err
|
|
}
|
|
if err := json.Unmarshal(byt, &body); err != nil {
|
|
return body, err
|
|
}
|
|
return body, nil
|
|
}
|
|
|
|
return func(ctx App, res http.ResponseWriter, req *http.Request) {
|
|
var err error
|
|
if ctx.Body, err = extractBody(req); err != nil {
|
|
SendErrorResult(res, ErrNotValid)
|
|
return
|
|
}
|
|
fn(ctx, res, req)
|
|
}
|
|
}
|