28 lines
616 B
Go
28 lines
616 B
Go
|
package route
|
||
|
|
||
|
import (
|
||
|
"forge.cadoles.com/Cadoles/daddy/internal/config"
|
||
|
oidc "forge.cadoles.com/wpetit/goweb-oidc"
|
||
|
|
||
|
"github.com/go-chi/chi"
|
||
|
"gitlab.com/wpetit/goweb/static"
|
||
|
)
|
||
|
|
||
|
func Mount(r *chi.Mux, config *config.Config) error {
|
||
|
|
||
|
r.With(oidc.HandleCallback).Get("/oauth2/callback", handleLoginCallback)
|
||
|
r.Get("/logout", handleLogout)
|
||
|
r.Get("/login", handleLogin)
|
||
|
r.Get("/logout/redirect", handleLogoutRedirect)
|
||
|
|
||
|
r.Route("/api", func(r chi.Router) {
|
||
|
r.Use(oidc.Middleware)
|
||
|
|
||
|
})
|
||
|
|
||
|
notFoundHandler := r.NotFoundHandler()
|
||
|
r.Get("/*", static.Dir(config.HTTP.PublicDir, "", notFoundHandler))
|
||
|
|
||
|
return nil
|
||
|
}
|