-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.go
201 lines (179 loc) · 3.78 KB
/
main.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
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
/*
* Main listener
*
* Copyright (C) 2024 Runxi Yu <https://runxiyu.org>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
package main
import (
"context"
"crypto/tls"
"embed"
"flag"
"html/template"
"io/fs"
"log"
"log/slog"
"net"
"net/http"
"time"
)
var tmpl *template.Template
//go:embed build/static/* templates/*
//go:embed build/iadocs/*.pdf build/iadocs/*.htm build/iadocs/*.html
//go:embed build/docs/*
var runFS embed.FS
//go:embed go.* *.go
//go:embed docs/* iadocs/*
//go:embed frontend/* templates/*
//go:embed README.md LICENSE Makefile .editorconfig .gitignore .gitattributes
//go:embed scripts/* sql/*
var srcFS embed.FS
func main() {
var err error
var configPath string
flag.StringVar(
&configPath,
"c",
"cca.scfg",
"path to configuration file",
)
flag.Parse()
if err := fetchConfig(configPath); err != nil {
log.Fatalln(err)
}
slog.Info("setting up templates")
tmpl, err = template.ParseFS(runFS, "templates/*")
if err != nil {
log.Fatalln(err)
}
slog.Info("registering static handle")
staticFS, err := fs.Sub(runFS, "build/static")
if err != nil {
log.Fatalln(err)
}
http.Handle("/static/",
http.StripPrefix(
"/static/",
http.FileServer(http.FS(staticFS)),
),
)
slog.Info("registering iadocs handle")
iaDocsFS, err := fs.Sub(runFS, "build/iadocs")
if err != nil {
log.Fatalln(err)
}
http.Handle("/iadocs/",
http.StripPrefix(
"/iadocs/",
http.FileServer(http.FS(iaDocsFS)),
),
)
slog.Info("registering docs handle")
docsFS, err := fs.Sub(runFS, "build/docs")
if err != nil {
log.Fatalln(err)
}
http.Handle(
"/docs/",
http.StripPrefix(
"/docs/",
http.FileServer(http.FS(docsFS)),
),
)
slog.Info("registering source handle")
http.Handle(
"/src/",
http.StripPrefix(
"/src/", http.FileServer(http.FS(srcFS)),
),
)
slog.Info("registering handlers")
http.HandleFunc("/ws", handleWs)
setHandler("/{$}", handleIndex)
setHandler("/export/choices", handleExportChoices)
setHandler("/export/students", handleExportStudents)
setHandler("/auth", handleAuth)
setHandler("/state", handleState)
setHandler("/newcourses", handleNewCourses)
var l net.Listener
switch config.Listen.Trans {
case "plain":
slog.Info(
"plain",
"net", config.Listen.Net,
"addr", config.Listen.Addr,
)
l, err = net.Listen(config.Listen.Net, config.Listen.Addr)
if err != nil {
log.Fatalf(
"Failed to establish plain listener: %v\n",
err,
)
}
case "tls":
cer, err := tls.LoadX509KeyPair(
config.Listen.TLS.Cert,
config.Listen.TLS.Key,
)
if err != nil {
log.Fatalf(
"Failed to load TLS certificate and key: %v\n",
err,
)
}
tlsconfig := &tls.Config{
Certificates: []tls.Certificate{cer},
MinVersion: tls.VersionTLS13,
} //exhaustruct:ignore
slog.Info(
"tls",
"net", config.Listen.Net,
"addr", config.Listen.Addr,
)
l, err = tls.Listen(
config.Listen.Net,
config.Listen.Addr,
tlsconfig,
)
if err != nil {
log.Fatalf(
"Failed to establish TLS listener: %v\n",
err,
)
}
default:
log.Fatalln("listen.trans must be \"plain\" or \"tls\"")
}
slog.Info("setting up database")
if err := setupDatabase(); err != nil {
log.Fatalln(err)
}
slog.Info("loading state")
if err := loadState(); err != nil {
log.Fatalln(err)
}
slog.Info("setting up courses")
err = setupCourses(context.Background())
if err != nil {
log.Fatalln(err)
}
slog.Info("setting up JWKS")
if err := setupJwks(); err != nil {
log.Fatalln(err)
}
if config.Listen.Proto == "http" {
slog.Info("serving http")
srv := &http.Server{
ReadHeaderTimeout: time.Duration(
config.Perf.ReadHeaderTimeout,
) * time.Second,
} //exhaustruct:ignore
err = srv.Serve(l)
} else {
log.Fatalln("Unsupported protocol")
}
if err != nil {
log.Fatalln(err)
}
}