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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
package handlers
import (
"apjournal/config"
"apjournal/internal/models"
"html/template"
"log/slog"
"net/http"
"os"
"strconv"
)
// Handlers structure
type Handlers struct {
cfg config.Config
// s *service.Service
log *slog.Logger
}
// NewHandlers constructor
func NewHandlers(
// cfg config.Config, s *service.Service, l *slog.Logger,
cfg config.Config, l *slog.Logger,
) *Handlers {
if l == nil {
l = slog.New(slog.NewJSONHandler(os.Stdout, nil))
}
h := &Handlers{
cfg: cfg,
// s: s,
log: l,
}
return h
}
// FIXME: global userscore for test
var us models.UserScore
func (h *Handlers) Ping(w http.ResponseWriter, r *http.Request) {
h.log.Info("got ping request")
w.Write([]byte("pong"))
}
func (h *Handlers) MainPage(w http.ResponseWriter, r *http.Request) {
h.log.Info("got mainpage request")
// tmpl := template.Must(template.ParseFiles("components/index.html"))
tmpl, err := template.ParseGlob("components/*.html")
if err != nil {
panic(err)
}
// tmpl.Execute(w, us)
us.ID = "test"
tmpl.ExecuteTemplate(w, "main", us)
}
func (h *Handlers) HandleForm(w http.ResponseWriter, r *http.Request) {
r.ParseForm()
h.log.Info("got postform request", "payload", r.PostForm)
magnitude := uint8(1)
mS := r.PostFormValue("magnitude")
if mS != "1" || mS != "" || mS != " " {
u64, err := strconv.ParseUint(mS, 10, 64)
magnitude = uint8(u64)
if err != nil {
// TODO: error handling
h.log.Warn("got an error", "error", err)
magnitude = uint8(1)
}
}
var at models.ActionType
switch r.PostFormValue("act_type") {
case "plus":
at = models.ActionTypePlus
case "minus":
at = models.ActionTypeMinus
default:
h.log.Warn("uknown actiontype", "type", r.PostFormValue("act_type"))
}
repeat := false
if r.PostFormValue("repeatable") == "on" {
repeat = true
}
// convert map to action object
act := models.Action{
Name: r.PostFormValue("name"),
Magnitude: magnitude,
Type: at,
Repeatable: repeat,
}
us.Actions = append(us.Actions, act)
tmpl := template.Must(template.ParseGlob("components/*.html"))
// tmpl := template.Must(template.ParseFiles("components/index.html"))
// tmpl.Execute(w, us)
tmpl.ExecuteTemplate(w, "main", us)
}
|