mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
This is a required endpoint for OIDC and is one we missed in our initial implementation. Also adds some rudamentary documentaiton about the implemented endpoints.
33 lines
1.2 KiB
Go
33 lines
1.2 KiB
Go
package handlers
|
|
|
|
import (
|
|
"github.com/fasthttp/router"
|
|
|
|
"github.com/authelia/authelia/internal/middlewares"
|
|
)
|
|
|
|
// RegisterOIDC registers the handlers with the fasthttp *router.Router. TODO: Add paths for UserInfo, Flush, Logout.
|
|
func RegisterOIDC(router *router.Router, middleware middlewares.RequestHandlerBridge) {
|
|
// TODO: Add OPTIONS handler.
|
|
router.GET("/.well-known/openid-configuration", middleware(oidcWellKnown))
|
|
|
|
router.GET(oidcConsentPath, middleware(oidcConsent))
|
|
|
|
router.POST(oidcConsentPath, middleware(oidcConsentPOST))
|
|
|
|
router.GET(oidcJWKsPath, middleware(oidcJWKs))
|
|
|
|
router.GET(oidcAuthorizePath, middleware(middlewares.NewHTTPToAutheliaHandlerAdaptor(oidcAuthorize)))
|
|
|
|
// TODO: Add OPTIONS handler.
|
|
router.POST(oidcTokenPath, middleware(middlewares.NewHTTPToAutheliaHandlerAdaptor(oidcToken)))
|
|
|
|
router.POST(oidcIntrospectPath, middleware(middlewares.NewHTTPToAutheliaHandlerAdaptor(oidcIntrospect)))
|
|
|
|
router.GET(oidcUserinfoPath, middleware(middlewares.NewHTTPToAutheliaHandlerAdaptor(oidcUserinfo)))
|
|
router.POST(oidcUserinfoPath, middleware(middlewares.NewHTTPToAutheliaHandlerAdaptor(oidcUserinfo)))
|
|
|
|
// TODO: Add OPTIONS handler.
|
|
router.POST(oidcRevokePath, middleware(middlewares.NewHTTPToAutheliaHandlerAdaptor(oidcRevoke)))
|
|
}
|