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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
|
package main
import (
"database/sql"
"encoding/json"
"flag"
"fmt"
_ "github.com/mattn/go-sqlite3"
"log"
"math"
"net"
"net/http"
"os"
"os/exec"
"os/signal"
"strings"
"syscall"
"text/template"
)
type Fruit struct {
Name string `json:"name"`
Img string `json:"img"`
Elo int `json:"elo"`
}
type Context struct {
db *sql.DB
users []string
templatePath string
socketPath string
fruitsPath string
}
type CurriedContextHandler func(*Context, http.ResponseWriter, *http.Request)
func curryContext(context *Context) func(CurriedContextHandler) http.HandlerFunc {
return func(handler CurriedContextHandler) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
log.Println(r.Method, r.URL.Path, r.RemoteAddr)
handler(context, w, r)
}
}
}
func indexHandler(context *Context, resp http.ResponseWriter, req *http.Request) {
// get from POST
winner := req.FormValue("winner")
contestants := req.Form["contestant[]"]
if winner != "" && len(contestants) == 2 {
losingFruitName := string(contestants[0])
if losingFruitName == winner {
losingFruitName = string(contestants[1])
}
winningFruit := fruitByName(context.db, winner)
losingFruit := fruitByName(context.db, losingFruitName)
winningFruit.Elo, losingFruit.Elo = updateElo(winningFruit.Elo, losingFruit.Elo)
updateFruit(context.db, winningFruit)
updateFruit(context.db, losingFruit)
log.Println(winningFruit.Name, "won against", losingFruit.Name, "new elo:", winningFruit.Elo, losingFruit.Elo)
}
fruitOne := randomFruit(context.db)
fruitTwo := randomFruit(context.db)
for fruitOne.Name == fruitTwo.Name {
fruitTwo = randomFruit(context.db)
}
templateFile := context.templatePath + "/vote.html"
vote, err := template.ParseFiles(templateFile)
if err != nil {
panic(err)
}
fruits := []Fruit{fruitOne, fruitTwo}
err = vote.Execute(resp, fruits)
if err != nil {
panic(err)
}
resp.Header().Set("Content-Type", "text/html")
}
func getStatsHandler(context *Context, resp http.ResponseWriter, _req *http.Request) {
rows, err := context.db.Query("SELECT name, img, elo FROM fruits ORDER BY elo DESC")
if err != nil {
panic(err)
}
defer rows.Close()
fruits := []Fruit{}
for rows.Next() {
fruit := Fruit{}
err = rows.Scan(&fruit.Name, &fruit.Img, &fruit.Elo)
if err != nil {
panic(err)
}
fruits = append(fruits, fruit)
}
templateFile := context.templatePath + "/stats.html"
stats, err := template.ParseFiles(templateFile)
if err != nil {
panic(err)
}
err = stats.Execute(resp, fruits)
if err != nil {
panic(err)
}
resp.Header().Set("Content-Type", "text/html")
}
func healthCheckHandler(context *Context, resp http.ResponseWriter, req *http.Request) {
resp.WriteHeader(http.StatusOK)
resp.Write([]byte("healthy"))
}
func main() {
log.Println("starting server...")
log.SetFlags(log.LstdFlags | log.Lshortfile)
context := getArgs()
log.Println("removing socket file", context.socketPath)
os.Remove(context.socketPath)
log.Println("migrating database...")
migrate(context.db)
seedFruits(context.db, context.fruitsPath)
listener, err := net.Listen("unix", context.socketPath)
if err != nil {
panic(err)
}
log.Println("listening on", context.socketPath)
os.Chmod(context.socketPath, 0700)
sigc := make(chan os.Signal, 1)
signal.Notify(sigc, os.Interrupt, os.Kill, syscall.SIGTERM)
go func(c chan os.Signal) {
sig := <-c
log.Printf("caught signal %s: shutting down.", sig)
listener.Close()
os.Exit(0)
}(sigc)
defer listener.Close()
log.Println("setting ACLs for users", context.users)
for _, user := range context.users {
setACL(context.socketPath, user)
}
curriedContext := curryContext(context)
mux := http.NewServeMux()
mux.HandleFunc("/", curriedContext(indexHandler))
mux.HandleFunc("/health", curriedContext(healthCheckHandler))
mux.HandleFunc("/stats", curriedContext(getStatsHandler))
log.Println("serving http...")
http.Serve(listener, mux)
}
func calculateRatingDelta(winnerRating int, loserRating int, K int) (int, int) {
winnerRatingFloat := float64(winnerRating)
loserRatingFloat := float64(loserRating)
expectedScoreWinner := 1 / (1 + math.Pow(10, (loserRatingFloat-winnerRatingFloat)/400))
expectedScoreLoser := 1 - expectedScoreWinner
changeWinner := int(math.Round(float64(K) * (1 - expectedScoreWinner)))
changeLoser := -int(math.Round(float64(K) * (expectedScoreLoser)))
return changeWinner, changeLoser
}
func updateElo(winnerElo int, loserElo int) (int, int) {
const K = 32
changeWinner, changeLoser := calculateRatingDelta(winnerElo, loserElo, K)
newWinnerElo := winnerElo + changeWinner
newLoserElo := loserElo + changeLoser
return newWinnerElo, newLoserElo
}
func seedFruits(db *sql.DB, fruitsPath string) {
log.Println("seeding fruits (haha)...")
fruitsContents, err := os.ReadFile(fruitsPath)
if err != nil {
panic(err)
}
jsonFruits := []Fruit{}
err = json.Unmarshal(fruitsContents, &jsonFruits)
if err != nil {
panic(err)
}
for _, fruit := range jsonFruits {
// insert if not exists
_, err := db.Exec("INSERT OR IGNORE INTO fruits (name, img) VALUES (?, ?)", fruit.Name, fruit.Img)
if err != nil {
panic(err)
}
}
}
func migrate(db *sql.DB) {
log.Println("creating fruits table...")
_, err := db.Exec(`
CREATE TABLE IF NOT EXISTS fruits (
name TEXT PRIMARY KEY,
img TEXT,
elo INTEGER DEFAULT 1400
);
`)
if err != nil {
panic(err)
}
}
func randomFruit(db *sql.DB) Fruit {
fruit := Fruit{}
err := db.QueryRow("SELECT name, img, elo FROM fruits ORDER BY RANDOM() LIMIT 1").Scan(&fruit.Name, &fruit.Img, &fruit.Elo)
if err != nil {
panic(err)
}
return fruit
}
func fruitByName(db *sql.DB, name string) Fruit {
fruit := Fruit{}
err := db.QueryRow("SELECT name, img, elo FROM fruits WHERE name = ?", name).Scan(&fruit.Name, &fruit.Img, &fruit.Elo)
if err != nil {
panic(err)
}
return fruit
}
func updateFruit(db *sql.DB, fruit Fruit) {
_, err := db.Exec("UPDATE fruits SET img = ?, elo = ? WHERE name = ?", fruit.Img, fruit.Elo, fruit.Name)
if err != nil {
panic(err)
}
}
func setACL(socketPath, user string) {
cmd := exec.Command("setfacl", "-m", "u:"+user+":rwx", socketPath)
if err := cmd.Run(); err != nil {
panic("failed to set ACL: " + err.Error())
}
}
func getArgs() *Context {
socketPath := flag.String("socket-path", "/tmp/go-server.sock", "Path to the Unix socket")
users := flag.String("users", "", "Comma-separated list of users for ACL")
database := flag.String("database-path", "/tmp/go-server.db", "Path to the SQLite database")
fruitsPath := flag.String("fruits", "/dev/null", "Path to the fruits file")
templatePath := flag.String("template", "", "Path to the template directory")
flag.Parse()
if *users == "" {
fmt.Println("You must specify at least one user with --users")
os.Exit(1)
}
if *templatePath == "" {
fmt.Println("You must specify a template directory with --template")
os.Exit(1)
}
log.Println("opening database at", *database, "with foreign keys enabled")
db, err := sql.Open("sqlite3", *database+"?_foreign_keys=on")
if err != nil {
panic(err)
}
return &Context{
db: db,
users: strings.Split(*users, ","),
socketPath: *socketPath,
fruitsPath: *fruitsPath,
templatePath: *templatePath,
}
}
|