mirror of
https://github.com/project-zot/zot.git
synced 2025-01-06 22:40:28 -05:00
c0aaca8ed1
(cherry picked from commit d557da0baba819b7cd7e6b5941528776e125ac6d) build(ui): fix stacker builds (cherry picked from commit ba25daf02b4a9bc7ee1cb6f84b7a6b096ca7d61f) build(ui): various fixes - Fix metrics endpoint - Fix unit tests unit tests - Make the ui build optional in the makefile before the linter lint runs in the golangci-lint workflow - Do not attempt to include UI routes if search is enabled - Fix authorization for search endpoint fix: use zot tag in ui make target (cherry picked from commit 2a6882fa23f06b2d68c6c299773a6ff50bf90e78) Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com> Signed-off-by: Catalin Hofnar <catalin.hofnar@gmail.com> Signed-off-by: Andrei Aaron <aaaron@luxoft.com> Co-authored-by: Ramkumar Chinchani <rchincha@cisco.com>
28 lines
742 B
Go
28 lines
742 B
Go
//go:build debug
|
|
// +build debug
|
|
|
|
// @contact.name API Support
|
|
// @contact.url http://www.swagger.io/support
|
|
// @contact.email support@swagger.io
|
|
|
|
package debug
|
|
|
|
import (
|
|
"github.com/gorilla/mux"
|
|
httpSwagger "github.com/swaggo/http-swagger"
|
|
|
|
"zotregistry.io/zot/pkg/api/config"
|
|
"zotregistry.io/zot/pkg/log" //nolint:goimports
|
|
// as required by swaggo.
|
|
_ "zotregistry.io/zot/swagger"
|
|
)
|
|
|
|
func SetupSwaggerRoutes(conf *config.Config, router *mux.Router, authFunc mux.MiddlewareFunc,
|
|
log log.Logger,
|
|
) {
|
|
log.Info().Msg("setting up swagger route")
|
|
// swagger swagger "/swagger/v2/index.html"
|
|
swgRouter := router.PathPrefix("/swagger/v2/").Subrouter()
|
|
swgRouter.Use(authFunc)
|
|
swgRouter.Methods("GET").Handler(httpSwagger.WrapHandler)
|
|
}
|