@@ -170,6 +170,7 @@ func (g *Goic) checkState(state string) (string, error) {
170
170
return "" , ErrProviderState
171
171
}
172
172
173
+ delete (g .states , state )
173
174
return nonce , nil
174
175
}
175
176
@@ -329,14 +330,12 @@ func (g *Goic) process(res http.ResponseWriter, req *http.Request) {
329
330
return
330
331
}
331
332
332
- retry := ` (<a href="` + currentURL (req , true ) + `">retry</a>)`
333
333
tok , err := g .Authenticate (p , code , nonce , curl )
334
334
if err != nil {
335
- g .errorHTML (res , err , retry , "authenticate" )
335
+ g .errorHTML (res , err , restart , "authenticate" )
336
336
return
337
337
}
338
338
339
- g .UnsetState (state )
340
339
if g .userCallback == nil {
341
340
_ , _ = res .Write ([]byte ("OK, the auth flow is complete. However, backend is yet to request userinfo" ))
342
341
return
@@ -400,8 +399,12 @@ func (g *Goic) logIf(s string, v ...interface{}) {
400
399
// errorHTML shows error page with html like text
401
400
func (g * Goic ) errorHTML (res http.ResponseWriter , err error , h , label string ) {
402
401
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 ))
405
408
}
406
409
407
410
func (g * Goic ) UnsetState (s string ) {
0 commit comments