-
Notifications
You must be signed in to change notification settings - Fork 0
/
router.go
127 lines (120 loc) · 2.88 KB
/
router.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package seenit
import (
"encoding/base64"
"encoding/json"
"errors"
"image"
"net/http"
"time"
)
const (
commCookieName = "saved-communities"
)
type Handler func(db Database, w http.ResponseWriter, r *http.Request)
type BoundHandler func(w http.ResponseWriter, r *http.Request)
func BindHandler(h Handler, db Database) BoundHandler {
return func(w http.ResponseWriter, r *http.Request) {
h(db, w, r)
}
}
func ServeLanding(w http.ResponseWriter, r *http.Request) {
commCookie, err := r.Cookie(commCookieName)
var commCookieJson string
if errors.Is(err, http.ErrNoCookie) {
commCookieJson = ""
} else if err == nil {
commCookieJson = commCookie.Value
} else {
// TODO: how to handle errors?
return
}
var communities []Community
decodedComms, err := base64.StdEncoding.DecodeString(commCookieJson)
if err != nil {
// TODO: how to handle errors?
return
}
json.Unmarshal(decodedComms, &communities)
err = RenderLanding(communities, w)
if err != nil {
// TODO: how to handle errors?
}
}
func ServeUpload(w http.ResponseWriter, r *http.Request) {
community := r.FormValue("community")
commCookie, err := r.Cookie(commCookieName)
var commCookieJson string
if errors.Is(err, http.ErrNoCookie) {
commCookieJson = ""
} else if err == nil {
commCookieJson = commCookie.Value
} else {
// TODO: how to handle errors?
return
}
var communities []Community
decodedComms, err := base64.StdEncoding.DecodeString(commCookieJson)
if err != nil {
// TODO: how to handle errors?
return
}
json.Unmarshal(decodedComms, &communities)
alreadyAdded := false
for _, c := range communities {
if c.Name == community {
alreadyAdded = true
break
}
}
if !alreadyAdded {
communities = append(communities, Community{Name: community})
serializedComms, err := json.Marshal(communities)
if err != nil {
// TODO: how to handle errors?
}
expiration := time.Now().AddDate(1, 0, 0)
http.SetCookie(w, &http.Cookie{Name: commCookieName,
Value: base64.StdEncoding.EncodeToString(serializedComms),
Expires: expiration,
})
}
err = RenderUpload(community, w)
if err != nil {
// TODO: how to handle errors?
}
}
func ServeResult(db Database, w http.ResponseWriter, r *http.Request) {
file, _, err := r.FormFile("image")
if err != nil {
// TODO: how to handle errors?
}
defer file.Close()
image, _, err := image.Decode(file)
if err != nil {
// TODO: how to handle errors?
}
hash, err := ImageToHash(image)
if err != nil {
// TODO: how to handle errors?
}
community := r.FormValue("community")
seen, err := HaveSeen(community, hash, db)
if err != nil {
// TODO: how to handle errors?
}
if seen {
err = RenderSeen(w)
if err != nil {
// TODO: how to handle errors?
}
} else {
err = RecordHash(community, hash, db)
if err != nil {
// TODO: how to handle errors?
}
err = RenderUnseen(w)
if err != nil {
// TODO: how to handle errors?
}
}
}