This commit is contained in:
Magnus Åhall 2023-06-17 09:11:14 +02:00
parent a76c093d44
commit c255b58335
15 changed files with 658 additions and 115 deletions

View file

@ -3,7 +3,6 @@ package main
import (
// Standard
"encoding/json"
"errors"
"io"
"net/http"
)
@ -14,8 +13,8 @@ type Request struct {
func responseError(w http.ResponseWriter, err error) {
res := map[string]interface{}{
"ok": false,
"error": err.Error(),
"OK": false,
"Error": err.Error(),
}
resJSON, _ := json.Marshal(res)
@ -29,17 +28,9 @@ func responseData(w http.ResponseWriter, data interface{}) {
w.Write(resJSON)
}
func request(r *http.Request, data interface{}) (err error) {
func parseRequest(r *http.Request, data interface{}) (err error) {
body, _ := io.ReadAll(r.Body)
defer r.Body.Close()
err = json.Unmarshal(body, data)
return
}
func sessionUUID(r *http.Request) (string, error) {
headers := r.Header["X-Session-Id"]
if len(headers) > 0 {
return headers[0], nil
}
return "", errors.New("Invalid session")
}