2018-02-20 00:24:10 +02:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
2018-03-21 15:02:17 +02:00
|
|
|
//
|
2018-02-20 00:24:10 +02: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 15:02:17 +02:00
|
|
|
//
|
2018-02-20 00:24:10 +02:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 15:02:17 +02:00
|
|
|
//
|
2018-02-20 00:24:10 +02: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 03:21:17 +02:00
|
|
|
package router
|
|
|
|
|
2016-05-02 21:21:25 +02:00
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2021-10-12 09:25:13 +02:00
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
|
|
|
2021-09-22 20:48:01 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/api"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/server/api/metrics"
|
2021-09-22 22:41:32 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/router/middleware/header"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/server/router/middleware/session"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/server/router/middleware/token"
|
2021-05-25 14:08:27 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/web"
|
2016-05-02 21:21:25 +02:00
|
|
|
)
|
|
|
|
|
2016-07-09 00:40:29 +02:00
|
|
|
// Load loads the router
|
2021-09-27 00:22:23 +02:00
|
|
|
func Load(serveHTTP func(w http.ResponseWriter, r *http.Request), middleware ...gin.HandlerFunc) http.Handler {
|
2016-05-02 21:21:25 +02:00
|
|
|
e := gin.New()
|
|
|
|
e.Use(gin.Recovery())
|
|
|
|
|
2021-09-27 23:32:08 +02:00
|
|
|
e.Use(func(c *gin.Context) {
|
2021-10-12 09:25:13 +02:00
|
|
|
log.Trace().Msgf("[%s] %s", c.Request.Method, c.Request.URL.String())
|
2021-09-27 23:32:08 +02:00
|
|
|
c.Next()
|
|
|
|
})
|
|
|
|
|
2016-05-02 21:21:25 +02:00
|
|
|
e.Use(header.NoCache)
|
|
|
|
e.Use(header.Options)
|
|
|
|
e.Use(header.Secure)
|
|
|
|
e.Use(middleware...)
|
|
|
|
e.Use(session.SetUser())
|
|
|
|
e.Use(token.Refresh)
|
|
|
|
|
2017-06-30 20:39:25 +02:00
|
|
|
e.NoRoute(func(c *gin.Context) {
|
2017-07-31 21:15:05 +02:00
|
|
|
req := c.Request.WithContext(
|
|
|
|
web.WithUser(
|
|
|
|
c.Request.Context(),
|
|
|
|
session.User(c),
|
|
|
|
),
|
|
|
|
)
|
2021-09-27 00:22:23 +02:00
|
|
|
serveHTTP(c.Writer, req)
|
2017-06-30 20:39:25 +02:00
|
|
|
})
|
2016-05-02 21:21:25 +02:00
|
|
|
|
2021-10-12 18:21:13 +02:00
|
|
|
e.GET("/web-config.js", web.WebConfig)
|
|
|
|
|
2021-09-22 20:48:01 +02:00
|
|
|
e.GET("/logout", api.GetLogout)
|
|
|
|
e.GET("/login", api.HandleLogin)
|
2016-05-02 21:21:25 +02:00
|
|
|
auth := e.Group("/authorize")
|
|
|
|
{
|
2021-09-22 20:48:01 +02:00
|
|
|
auth.GET("", api.HandleAuth)
|
|
|
|
auth.POST("", api.HandleAuth)
|
|
|
|
auth.POST("/token", api.GetLoginToken)
|
2016-05-02 21:21:25 +02:00
|
|
|
}
|
|
|
|
|
2021-10-13 18:36:11 +02:00
|
|
|
e.GET("/metrics", metrics.PromHandler())
|
2021-09-22 20:48:01 +02:00
|
|
|
e.GET("/version", api.Version)
|
|
|
|
e.GET("/healthz", api.Health)
|
2017-10-05 23:17:27 +02:00
|
|
|
|
2021-10-12 21:01:14 +02:00
|
|
|
apiRoutes(e)
|
|
|
|
|
2016-07-09 00:40:29 +02:00
|
|
|
return e
|
2016-05-02 21:21:25 +02:00
|
|
|
}
|