mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-05 07:08:41 +00:00
0970f35df5
Do not sync repos with forge if the repo is not necessary in DB. In the DB, only repos that were active once or repos that are currently active are stored. When trying to enable new repos, the repos list is fetched from the forge instead and displayed directly. In addition to this, the forge func `Perm` was removed and is now merged with `Repo`. Solves a TODO on RepoBatch. --------- Co-authored-by: Anbraten <anton@ju60.de>
217 lines
7.1 KiB
Go
217 lines
7.1 KiB
Go
// Copyright 2021 Woodpecker Authors
|
|
//
|
|
// 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
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// 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.
|
|
|
|
package router
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/rs/zerolog"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/server/api"
|
|
"github.com/woodpecker-ci/woodpecker/server/api/debug"
|
|
"github.com/woodpecker-ci/woodpecker/server/router/middleware/session"
|
|
)
|
|
|
|
func apiRoutes(e *gin.Engine) {
|
|
apiBase := e.Group("/api")
|
|
{
|
|
user := apiBase.Group("/user")
|
|
{
|
|
user.Use(session.MustUser())
|
|
user.GET("", api.GetSelf)
|
|
user.GET("/feed", api.GetFeed)
|
|
user.GET("/repos", api.GetRepos)
|
|
user.POST("/token", api.PostToken)
|
|
user.DELETE("/token", api.DeleteToken)
|
|
}
|
|
|
|
users := apiBase.Group("/users")
|
|
{
|
|
users.Use(session.MustAdmin())
|
|
users.GET("", api.GetUsers)
|
|
users.POST("", api.PostUser)
|
|
users.GET("/:login", api.GetUser)
|
|
users.PATCH("/:login", api.PatchUser)
|
|
users.DELETE("/:login", api.DeleteUser)
|
|
}
|
|
|
|
orgBase := apiBase.Group("/orgs/:owner")
|
|
{
|
|
orgBase.GET("/permissions", api.GetOrgPermissions)
|
|
|
|
org := orgBase.Group("")
|
|
{
|
|
org.Use(session.MustOrgMember(true))
|
|
org.GET("/secrets", api.GetOrgSecretList)
|
|
org.POST("/secrets", api.PostOrgSecret)
|
|
org.GET("/secrets/:secret", api.GetOrgSecret)
|
|
org.PATCH("/secrets/:secret", api.PatchOrgSecret)
|
|
org.DELETE("/secrets/:secret", api.DeleteOrgSecret)
|
|
}
|
|
}
|
|
|
|
apiBase.POST("/repos/:owner/:name", session.MustUser(), api.PostRepo)
|
|
repoBase := apiBase.Group("/repos/:owner/:name")
|
|
{
|
|
repoBase.Use(session.SetRepo())
|
|
repoBase.Use(session.SetPerm())
|
|
|
|
repoBase.GET("/permissions", api.GetRepoPermissions)
|
|
|
|
repo := repoBase.Group("")
|
|
{
|
|
repo.Use(session.MustPull)
|
|
|
|
repo.GET("", api.GetRepo)
|
|
|
|
repo.GET("/branches", api.GetRepoBranches)
|
|
repo.GET("/pull_requests", api.GetRepoPullRequests)
|
|
|
|
repo.GET("/pipelines", api.GetPipelines)
|
|
repo.POST("/pipelines", session.MustPush, api.CreatePipeline)
|
|
repo.GET("/pipelines/:number", api.GetPipeline)
|
|
repo.GET("/pipelines/:number/config", api.GetPipelineConfig)
|
|
|
|
// requires push permissions
|
|
repo.POST("/pipelines/:number", session.MustPush, api.PostPipeline)
|
|
repo.POST("/pipelines/:number/cancel", session.MustPush, api.CancelPipeline)
|
|
repo.POST("/pipelines/:number/approve", session.MustPush, api.PostApproval)
|
|
repo.POST("/pipelines/:number/decline", session.MustPush, api.PostDecline)
|
|
|
|
repo.GET("/logs/:number/:pid", api.GetStepLogs)
|
|
repo.GET("/logs/:number/:pid/:step", api.GetPipelineLogs)
|
|
|
|
// requires push permissions
|
|
repo.DELETE("/logs/:number", session.MustPush, api.DeletePipelineLogs)
|
|
|
|
repo.GET("/files/:number", api.FileList)
|
|
repo.GET("/files/:number/:step/*file", api.FileGet)
|
|
|
|
// requires push permissions
|
|
repo.GET("/secrets", session.MustPush, api.GetSecretList)
|
|
repo.POST("/secrets", session.MustPush, api.PostSecret)
|
|
repo.GET("/secrets/:secret", session.MustPush, api.GetSecret)
|
|
repo.PATCH("/secrets/:secret", session.MustPush, api.PatchSecret)
|
|
repo.DELETE("/secrets/:secret", session.MustPush, api.DeleteSecret)
|
|
|
|
// requires push permissions
|
|
repo.GET("/registry", session.MustPush, api.GetRegistryList)
|
|
repo.POST("/registry", session.MustPush, api.PostRegistry)
|
|
repo.GET("/registry/:registry", session.MustPush, api.GetRegistry)
|
|
repo.PATCH("/registry/:registry", session.MustPush, api.PatchRegistry)
|
|
repo.DELETE("/registry/:registry", session.MustPush, api.DeleteRegistry)
|
|
|
|
// requires push permissions
|
|
repo.GET("/cron", session.MustPush, api.GetCronList)
|
|
repo.POST("/cron", session.MustPush, api.PostCron)
|
|
repo.GET("/cron/:cron", session.MustPush, api.GetCron)
|
|
repo.POST("/cron/:cron", session.MustPush, api.RunCron)
|
|
repo.PATCH("/cron/:cron", session.MustPush, api.PatchCron)
|
|
repo.DELETE("/cron/:cron", session.MustPush, api.DeleteCron)
|
|
|
|
// requires admin permissions
|
|
repo.PATCH("", session.MustRepoAdmin(), api.PatchRepo)
|
|
repo.DELETE("", session.MustRepoAdmin(), api.DeleteRepo)
|
|
repo.POST("/chown", session.MustRepoAdmin(), api.ChownRepo)
|
|
repo.POST("/repair", session.MustRepoAdmin(), api.RepairRepo)
|
|
repo.POST("/move", session.MustRepoAdmin(), api.MoveRepo)
|
|
}
|
|
}
|
|
|
|
badges := apiBase.Group("/badges/:owner/:name")
|
|
{
|
|
badges.GET("/status.svg", api.GetBadge)
|
|
badges.GET("/cc.xml", api.GetCC)
|
|
}
|
|
|
|
pipelines := apiBase.Group("/pipelines")
|
|
{
|
|
pipelines.Use(session.MustAdmin())
|
|
pipelines.GET("", api.GetPipelineQueue)
|
|
}
|
|
|
|
queue := apiBase.Group("/queue")
|
|
{
|
|
queue.Use(session.MustAdmin())
|
|
queue.GET("/info", api.GetQueueInfo)
|
|
queue.POST("/pause", api.PauseQueue)
|
|
queue.POST("/resume", api.ResumeQueue)
|
|
queue.GET("/norunningpipelines", api.BlockTilQueueHasRunningItem)
|
|
}
|
|
|
|
secrets := apiBase.Group("/secrets")
|
|
{
|
|
secrets.Use(session.MustAdmin())
|
|
secrets.GET("", api.GetGlobalSecretList)
|
|
secrets.POST("", api.PostGlobalSecret)
|
|
secrets.GET("/:secret", api.GetGlobalSecret)
|
|
secrets.PATCH("/:secret", api.PatchGlobalSecret)
|
|
secrets.DELETE("/:secret", api.DeleteGlobalSecret)
|
|
}
|
|
|
|
logLevel := apiBase.Group("/log-level")
|
|
{
|
|
logLevel.Use(session.MustAdmin())
|
|
logLevel.GET("", api.LogLevel)
|
|
logLevel.POST("", api.SetLogLevel)
|
|
}
|
|
|
|
agentBase := apiBase.Group("/agents")
|
|
{
|
|
agentBase.Use(session.MustAdmin())
|
|
agentBase.GET("", api.GetAgents)
|
|
agentBase.POST("", api.PostAgent)
|
|
agentBase.GET("/:agent", api.GetAgent)
|
|
agentBase.GET("/:agent/tasks", api.GetAgentTasks)
|
|
agentBase.PATCH("/:agent", api.PatchAgent)
|
|
agentBase.DELETE("/:agent", api.DeleteAgent)
|
|
}
|
|
|
|
apiBase.GET("/signature/public-key", session.MustUser(), api.GetSignaturePublicKey)
|
|
|
|
apiBase.POST("/hook", api.PostHook)
|
|
|
|
if zerolog.GlobalLevel() <= zerolog.DebugLevel {
|
|
debugger := apiBase.Group("/debug")
|
|
{
|
|
debugger.Use(session.MustAdmin())
|
|
debugger.GET("/pprof/", debug.IndexHandler())
|
|
debugger.GET("/pprof/heap", debug.HeapHandler())
|
|
debugger.GET("/pprof/goroutine", debug.GoroutineHandler())
|
|
debugger.GET("/pprof/block", debug.BlockHandler())
|
|
debugger.GET("/pprof/threadcreate", debug.ThreadCreateHandler())
|
|
debugger.GET("/pprof/cmdline", debug.CmdlineHandler())
|
|
debugger.GET("/pprof/profile", debug.ProfileHandler())
|
|
debugger.GET("/pprof/symbol", debug.SymbolHandler())
|
|
debugger.POST("/pprof/symbol", debug.SymbolHandler())
|
|
debugger.GET("/pprof/trace", debug.TraceHandler())
|
|
}
|
|
}
|
|
}
|
|
|
|
// TODO: remove /hook in favor of /api/hook
|
|
e.POST("/hook", api.PostHook)
|
|
|
|
// TODO: move to /api/stream
|
|
sse := e.Group("/stream")
|
|
{
|
|
sse.GET("/events", api.EventStreamSSE)
|
|
sse.GET("/logs/:owner/:name/:pipeline/:number",
|
|
session.SetRepo(),
|
|
session.SetPerm(),
|
|
session.MustPull,
|
|
api.LogStreamSSE,
|
|
)
|
|
}
|
|
}
|