2020-12-31 13:19:21 +01:00
|
|
|
package handlers
|
|
|
|
|
|
|
|
import (
|
2021-01-01 09:20:49 +01:00
|
|
|
"context"
|
2020-12-31 13:19:21 +01:00
|
|
|
"encoding/base64"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
|
2020-12-31 19:11:06 +01:00
|
|
|
"github.com/lestrrat-go/jwx/jwk"
|
|
|
|
"github.com/lestrrat-go/jwx/jwt"
|
|
|
|
"github.com/lestrrat-go/jwx/jwt/openid"
|
2020-12-31 13:19:21 +01:00
|
|
|
|
|
|
|
"git.cacert.org/oidc_login/app/services"
|
|
|
|
commonServices "git.cacert.org/oidc_login/common/services"
|
|
|
|
)
|
|
|
|
|
|
|
|
const sessionName = "resource_session"
|
|
|
|
|
2021-01-01 09:20:49 +01:00
|
|
|
func Authenticate(ctx context.Context, clientId string) func(http.Handler) http.Handler {
|
2020-12-31 13:19:21 +01:00
|
|
|
return func(next http.Handler) http.Handler {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
session, err := services.GetSessionStore().Get(r, sessionName)
|
|
|
|
if err != nil {
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
2020-12-31 19:11:06 +01:00
|
|
|
if _, ok := session.Values[sessionKeyIdToken]; ok {
|
2020-12-31 13:19:21 +01:00
|
|
|
next.ServeHTTP(w, r)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
session.Values[sessionRedirectTarget] = r.URL.String()
|
|
|
|
if err = session.Save(r, w); err != nil {
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var authUrl *url.URL
|
2021-01-01 09:20:49 +01:00
|
|
|
if authUrl, err = url.Parse(commonServices.GetOAuth2Config(ctx).Endpoint.AuthURL); err != nil {
|
2020-12-31 13:19:21 +01:00
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
queryValues := authUrl.Query()
|
|
|
|
queryValues.Set("client_id", clientId)
|
|
|
|
queryValues.Set("response_type", "code")
|
|
|
|
queryValues.Set("scope", "openid offline_access profile email")
|
|
|
|
queryValues.Set("state", base64.URLEncoding.EncodeToString(commonServices.GenerateKey(8)))
|
|
|
|
authUrl.RawQuery = queryValues.Encode()
|
|
|
|
|
|
|
|
w.Header().Set("Location", authUrl.String())
|
|
|
|
w.WriteHeader(http.StatusFound)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2020-12-31 19:11:06 +01:00
|
|
|
|
|
|
|
func ParseIdToken(token string, keySet *jwk.Set) (openid.Token, error) {
|
|
|
|
if parsedIdToken, err := jwt.ParseString(token, jwt.WithKeySet(keySet), jwt.WithOpenIDClaims()); err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else {
|
|
|
|
return parsedIdToken.(openid.Token), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|