-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathendpoint_state.go
99 lines (86 loc) · 2.41 KB
/
endpoint_state.go
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
96
97
98
99
/*
* Let staff update state
*
* Copyright (C) 2024 Runxi Yu <https://runxiyu.org>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
package main
import (
"errors"
"log"
"net/http"
"strconv"
"time"
)
var (
errMethodNotAllowed = errors.New("method not allowed")
errInvalidForm = errors.New("invalid form")
errInvalidSchedule = errors.New("invalid schedule")
)
var loc *time.Location
func init() {
var err error
loc, err = time.LoadLocation("Asia/Shanghai")
if err != nil {
panic("We're a school in Shanghai, right? " + err.Error())
}
}
func handleState(w http.ResponseWriter, req *http.Request) (string, int, error) {
if req.Method != http.MethodPost {
return "", http.StatusMethodNotAllowed, errMethodNotAllowed
}
_, _, department, err := getUserInfoFromRequest(req)
if err != nil {
return "", http.StatusUnauthorized, err
}
if department != staffDepartment {
return "", http.StatusForbidden, errStaffOnly
}
err = req.ParseForm()
if err != nil {
return "", http.StatusBadRequest, wrapError(errInvalidForm, err)
}
log.Println(req.Form)
for k, v := range schedules {
_v := v.Load()
if _v != nil {
log.Printf("before schedule %s: %s\n", k, _v.Format("2006-01-02T15:04"))
} else {
log.Printf("before schedule %s: nil\n", k)
}
}
for yeargroup := range states {
keySched := "schedule_" + yeargroup
if newScheduleStr := req.FormValue(keySched); newScheduleStr != "" {
newSchedule, err := time.ParseInLocation("2006-01-02T15:04", newScheduleStr, loc)
if err != nil {
return "", http.StatusBadRequest, wrapError(errInvalidSchedule, err)
}
err = setSchedule(req.Context(), yeargroup, &newSchedule)
if err != nil {
return "", http.StatusBadRequest, wrapError(errCannotSetSchedule, err)
}
}
key := "yeargroup_" + yeargroup
if newStateStr := req.FormValue(key); newStateStr != "" {
newState, err := strconv.ParseUint(newStateStr, 10, 32)
if err != nil {
return "", http.StatusBadRequest, wrapError(errInvalidState, err)
}
err = setState(req.Context(), yeargroup, uint32(newState))
if err != nil {
return "", http.StatusBadRequest, wrapError(errCannotSetState, err)
}
}
}
for k, v := range schedules {
_v := v.Load()
if _v != nil {
log.Printf("after schedule %s: %s\n", k, _v.Format("2006-01-02T15:04"))
} else {
log.Printf("after schedule %s: nil\n", k)
}
}
http.Redirect(w, req, "/", http.StatusSeeOther)
return "", -1, nil
}