54 lines
1.6 KiB
Go
54 lines
1.6 KiB
Go
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
// Package token provides a handler for the OIDC token endpoint.
|
||
|
package token
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/ory/fosite"
|
||
|
"github.com/ory/fosite/handler/openid"
|
||
|
|
||
|
"go.pinniped.dev/internal/httputil/httperr"
|
||
|
"go.pinniped.dev/internal/plog"
|
||
|
)
|
||
|
|
||
|
func NewHandler(
|
||
|
oauthHelper fosite.OAuth2Provider,
|
||
|
) http.Handler {
|
||
|
return httperr.HandlerFunc(func(w http.ResponseWriter, r *http.Request) error {
|
||
|
var session openid.DefaultSession
|
||
|
accessRequest, err := oauthHelper.NewAccessRequest(r.Context(), r, &session)
|
||
|
if err != nil {
|
||
|
plog.Info("token request error", fositeErrorForLog(err)...)
|
||
|
oauthHelper.WriteAccessError(w, accessRequest, err)
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
accessResponse, err := oauthHelper.NewAccessResponse(r.Context(), accessRequest)
|
||
|
if err != nil {
|
||
|
plog.Info("token response error", fositeErrorForLog(err)...)
|
||
|
oauthHelper.WriteAccessError(w, accessRequest, err)
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
oauthHelper.WriteAccessResponse(w, accessRequest, accessResponse)
|
||
|
|
||
|
return nil
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// TODO: de-dup me.
|
||
|
func fositeErrorForLog(err error) []interface{} {
|
||
|
rfc6749Error := fosite.ErrorToRFC6749Error(err)
|
||
|
keysAndValues := make([]interface{}, 0)
|
||
|
keysAndValues = append(keysAndValues, "name")
|
||
|
keysAndValues = append(keysAndValues, rfc6749Error.Name)
|
||
|
keysAndValues = append(keysAndValues, "status")
|
||
|
keysAndValues = append(keysAndValues, rfc6749Error.Status())
|
||
|
keysAndValues = append(keysAndValues, "description")
|
||
|
keysAndValues = append(keysAndValues, rfc6749Error.Description)
|
||
|
return keysAndValues
|
||
|
}
|