Skip to content

Commit 3ae7b56

Browse files
committed
feat: add AuthRedirectURL() for the case where net/http is not used
1 parent a3ae5aa commit 3ae7b56

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

goic.go

+13-3
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,20 @@ func (g *Goic) RequestAuth(p *Provider, state, nonce, redir string, res http.Res
130130
return ErrProviderSupport
131131
}
132132

133+
redirect := AuthRedirectURL(p, state, nonce, redir)
134+
if redirect == "" {
135+
return ErrProviderSupport
136+
}
137+
http.Redirect(res, req, redirect, http.StatusFound)
138+
return nil
139+
}
140+
141+
// AuthRedirectURL gives the full auth redirect URL for the provider
142+
// It returns empty string when there is an error
143+
func AuthRedirectURL(p *Provider, state, nonce, redir string) string {
133144
redirect, err := http.NewRequest("GET", p.wellKnown.AuthURI, nil)
134145
if err != nil {
135-
return err
146+
return ""
136147
}
137148

138149
qry := redirect.URL.Query()
@@ -144,8 +155,7 @@ func (g *Goic) RequestAuth(p *Provider, state, nonce, redir string, res http.Res
144155
qry.Add("nonce", nonce)
145156
redirect.URL.RawQuery = qry.Encode()
146157

147-
http.Redirect(res, req, redirect.URL.String(), http.StatusFound)
148-
return nil
158+
return redirect.URL.String()
149159
}
150160

151161
// checkState checks if given state is valid (i.e. known)

0 commit comments

Comments
 (0)