forked from lastlogin-net/obligator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.go
243 lines (195 loc) · 5.21 KB
/
handler.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
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
package obligator
import (
"fmt"
"html/template"
"io"
"net/http"
"net/url"
"os"
)
type Handler struct {
mux *http.ServeMux
}
func NewHandler(db Database, conf ServerConfig, tmpl *template.Template, jose *JOSE) *Handler {
mux := http.NewServeMux()
h := &Handler{
mux: mux,
}
var err error
fsHandler := http.FileServer(http.Dir("static"))
handleIndieAuthUser := func(w http.ResponseWriter, r *http.Request) {
uri := fmt.Sprintf("%s/.well-known/oauth-authorization-server", domainToUri(r.Host))
link := fmt.Sprintf("<%s>; rel=\"indieauth-metadata\"", uri)
w.Header().Set("Link", link)
tmplData := newCommonData(nil, db, r)
err = tmpl.ExecuteTemplate(w, "user.html", tmplData)
if err != nil {
w.WriteHeader(500)
io.WriteString(w, err.Error())
return
}
}
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
domain, err := db.GetDomain(r.Host)
if err != nil {
fsHandler.ServeHTTP(w, r)
return
}
if domain.HashedOwnerId == Hash("root") {
fsHandler.ServeHTTP(w, r)
return
}
handleIndieAuthUser(w, r)
})
mux.HandleFunc("/u/", handleIndieAuthUser)
mux.HandleFunc("/logo.png", func(w http.ResponseWriter, r *http.Request) {
if conf.LogoPng != nil {
w.Header()["Content-Type"] = []string{"image/png"}
w.Header()["Cache-Control"] = []string{"max-age=86400"}
w.Write(conf.LogoPng)
return
} else {
fsHandler.ServeHTTP(w, r)
}
})
mux.HandleFunc("/ip", func(w http.ResponseWriter, r *http.Request) {
remoteIp, err := getRemoteIp(r, conf.BehindProxy)
if err != nil {
w.WriteHeader(500)
io.WriteString(w, err.Error())
return
}
data := struct {
*commonData
RemoteIp string
}{
commonData: newCommonData(nil, db, r),
RemoteIp: remoteIp,
}
err = tmpl.ExecuteTemplate(w, "ip.html", data)
if err != nil {
w.WriteHeader(500)
io.WriteString(w, err.Error())
return
}
})
// TODO: probably needs to be combined with the API somehow, but the
// API currently only works over a unix socket for security.
mux.HandleFunc("/validate", func(w http.ResponseWriter, r *http.Request) {
r.ParseForm()
authServer := r.Form.Get("auth_server")
redirectUri := r.Form.Get("redirect_uri")
url := fmt.Sprintf("%s/auth?client_id=%s&redirect_uri=%s&response_type=code&state=&scope=",
domainToUri(authServer), redirectUri, redirectUri)
validation, err := validate(db, r, jose)
if err != nil {
fmt.Println(err)
http.Redirect(w, r, url, 307)
return
}
if validation != nil {
w.Header().Set("Remote-Id-Type", validation.IdType)
w.Header().Set("Remote-Id", validation.Id)
} else {
w.Header().Set("Remote-Id-Type", "")
w.Header().Set("Remote-Id", "")
}
})
loginFunc := func(w http.ResponseWriter, r *http.Request, fedCm bool) {
r.ParseForm()
canEmail := true
if _, err := db.GetSmtpConfig(); err != nil {
canEmail = false
}
providers, err := db.GetOAuth2Providers()
if err != nil {
w.WriteHeader(500)
io.WriteString(w, err.Error())
return
}
returnUri := r.Form.Get("return_uri")
if returnUri == "" {
returnUri = "/login"
if fedCm {
returnUri = "/login-fedcm-auto"
}
} else {
parsedUrl, err := url.Parse(returnUri)
if err != nil {
w.WriteHeader(400)
io.WriteString(w, err.Error())
return
}
// Prevent open redirect by verifying the return
// domain is in our database.
_, err = db.GetDomain(parsedUrl.Host)
if err != nil {
w.WriteHeader(403)
io.WriteString(w, err.Error())
return
}
}
setReturnUriCookie(r.Host, db, returnUri, w)
data := struct {
*commonData
CanEmail bool
OAuth2Providers []*OAuth2Provider
LogoMap map[string]template.HTML
FedCm bool
DisableQrLogin bool
}{
commonData: newCommonData(&commonData{
ReturnUri: returnUri,
//DisableHeaderButtons: true,
}, db, r),
CanEmail: canEmail,
OAuth2Providers: providers,
LogoMap: providerLogoMap,
FedCm: fedCm,
DisableQrLogin: conf.DisableQrLogin,
}
err = tmpl.ExecuteTemplate(w, "login.html", data)
if err != nil {
w.WriteHeader(500)
io.WriteString(w, err.Error())
return
}
}
mux.HandleFunc("/login-fedcm-auto", func(w http.ResponseWriter, r *http.Request) {
loginFunc(w, r, true)
})
mux.HandleFunc("/login", func(w http.ResponseWriter, r *http.Request) {
loginFunc(w, r, false)
})
mux.HandleFunc("/logout", func(w http.ResponseWriter, r *http.Request) {
r.ParseForm()
redirect := r.Form.Get("prev_page")
err = deleteLoginKeyCookie(r.Host, db, w)
if err != nil {
w.WriteHeader(500)
fmt.Fprintf(os.Stderr, err.Error())
}
w.Header().Add("Set-Login", "logged-out")
http.Redirect(w, r, redirect, http.StatusSeeOther)
})
mux.HandleFunc("/no-account", func(w http.ResponseWriter, r *http.Request) {
data := struct {
*commonData
}{
commonData: newCommonData(nil, db, r),
}
err = tmpl.ExecuteTemplate(w, "no-account.html", data)
if err != nil {
w.WriteHeader(500)
io.WriteString(w, err.Error())
return
}
})
mux.HandleFunc("/debug", func(w http.ResponseWriter, r *http.Request) {
printJson(r.Header)
})
return h
}
func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
h.mux.ServeHTTP(w, r)
}