Skip to content

Commit 3db1dff

Browse files
committed
refactor: delete state immediately, fix error HTML
1 parent 68866a1 commit 3db1dff

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

goic.go

+8-5
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ func (g *Goic) checkState(state string) (string, error) {
170170
return "", ErrProviderState
171171
}
172172

173+
delete(g.states, state)
173174
return nonce, nil
174175
}
175176

@@ -329,14 +330,12 @@ func (g *Goic) process(res http.ResponseWriter, req *http.Request) {
329330
return
330331
}
331332

332-
retry := ` (<a href="` + currentURL(req, true) + `">retry</a>)`
333333
tok, err := g.Authenticate(p, code, nonce, curl)
334334
if err != nil {
335-
g.errorHTML(res, err, retry, "authenticate")
335+
g.errorHTML(res, err, restart, "authenticate")
336336
return
337337
}
338338

339-
g.UnsetState(state)
340339
if g.userCallback == nil {
341340
_, _ = res.Write([]byte("OK, the auth flow is complete. However, backend is yet to request userinfo"))
342341
return
@@ -400,8 +399,12 @@ func (g *Goic) logIf(s string, v ...interface{}) {
400399
// errorHTML shows error page with html like text
401400
func (g *Goic) errorHTML(res http.ResponseWriter, err error, h, label string) {
402401
g.logIf("[err] %s: %v\n", label, err)
403-
res.Header().Set("content-type", "text/html")
404-
http.Error(res, err.Error()+h, http.StatusInternalServerError)
402+
403+
res.Header().Set("Content-Type", "text/html; charset=utf-8")
404+
res.Header().Set("X-Content-Type-Options", "nosniff")
405+
res.WriteHeader(http.StatusInternalServerError)
406+
407+
_, _ = res.Write([]byte(err.Error() + h))
405408
}
406409

407410
func (g *Goic) UnsetState(s string) {

0 commit comments

Comments
 (0)