woodpecker/server/router/router.go

70 lines
1.9 KiB
Go
Raw Normal View History

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"
"github.com/gin-gonic/gin"
"github.com/rs/zerolog/log"
"github.com/woodpecker-ci/woodpecker/server/api"
"github.com/woodpecker-ci/woodpecker/server/api/metrics"
"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"
"github.com/woodpecker-ci/woodpecker/server/web"
2016-05-02 19:21:25 +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()
e.UseRawPath = true
2016-05-02 19:21:25 +00:00
e.Use(gin.Recovery())
e.Use(func(c *gin.Context) {
log.Trace().Msgf("[%s] %s", c.Request.Method, c.Request.URL.String())
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
2021-11-26 08:50:56 +00:00
e.GET("/web-config.js", web.Config)
e.GET("/logout", api.GetLogout)
e.GET("/login", api.HandleLogin)
2016-05-02 19:21:25 +00:00
auth := e.Group("/authorize")
{
auth.GET("", api.HandleAuth)
auth.POST("", api.HandleAuth)
auth.POST("/token", api.GetLoginToken)
2016-05-02 19:21:25 +00:00
}
2021-10-13 16:36:11 +00:00
e.GET("/metrics", metrics.PromHandler())
e.GET("/version", api.Version)
e.GET("/healthz", api.Health)
2017-10-05 21:17:27 +00:00
2021-10-12 19:01:14 +00:00
apiRoutes(e)
return e
2016-05-02 19:21:25 +00:00
}