1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
package view
import (
"encoding/json"
"io"
"log"
"net/http"
"strconv"
"xengineering.eu/ceres/model"
)
func CreateJSON[O model.Object](db *model.DB, constructor func() model.Object) http.Handler {
return http.HandlerFunc(
func(w http.ResponseWriter, r *http.Request) {
buf, err := io.ReadAll(r.Body)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
object := constructor()
err = json.Unmarshal(buf, &object)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
err = db.Transaction(object.Create)
if err != nil {
log.Println("Could not create object.")
http.Error(w, "Could not create object.", http.StatusBadRequest)
return
}
},
)
}
func ReadJSON[O model.Object](db *model.DB, constructor func() model.Object) http.Handler {
return http.HandlerFunc(
func(w http.ResponseWriter, r *http.Request) {
object := constructor()
id, err := strconv.Atoi(r.PathValue("id"))
if err != nil {
// TODO
return
}
object.SetID(id)
err = db.Transaction(object.Read)
if err != nil {
// TODO
return
}
w.Header().Set("Content-Type", "application/json")
err = json.NewEncoder(w).Encode(object)
if err != nil {
// TODO
return
}
},
)
}
|