2018-02-19 22:24:10 +00:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
package router
|
|
|
|
|
2016-05-02 19:21:25 +00:00
|
|
|
import (
|
|
|
|
"net/http"
|
2023-06-03 19:38:36 +00:00
|
|
|
"net/url"
|
2016-05-02 19:21:25 +00:00
|
|
|
|
2021-10-12 07:25:13 +00:00
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/rs/zerolog/log"
|
2024-05-24 20:35:04 +00:00
|
|
|
swagger_files "github.com/swaggo/files"
|
2023-06-03 19:38:36 +00:00
|
|
|
ginSwagger "github.com/swaggo/gin-swagger"
|
2023-08-07 14:05:18 +00:00
|
|
|
|
2023-12-08 07:15:08 +00:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/cmd/server/docs"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/api"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/api/metrics"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/router/middleware/header"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/router/middleware/session"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/router/middleware/token"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/web"
|
2016-05-02 19:21:25 +00:00
|
|
|
)
|
|
|
|
|
2024-05-13 20:58:21 +00:00
|
|
|
// Load loads the router.
|
2021-11-26 08:50:56 +00:00
|
|
|
func Load(noRouteHandler http.HandlerFunc, middleware ...gin.HandlerFunc) http.Handler {
|
2016-05-02 19:21:25 +00:00
|
|
|
e := gin.New()
|
2021-11-25 18:04:36 +00:00
|
|
|
e.UseRawPath = true
|
2016-05-02 19:21:25 +00:00
|
|
|
e.Use(gin.Recovery())
|
|
|
|
|
2021-09-27 21:32:08 +00:00
|
|
|
e.Use(func(c *gin.Context) {
|
2021-10-12 07:25:13 +00:00
|
|
|
log.Trace().Msgf("[%s] %s", c.Request.Method, c.Request.URL.String())
|
2021-09-27 21:32:08 +00:00
|
|
|
c.Next()
|
|
|
|
})
|
|
|
|
|
2016-05-02 19:21:25 +00:00
|
|
|
e.Use(header.NoCache)
|
|
|
|
e.Use(header.Options)
|
|
|
|
e.Use(header.Secure)
|
|
|
|
e.Use(middleware...)
|
|
|
|
e.Use(session.SetUser())
|
|
|
|
e.Use(token.Refresh)
|
|
|
|
|
2021-11-26 08:50:56 +00:00
|
|
|
e.NoRoute(gin.WrapF(noRouteHandler))
|
2016-05-02 19:21:25 +00:00
|
|
|
|
2023-08-07 14:05:18 +00:00
|
|
|
base := e.Group(server.Config.Server.RootPath)
|
2016-05-02 19:21:25 +00:00
|
|
|
{
|
2023-08-07 14:05:18 +00:00
|
|
|
base.GET("/web-config.js", web.Config)
|
|
|
|
|
|
|
|
base.GET("/logout", api.GetLogout)
|
|
|
|
base.GET("/login", api.HandleLogin)
|
|
|
|
auth := base.Group("/authorize")
|
|
|
|
{
|
|
|
|
auth.GET("", api.HandleAuth)
|
|
|
|
auth.POST("", api.HandleAuth)
|
|
|
|
auth.POST("/token", api.GetLoginToken)
|
|
|
|
}
|
2016-05-02 19:21:25 +00:00
|
|
|
|
2023-08-07 14:05:18 +00:00
|
|
|
base.GET("/metrics", metrics.PromHandler())
|
|
|
|
base.GET("/version", api.Version)
|
|
|
|
base.GET("/healthz", api.Health)
|
|
|
|
}
|
2017-10-05 21:17:27 +00:00
|
|
|
|
2023-08-07 14:05:18 +00:00
|
|
|
apiRoutes(base)
|
2023-12-27 21:16:15 +00:00
|
|
|
if server.Config.WebUI.EnableSwagger {
|
2023-08-03 00:42:30 +00:00
|
|
|
setupSwaggerConfigAndRoutes(e)
|
|
|
|
}
|
2021-10-12 19:01:14 +00:00
|
|
|
|
2016-07-08 22:40:29 +00:00
|
|
|
return e
|
2016-05-02 19:21:25 +00:00
|
|
|
}
|
2023-06-03 19:38:36 +00:00
|
|
|
|
|
|
|
func setupSwaggerConfigAndRoutes(e *gin.Engine) {
|
|
|
|
docs.SwaggerInfo.Host = getHost(server.Config.Server.Host)
|
2023-08-07 14:05:18 +00:00
|
|
|
docs.SwaggerInfo.BasePath = server.Config.Server.RootPath + "/api"
|
2024-05-24 20:35:04 +00:00
|
|
|
e.GET(server.Config.Server.RootPath+"/swagger/*any", ginSwagger.WrapHandler(swagger_files.Handler))
|
2023-06-03 19:38:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func getHost(s string) string {
|
|
|
|
parse, _ := url.Parse(s)
|
|
|
|
return parse.Host
|
|
|
|
}
|