2017-04-25 12:54:51 +05:30
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-06-09 05:03:54 +05:30
|
|
|
package web
|
2017-04-25 12:54:51 +05:30
|
|
|
|
|
|
|
import (
|
2021-01-26 21:06:53 +05:30
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"path"
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2021-11-10 01:27:58 +05:30
|
|
|
"code.gitea.io/gitea/models/unit"
|
2017-04-25 12:54:51 +05:30
|
|
|
"code.gitea.io/gitea/modules/context"
|
2021-07-28 15:12:56 +05:30
|
|
|
"code.gitea.io/gitea/modules/git"
|
2021-01-26 21:06:53 +05:30
|
|
|
"code.gitea.io/gitea/modules/httpcache"
|
2017-04-25 12:54:51 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-01-26 21:06:53 +05:30
|
|
|
"code.gitea.io/gitea/modules/metrics"
|
|
|
|
"code.gitea.io/gitea/modules/public"
|
2017-04-25 12:54:51 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-01-26 21:06:53 +05:30
|
|
|
"code.gitea.io/gitea/modules/storage"
|
2017-04-25 12:54:51 +05:30
|
|
|
"code.gitea.io/gitea/modules/templates"
|
|
|
|
"code.gitea.io/gitea/modules/validation"
|
2021-01-26 21:06:53 +05:30
|
|
|
"code.gitea.io/gitea/modules/web"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/misc"
|
2021-06-09 05:03:54 +05:30
|
|
|
"code.gitea.io/gitea/routers/web/admin"
|
2022-01-02 18:42:35 +05:30
|
|
|
"code.gitea.io/gitea/routers/web/auth"
|
2021-06-09 05:03:54 +05:30
|
|
|
"code.gitea.io/gitea/routers/web/dev"
|
|
|
|
"code.gitea.io/gitea/routers/web/events"
|
|
|
|
"code.gitea.io/gitea/routers/web/explore"
|
|
|
|
"code.gitea.io/gitea/routers/web/org"
|
|
|
|
"code.gitea.io/gitea/routers/web/repo"
|
|
|
|
"code.gitea.io/gitea/routers/web/user"
|
2022-01-02 18:42:35 +05:30
|
|
|
user_setting "code.gitea.io/gitea/routers/web/user/setting"
|
|
|
|
"code.gitea.io/gitea/routers/web/user/setting/security"
|
|
|
|
auth_service "code.gitea.io/gitea/services/auth"
|
2021-04-07 01:14:05 +05:30
|
|
|
"code.gitea.io/gitea/services/forms"
|
2021-04-09 03:55:57 +05:30
|
|
|
"code.gitea.io/gitea/services/lfs"
|
2019-09-24 10:32:49 +05:30
|
|
|
"code.gitea.io/gitea/services/mailer"
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2021-11-17 18:04:35 +05:30
|
|
|
_ "code.gitea.io/gitea/modules/session" // to registers all internal adapters
|
2019-07-17 06:34:37 +05:30
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
"gitea.com/go-chi/captcha"
|
|
|
|
"github.com/NYTimes/gziphandler"
|
2021-12-03 02:28:08 +05:30
|
|
|
"github.com/go-chi/chi/v5/middleware"
|
2021-03-04 06:55:30 +05:30
|
|
|
"github.com/go-chi/cors"
|
2021-01-26 21:06:53 +05:30
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2017-04-25 12:54:51 +05:30
|
|
|
)
|
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
const (
|
|
|
|
// GzipMinSize represents min size to compress for the body size of response
|
|
|
|
GzipMinSize = 1400
|
|
|
|
)
|
2020-11-13 18:21:07 +05:30
|
|
|
|
2021-06-09 05:03:54 +05:30
|
|
|
// CorsHandler return a http handler who set CORS options if enabled by config
|
|
|
|
func CorsHandler() func(next http.Handler) http.Handler {
|
2021-05-30 15:55:11 +05:30
|
|
|
if setting.CORSConfig.Enabled {
|
2021-06-09 05:03:54 +05:30
|
|
|
return cors.Handler(cors.Options{
|
2021-05-30 15:55:11 +05:30
|
|
|
//Scheme: setting.CORSConfig.Scheme, // FIXME: the cors middleware needs scheme option
|
|
|
|
AllowedOrigins: setting.CORSConfig.AllowDomain,
|
|
|
|
//setting.CORSConfig.AllowSubdomain // FIXME: the cors middleware needs allowSubdomain option
|
|
|
|
AllowedMethods: setting.CORSConfig.Methods,
|
|
|
|
AllowCredentials: setting.CORSConfig.AllowCredentials,
|
|
|
|
MaxAge: int(setting.CORSConfig.MaxAge.Seconds()),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-06-09 05:03:54 +05:30
|
|
|
return func(next http.Handler) http.Handler {
|
|
|
|
return next
|
|
|
|
}
|
2021-01-26 21:06:53 +05:30
|
|
|
}
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2021-06-09 05:03:54 +05:30
|
|
|
// Routes returns all web routes
|
2021-09-12 23:05:38 +05:30
|
|
|
func Routes(sessioner func(http.Handler) http.Handler) *web.Route {
|
2021-05-05 03:18:31 +05:30
|
|
|
routes := web.NewRoute()
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2021-05-30 15:55:11 +05:30
|
|
|
routes.Use(public.AssetsHandler(&public.Options{
|
|
|
|
Directory: path.Join(setting.StaticRootPath, "public"),
|
|
|
|
Prefix: "/assets",
|
2021-06-09 05:03:54 +05:30
|
|
|
CorsHandler: CorsHandler(),
|
2021-05-30 15:55:11 +05:30
|
|
|
}))
|
|
|
|
|
2021-09-12 23:05:38 +05:30
|
|
|
routes.Use(sessioner)
|
2021-01-26 21:06:53 +05:30
|
|
|
|
2021-05-05 03:18:31 +05:30
|
|
|
routes.Use(Recovery())
|
2021-01-26 23:34:20 +05:30
|
|
|
|
2021-05-05 03:18:31 +05:30
|
|
|
// We use r.Route here over r.Use because this prevents requests that are not for avatars having to go through this additional handler
|
2021-05-05 18:36:39 +05:30
|
|
|
routes.Route("/avatars/*", "GET, HEAD", storageHandler(setting.Avatar.Storage, "avatars", storage.Avatars))
|
|
|
|
routes.Route("/repo-avatars/*", "GET, HEAD", storageHandler(setting.RepoAvatar.Storage, "repo-avatars", storage.RepoAvatars))
|
2021-05-05 03:18:31 +05:30
|
|
|
|
|
|
|
// for health check - doeesn't need to be passed through gzip handler
|
|
|
|
routes.Head("/", func(w http.ResponseWriter, req *http.Request) {
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
})
|
|
|
|
|
|
|
|
// this png is very likely to always be below the limit for gzip so it doesn't need to pass through gzip
|
|
|
|
routes.Get("/apple-touch-icon.png", func(w http.ResponseWriter, req *http.Request) {
|
2021-05-10 01:33:09 +05:30
|
|
|
http.Redirect(w, req, path.Join(setting.StaticURLPrefix, "/assets/img/apple-touch-icon.png"), 301)
|
2021-05-05 03:18:31 +05:30
|
|
|
})
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2021-05-05 03:18:31 +05:30
|
|
|
common := []interface{}{}
|
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
if setting.EnableGzip {
|
|
|
|
h, err := gziphandler.GzipHandlerWithOpts(gziphandler.MinSize(GzipMinSize))
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal("GzipHandlerWithOpts failed: %v", err)
|
|
|
|
}
|
2021-05-05 03:18:31 +05:30
|
|
|
common = append(common, h)
|
2021-01-26 21:06:53 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
mailer.InitMailRender(templates.Mailer())
|
|
|
|
|
2021-01-27 20:26:54 +05:30
|
|
|
if setting.Service.EnableCaptcha {
|
2021-05-05 03:18:31 +05:30
|
|
|
// The captcha http.Handler should only fire on /captcha/* so we can just mount this on that url
|
|
|
|
routes.Route("/captcha/*", "GET,HEAD", append(common, captcha.Captchaer(context.GetImageCaptcha()))...)
|
2021-01-27 23:16:35 +05:30
|
|
|
}
|
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
if setting.HasRobotsTxt {
|
2021-05-05 03:18:31 +05:30
|
|
|
routes.Get("/robots.txt", append(common, func(w http.ResponseWriter, req *http.Request) {
|
2021-01-26 21:06:53 +05:30
|
|
|
filePath := path.Join(setting.CustomPath, "robots.txt")
|
|
|
|
fi, err := os.Stat(filePath)
|
|
|
|
if err == nil && httpcache.HandleTimeCache(req, w, fi) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
http.ServeFile(w, req, filePath)
|
2021-05-05 03:18:31 +05:30
|
|
|
})...)
|
2021-01-26 21:06:53 +05:30
|
|
|
}
|
|
|
|
|
2021-05-05 03:18:31 +05:30
|
|
|
// prometheus metrics endpoint - do not need to go through contexter
|
2021-01-26 21:06:53 +05:30
|
|
|
if setting.Metrics.Enabled {
|
|
|
|
c := metrics.NewCollector()
|
|
|
|
prometheus.MustRegister(c)
|
|
|
|
|
2021-06-09 05:03:54 +05:30
|
|
|
routes.Get("/metrics", append(common, Metrics)...)
|
2021-01-26 21:06:53 +05:30
|
|
|
}
|
|
|
|
|
2021-07-28 15:12:56 +05:30
|
|
|
routes.Get("/ssh_info", func(rw http.ResponseWriter, req *http.Request) {
|
|
|
|
if !git.SupportProcReceive {
|
|
|
|
rw.WriteHeader(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
rw.Header().Set("content-type", "text/json;charset=UTF-8")
|
|
|
|
_, err := rw.Write([]byte(`{"type":"gitea","version":1}`))
|
|
|
|
if err != nil {
|
|
|
|
log.Error("fail to write result: err: %v", err)
|
|
|
|
rw.WriteHeader(500)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
rw.WriteHeader(200)
|
|
|
|
})
|
|
|
|
|
2021-07-08 17:08:13 +05:30
|
|
|
// Removed: toolbox.Toolboxer middleware will provide debug information which seems unnecessary
|
2021-05-05 03:18:31 +05:30
|
|
|
common = append(common, context.Contexter())
|
|
|
|
|
2021-06-09 23:23:16 +05:30
|
|
|
// Get user from session if logged in.
|
2022-01-02 18:42:35 +05:30
|
|
|
common = append(common, context.Auth(auth_service.NewGroup(auth_service.Methods()...)))
|
2021-06-09 23:23:16 +05:30
|
|
|
|
2021-05-05 03:18:31 +05:30
|
|
|
// GetHead allows a HEAD request redirect to GET if HEAD method is not defined for that route
|
|
|
|
common = append(common, middleware.GetHead)
|
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
if setting.API.EnableSwagger {
|
|
|
|
// Note: The route moved from apiroutes because it's in fact want to render a web page
|
2021-05-05 03:18:31 +05:30
|
|
|
routes.Get("/api/swagger", append(common, misc.Swagger)...) // Render V1 by default
|
2021-01-26 21:06:53 +05:30
|
|
|
}
|
|
|
|
|
2021-05-05 03:18:31 +05:30
|
|
|
// TODO: These really seem like things that could be folded into Contexter or as helper functions
|
|
|
|
common = append(common, user.GetNotificationCount)
|
|
|
|
common = append(common, repo.GetActiveStopwatch)
|
2021-05-10 03:20:06 +05:30
|
|
|
common = append(common, goGet)
|
2021-01-26 21:06:53 +05:30
|
|
|
|
2021-05-05 03:18:31 +05:30
|
|
|
others := web.NewRoute()
|
|
|
|
for _, middle := range common {
|
|
|
|
others.Use(middle)
|
|
|
|
}
|
|
|
|
|
|
|
|
RegisterRoutes(others)
|
|
|
|
routes.Mount("", others)
|
|
|
|
return routes
|
2020-10-20 02:33:08 +05:30
|
|
|
}
|
|
|
|
|
2021-01-29 21:05:30 +05:30
|
|
|
// RegisterRoutes register routes
|
2021-01-26 21:06:53 +05:30
|
|
|
func RegisterRoutes(m *web.Route) {
|
2017-04-25 12:54:51 +05:30
|
|
|
reqSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: true})
|
|
|
|
ignSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: setting.Service.RequireSignInView})
|
2021-03-11 19:10:54 +05:30
|
|
|
ignExploreSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: setting.Service.RequireSignInView || setting.Service.Explore.RequireSigninView})
|
2017-04-25 12:54:51 +05:30
|
|
|
ignSignInAndCsrf := context.Toggle(&context.ToggleOptions{DisableCSRF: true})
|
|
|
|
reqSignOut := context.Toggle(&context.ToggleOptions{SignOutRequired: true})
|
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
bindIgnErr := web.Bind
|
2017-04-25 12:54:51 +05:30
|
|
|
validation.AddBindingRules()
|
|
|
|
|
2017-08-19 21:04:49 +05:30
|
|
|
openIDSignInEnabled := func(ctx *context.Context) {
|
|
|
|
if !setting.Service.EnableOpenIDSignIn {
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.Error(http.StatusForbidden)
|
2017-08-19 21:04:49 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
openIDSignUpEnabled := func(ctx *context.Context) {
|
|
|
|
if !setting.Service.EnableOpenIDSignUp {
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.Error(http.StatusForbidden)
|
2017-08-19 21:04:49 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-15 19:50:08 +05:30
|
|
|
reqMilestonesDashboardPageEnabled := func(ctx *context.Context) {
|
|
|
|
if !setting.Service.ShowMilestonesDashboardPage {
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.Error(http.StatusForbidden)
|
2019-12-15 19:50:08 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-11 23:04:34 +05:30
|
|
|
// webhooksEnabled requires webhooks to be enabled by admin.
|
|
|
|
webhooksEnabled := func(ctx *context.Context) {
|
|
|
|
if setting.DisableWebhooks {
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.Error(http.StatusForbidden)
|
2021-02-11 23:04:34 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-06 05:29:27 +05:30
|
|
|
lfsServerEnabled := func(ctx *context.Context) {
|
|
|
|
if !setting.LFS.StartServer {
|
|
|
|
ctx.Error(http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-30 14:25:53 +05:30
|
|
|
// FIXME: not all routes need go through same middleware.
|
2017-04-25 12:54:51 +05:30
|
|
|
// Especially some AJAX requests, we can reduce middleware number to improve performance.
|
|
|
|
// Routers.
|
|
|
|
// for health check
|
2021-06-09 05:03:54 +05:30
|
|
|
m.Get("/", Home)
|
2021-11-26 20:25:11 +05:30
|
|
|
m.Group("/.well-known", func() {
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Get("/openid-configuration", auth.OIDCWellKnown)
|
2021-11-26 20:25:11 +05:30
|
|
|
if setting.Federation.Enabled {
|
|
|
|
m.Get("/nodeinfo", NodeInfoLinks)
|
|
|
|
}
|
|
|
|
m.Get("/change-password", func(w http.ResponseWriter, req *http.Request) {
|
|
|
|
http.Redirect(w, req, "/user/settings/account", http.StatusTemporaryRedirect)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("/explore", func() {
|
|
|
|
m.Get("", func(ctx *context.Context) {
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/explore/repos")
|
|
|
|
})
|
2021-06-09 05:03:54 +05:30
|
|
|
m.Get("/repos", explore.Repos)
|
|
|
|
m.Get("/users", explore.Users)
|
|
|
|
m.Get("/organizations", explore.Organizations)
|
|
|
|
m.Get("/code", explore.Code)
|
2021-03-11 19:10:54 +05:30
|
|
|
}, ignExploreSignIn)
|
2021-01-13 09:49:17 +05:30
|
|
|
m.Get("/issues", reqSignIn, user.Issues)
|
|
|
|
m.Get("/pulls", reqSignIn, user.Pulls)
|
2019-12-15 19:50:08 +05:30
|
|
|
m.Get("/milestones", reqSignIn, reqMilestonesDashboardPageEnabled, user.Milestones)
|
2017-04-25 12:54:51 +05:30
|
|
|
|
|
|
|
// ***** START: User *****
|
|
|
|
m.Group("/user", func() {
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Get("/login", auth.SignIn)
|
|
|
|
m.Post("/login", bindIgnErr(forms.SignInForm{}), auth.SignInPost)
|
2017-08-19 21:04:49 +05:30
|
|
|
m.Group("", func() {
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Combo("/login/openid").
|
2022-01-02 18:42:35 +05:30
|
|
|
Get(auth.SignInOpenID).
|
|
|
|
Post(bindIgnErr(forms.SignInOpenIDForm{}), auth.SignInOpenIDPost)
|
2017-08-19 21:04:49 +05:30
|
|
|
}, openIDSignInEnabled)
|
|
|
|
m.Group("/openid", func() {
|
|
|
|
m.Combo("/connect").
|
2022-01-02 18:42:35 +05:30
|
|
|
Get(auth.ConnectOpenID).
|
|
|
|
Post(bindIgnErr(forms.ConnectOpenIDForm{}), auth.ConnectOpenIDPost)
|
2017-08-19 21:04:49 +05:30
|
|
|
m.Group("/register", func() {
|
|
|
|
m.Combo("").
|
2022-01-02 18:42:35 +05:30
|
|
|
Get(auth.RegisterOpenID, openIDSignUpEnabled).
|
|
|
|
Post(bindIgnErr(forms.SignUpOpenIDForm{}), auth.RegisterOpenIDPost)
|
2017-08-19 21:04:49 +05:30
|
|
|
}, openIDSignUpEnabled)
|
|
|
|
}, openIDSignInEnabled)
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Get("/sign_up", auth.SignUp)
|
|
|
|
m.Post("/sign_up", bindIgnErr(forms.RegisterForm{}), auth.SignUpPost)
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("/oauth2", func() {
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Get("/{provider}", auth.SignInOAuth)
|
|
|
|
m.Get("/{provider}/callback", auth.SignInOAuthCallback)
|
2017-04-25 12:54:51 +05:30
|
|
|
})
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Get("/link_account", auth.LinkAccount)
|
|
|
|
m.Post("/link_account_signin", bindIgnErr(forms.SignInForm{}), auth.LinkAccountPostSignIn)
|
|
|
|
m.Post("/link_account_signup", bindIgnErr(forms.RegisterForm{}), auth.LinkAccountPostRegister)
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("/two_factor", func() {
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Get("", auth.TwoFactor)
|
|
|
|
m.Post("", bindIgnErr(forms.TwoFactorAuthForm{}), auth.TwoFactorPost)
|
|
|
|
m.Get("/scratch", auth.TwoFactorScratch)
|
|
|
|
m.Post("/scratch", bindIgnErr(forms.TwoFactorScratchAuthForm{}), auth.TwoFactorScratchPost)
|
2017-04-25 12:54:51 +05:30
|
|
|
})
|
2022-01-14 20:33:31 +05:30
|
|
|
m.Group("/webauthn", func() {
|
|
|
|
m.Get("", auth.WebAuthn)
|
|
|
|
m.Get("/assertion", auth.WebAuthnLoginAssertion)
|
|
|
|
m.Post("/assertion", auth.WebAuthnLoginAssertionPost)
|
2018-05-19 19:42:37 +05:30
|
|
|
})
|
2017-04-25 12:54:51 +05:30
|
|
|
}, reqSignOut)
|
|
|
|
|
2021-03-21 02:09:43 +05:30
|
|
|
m.Any("/user/events", events.Events)
|
2020-05-08 03:19:00 +05:30
|
|
|
|
2019-03-08 22:12:50 +05:30
|
|
|
m.Group("/login/oauth", func() {
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Get("/authorize", bindIgnErr(forms.AuthorizationForm{}), auth.AuthorizeOAuth)
|
|
|
|
m.Post("/grant", bindIgnErr(forms.GrantApplicationForm{}), auth.GrantApplicationOAuth)
|
2019-03-08 22:12:50 +05:30
|
|
|
// TODO manage redirection
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Post("/authorize", bindIgnErr(forms.AuthorizationForm{}), auth.AuthorizeOAuth)
|
2019-03-08 22:12:50 +05:30
|
|
|
}, ignSignInAndCsrf, reqSignIn)
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Get("/login/oauth/userinfo", ignSignInAndCsrf, auth.InfoOAuth)
|
|
|
|
m.Post("/login/oauth/access_token", CorsHandler(), bindIgnErr(forms.AccessTokenForm{}), ignSignInAndCsrf, auth.AccessTokenOAuth)
|
|
|
|
m.Get("/login/oauth/keys", ignSignInAndCsrf, auth.OIDCKeys)
|
|
|
|
m.Post("/login/oauth/introspect", CorsHandler(), bindIgnErr(forms.IntrospectTokenForm{}), ignSignInAndCsrf, auth.IntrospectOAuth)
|
2019-03-08 22:12:50 +05:30
|
|
|
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("/user/settings", func() {
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Get("", user_setting.Profile)
|
|
|
|
m.Post("", bindIgnErr(forms.UpdateProfileForm{}), user_setting.ProfilePost)
|
|
|
|
m.Get("/change_password", auth.MustChangePassword)
|
|
|
|
m.Post("/change_password", bindIgnErr(forms.MustChangePasswordForm{}), auth.MustChangePasswordPost)
|
|
|
|
m.Post("/avatar", bindIgnErr(forms.AvatarForm{}), user_setting.AvatarPost)
|
|
|
|
m.Post("/avatar/delete", user_setting.DeleteAvatar)
|
2018-05-15 15:37:32 +05:30
|
|
|
m.Group("/account", func() {
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Combo("").Get(user_setting.Account).Post(bindIgnErr(forms.ChangePasswordForm{}), user_setting.AccountPost)
|
|
|
|
m.Post("/email", bindIgnErr(forms.AddEmailForm{}), user_setting.EmailPost)
|
|
|
|
m.Post("/email/delete", user_setting.DeleteEmail)
|
|
|
|
m.Post("/delete", user_setting.DeleteAccount)
|
2021-10-27 21:10:08 +05:30
|
|
|
})
|
|
|
|
m.Group("/appearance", func() {
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Get("", user_setting.Appearance)
|
|
|
|
m.Post("/language", bindIgnErr(forms.UpdateLanguageForm{}), user_setting.UpdateUserLang)
|
|
|
|
m.Post("/theme", bindIgnErr(forms.UpdateThemeForm{}), user_setting.UpdateUIThemePost)
|
2018-05-15 15:37:32 +05:30
|
|
|
})
|
|
|
|
m.Group("/security", func() {
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Get("", security.Security)
|
2018-05-15 15:37:32 +05:30
|
|
|
m.Group("/two_factor", func() {
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Post("/regenerate_scratch", security.RegenerateScratchTwoFactor)
|
|
|
|
m.Post("/disable", security.DisableTwoFactor)
|
|
|
|
m.Get("/enroll", security.EnrollTwoFactor)
|
|
|
|
m.Post("/enroll", bindIgnErr(forms.TwoFactorAuthForm{}), security.EnrollTwoFactorPost)
|
2018-05-15 15:37:32 +05:30
|
|
|
})
|
2022-01-14 20:33:31 +05:30
|
|
|
m.Group("/webauthn", func() {
|
|
|
|
m.Post("/request_register", bindIgnErr(forms.WebauthnRegistrationForm{}), security.WebAuthnRegister)
|
|
|
|
m.Post("/register", security.WebauthnRegisterPost)
|
|
|
|
m.Post("/delete", bindIgnErr(forms.WebauthnDeleteForm{}), security.WebauthnDelete)
|
2018-05-19 19:42:37 +05:30
|
|
|
})
|
2018-05-15 15:37:32 +05:30
|
|
|
m.Group("/openid", func() {
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Post("", bindIgnErr(forms.AddOpenIDForm{}), security.OpenIDPost)
|
|
|
|
m.Post("/delete", security.DeleteOpenID)
|
|
|
|
m.Post("/toggle_visibility", security.ToggleOpenIDVisibility)
|
2018-05-15 15:37:32 +05:30
|
|
|
}, openIDSignInEnabled)
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Post("/account_link", security.DeleteAccountLink)
|
2018-05-15 15:37:32 +05:30
|
|
|
})
|
2019-03-08 22:12:50 +05:30
|
|
|
m.Group("/applications/oauth2", func() {
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Get("/{id}", user_setting.OAuth2ApplicationShow)
|
|
|
|
m.Post("/{id}", bindIgnErr(forms.EditOAuth2ApplicationForm{}), user_setting.OAuthApplicationsEdit)
|
|
|
|
m.Post("/{id}/regenerate_secret", user_setting.OAuthApplicationsRegenerateSecret)
|
|
|
|
m.Post("", bindIgnErr(forms.EditOAuth2ApplicationForm{}), user_setting.OAuthApplicationsPost)
|
|
|
|
m.Post("/delete", user_setting.DeleteOAuth2Application)
|
|
|
|
m.Post("/revoke", user_setting.RevokeOAuth2Grant)
|
2019-03-08 22:12:50 +05:30
|
|
|
})
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Combo("/applications").Get(user_setting.Applications).
|
|
|
|
Post(bindIgnErr(forms.NewAccessTokenForm{}), user_setting.ApplicationsPost)
|
|
|
|
m.Post("/applications/delete", user_setting.DeleteApplication)
|
|
|
|
m.Combo("/keys").Get(user_setting.Keys).
|
|
|
|
Post(bindIgnErr(forms.AddKeyForm{}), user_setting.KeysPost)
|
|
|
|
m.Post("/keys/delete", user_setting.DeleteKey)
|
|
|
|
m.Get("/organization", user_setting.Organization)
|
|
|
|
m.Get("/repos", user_setting.Repos)
|
|
|
|
m.Post("/repos/unadopted", user_setting.AdoptOrDeleteRepository)
|
2017-04-25 12:54:51 +05:30
|
|
|
}, reqSignIn, func(ctx *context.Context) {
|
|
|
|
ctx.Data["PageIsUserSettings"] = true
|
2019-01-09 22:52:57 +05:30
|
|
|
ctx.Data["AllThemes"] = setting.UI.Themes
|
2017-04-25 12:54:51 +05:30
|
|
|
})
|
|
|
|
|
|
|
|
m.Group("/user", func() {
|
|
|
|
// r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Get("/activate", auth.Activate, reqSignIn)
|
|
|
|
m.Post("/activate", auth.ActivatePost, reqSignIn)
|
|
|
|
m.Any("/activate_email", auth.ActivateEmail)
|
Avatar refactor, move avatar code from `models` to `models.avatars`, remove duplicated code (#17123)
Why this refactor
The goal is to move most files from `models` package to `models.xxx` package. Many models depend on avatar model, so just move this first.
And the existing logic is not clear, there are too many function like `AvatarLink`, `RelAvatarLink`, `SizedRelAvatarLink`, `SizedAvatarLink`, `MakeFinalAvatarURL`, `HashedAvatarLink`, etc. This refactor make everything clear:
* user.AvatarLink()
* user.AvatarLinkWithSize(size)
* avatars.GenerateEmailAvatarFastLink(email, size)
* avatars.GenerateEmailAvatarFinalLink(email, size)
And many duplicated code are deleted in route handler, the handler and the model share the same avatar logic now.
2021-10-06 04:55:46 +05:30
|
|
|
m.Get("/avatar/{username}/{size}", user.AvatarByUserName)
|
2022-01-02 18:42:35 +05:30
|
|
|
m.Get("/recover_account", auth.ResetPasswd)
|
|
|
|
m.Post("/recover_account", auth.ResetPasswdPost)
|
|
|
|
m.Get("/forgot_password", auth.ForgotPasswd)
|
|
|
|
m.Post("/forgot_password", auth.ForgotPasswdPost)
|
|
|
|
m.Post("/logout", auth.SignOut)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/task/{task}", user.TaskStatus)
|
2017-04-25 12:54:51 +05:30
|
|
|
})
|
|
|
|
// ***** END: User *****
|
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/avatar/{hash}", user.AvatarByEmailHash)
|
2020-03-27 18:04:39 +05:30
|
|
|
|
2017-04-25 12:54:51 +05:30
|
|
|
adminReq := context.Toggle(&context.ToggleOptions{SignInRequired: true, AdminRequired: true})
|
|
|
|
|
|
|
|
// ***** START: Admin *****
|
|
|
|
m.Group("/admin", func() {
|
|
|
|
m.Get("", adminReq, admin.Dashboard)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("", adminReq, bindIgnErr(forms.AdminDashboardForm{}), admin.DashboardPost)
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Get("/config", admin.Config)
|
|
|
|
m.Post("/config/test_mail", admin.SendTestMail)
|
2020-01-07 16:53:09 +05:30
|
|
|
m.Group("/monitor", func() {
|
|
|
|
m.Get("", admin.Monitor)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Post("/cancel/{pid}", admin.MonitorCancel)
|
|
|
|
m.Group("/queue/{qid}", func() {
|
2020-01-07 16:53:09 +05:30
|
|
|
m.Get("", admin.Queue)
|
|
|
|
m.Post("/set", admin.SetQueueSettings)
|
|
|
|
m.Post("/add", admin.AddWorkers)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Post("/cancel/{pid}", admin.WorkerCancel)
|
2020-01-29 06:31:06 +05:30
|
|
|
m.Post("/flush", admin.Flush)
|
2020-01-07 16:53:09 +05:30
|
|
|
})
|
|
|
|
})
|
2017-04-25 12:54:51 +05:30
|
|
|
|
|
|
|
m.Group("/users", func() {
|
|
|
|
m.Get("", admin.Users)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Combo("/new").Get(admin.NewUser).Post(bindIgnErr(forms.AdminCreateUserForm{}), admin.NewUserPost)
|
|
|
|
m.Combo("/{userid}").Get(admin.EditUser).Post(bindIgnErr(forms.AdminEditUserForm{}), admin.EditUserPost)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Post("/{userid}/delete", admin.DeleteUser)
|
2021-11-17 00:43:13 +05:30
|
|
|
m.Post("/{userid}/avatar", bindIgnErr(forms.AvatarForm{}), admin.AvatarPost)
|
|
|
|
m.Post("/{userid}/avatar/delete", admin.DeleteAvatar)
|
2017-04-25 12:54:51 +05:30
|
|
|
})
|
|
|
|
|
2020-03-02 23:55:36 +05:30
|
|
|
m.Group("/emails", func() {
|
|
|
|
m.Get("", admin.Emails)
|
|
|
|
m.Post("/activate", admin.ActivateEmail)
|
|
|
|
})
|
|
|
|
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("/orgs", func() {
|
|
|
|
m.Get("", admin.Organizations)
|
|
|
|
})
|
|
|
|
|
|
|
|
m.Group("/repos", func() {
|
|
|
|
m.Get("", admin.Repos)
|
2020-09-25 09:39:23 +05:30
|
|
|
m.Combo("/unadopted").Get(admin.UnadoptedRepos).Post(admin.AdoptOrDeleteRepository)
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Post("/delete", admin.DeleteRepo)
|
|
|
|
})
|
|
|
|
|
2021-01-15 04:54:03 +05:30
|
|
|
m.Group("/hooks", func() {
|
2020-03-09 03:38:05 +05:30
|
|
|
m.Get("", admin.DefaultOrSystemWebhooks)
|
|
|
|
m.Post("/delete", admin.DeleteDefaultOrSystemWebhook)
|
2022-01-06 02:30:20 +05:30
|
|
|
m.Group("/{id}", func() {
|
|
|
|
m.Get("", repo.WebHooksEdit)
|
|
|
|
m.Post("/replay/{uuid}", repo.ReplayWebhook)
|
|
|
|
})
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/gitea/{id}", bindIgnErr(forms.NewWebhookForm{}), repo.WebHooksEditPost)
|
|
|
|
m.Post("/gogs/{id}", bindIgnErr(forms.NewGogshookForm{}), repo.GogsHooksEditPost)
|
|
|
|
m.Post("/slack/{id}", bindIgnErr(forms.NewSlackHookForm{}), repo.SlackHooksEditPost)
|
|
|
|
m.Post("/discord/{id}", bindIgnErr(forms.NewDiscordHookForm{}), repo.DiscordHooksEditPost)
|
|
|
|
m.Post("/dingtalk/{id}", bindIgnErr(forms.NewDingtalkHookForm{}), repo.DingtalkHooksEditPost)
|
|
|
|
m.Post("/telegram/{id}", bindIgnErr(forms.NewTelegramHookForm{}), repo.TelegramHooksEditPost)
|
|
|
|
m.Post("/matrix/{id}", bindIgnErr(forms.NewMatrixHookForm{}), repo.MatrixHooksEditPost)
|
|
|
|
m.Post("/msteams/{id}", bindIgnErr(forms.NewMSTeamsHookForm{}), repo.MSTeamsHooksEditPost)
|
|
|
|
m.Post("/feishu/{id}", bindIgnErr(forms.NewFeishuHookForm{}), repo.FeishuHooksEditPost)
|
2021-07-23 10:11:27 +05:30
|
|
|
m.Post("/wechatwork/{id}", bindIgnErr(forms.NewWechatWorkHookForm{}), repo.WechatworkHooksEditPost)
|
2021-02-11 23:04:34 +05:30
|
|
|
}, webhooksEnabled)
|
2019-03-19 08:03:20 +05:30
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{configType:default-hooks|system-hooks}", func() {
|
|
|
|
m.Get("/{type}/new", repo.WebhooksNew)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/gitea/new", bindIgnErr(forms.NewWebhookForm{}), repo.GiteaHooksNewPost)
|
|
|
|
m.Post("/gogs/new", bindIgnErr(forms.NewGogshookForm{}), repo.GogsHooksNewPost)
|
|
|
|
m.Post("/slack/new", bindIgnErr(forms.NewSlackHookForm{}), repo.SlackHooksNewPost)
|
|
|
|
m.Post("/discord/new", bindIgnErr(forms.NewDiscordHookForm{}), repo.DiscordHooksNewPost)
|
|
|
|
m.Post("/dingtalk/new", bindIgnErr(forms.NewDingtalkHookForm{}), repo.DingtalkHooksNewPost)
|
|
|
|
m.Post("/telegram/new", bindIgnErr(forms.NewTelegramHookForm{}), repo.TelegramHooksNewPost)
|
|
|
|
m.Post("/matrix/new", bindIgnErr(forms.NewMatrixHookForm{}), repo.MatrixHooksNewPost)
|
|
|
|
m.Post("/msteams/new", bindIgnErr(forms.NewMSTeamsHookForm{}), repo.MSTeamsHooksNewPost)
|
|
|
|
m.Post("/feishu/new", bindIgnErr(forms.NewFeishuHookForm{}), repo.FeishuHooksNewPost)
|
2021-07-23 10:11:27 +05:30
|
|
|
m.Post("/wechatwork/new", bindIgnErr(forms.NewWechatWorkHookForm{}), repo.WechatworkHooksNewPost)
|
|
|
|
|
2021-01-15 04:54:03 +05:30
|
|
|
})
|
|
|
|
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("/auths", func() {
|
|
|
|
m.Get("", admin.Authentications)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Combo("/new").Get(admin.NewAuthSource).Post(bindIgnErr(forms.AuthenticationForm{}), admin.NewAuthSourcePost)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Combo("/{authid}").Get(admin.EditAuthSource).
|
2021-04-07 01:14:05 +05:30
|
|
|
Post(bindIgnErr(forms.AuthenticationForm{}), admin.EditAuthSourcePost)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Post("/{authid}/delete", admin.DeleteAuthSource)
|
2017-04-25 12:54:51 +05:30
|
|
|
})
|
|
|
|
|
|
|
|
m.Group("/notices", func() {
|
|
|
|
m.Get("", admin.Notices)
|
|
|
|
m.Post("/delete", admin.DeleteNotices)
|
2020-02-26 21:55:54 +05:30
|
|
|
m.Post("/empty", admin.EmptyNotices)
|
2017-04-25 12:54:51 +05:30
|
|
|
})
|
|
|
|
}, adminReq)
|
|
|
|
// ***** END: Admin *****
|
|
|
|
|
|
|
|
m.Group("", func() {
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/{username}", user.Profile)
|
|
|
|
m.Get("/attachments/{uuid}", repo.GetAttachment)
|
2017-04-25 12:54:51 +05:30
|
|
|
}, ignSignIn)
|
|
|
|
|
2021-12-20 22:48:26 +05:30
|
|
|
m.Post("/{username}", reqSignIn, user.Action)
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2021-10-20 20:07:19 +05:30
|
|
|
if !setting.IsProd {
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Get("/template/*", dev.TemplatePreview)
|
|
|
|
}
|
|
|
|
|
|
|
|
reqRepoAdmin := context.RequireRepoAdmin()
|
2021-11-10 01:27:58 +05:30
|
|
|
reqRepoCodeWriter := context.RequireRepoWriter(unit.TypeCode)
|
|
|
|
reqRepoCodeReader := context.RequireRepoReader(unit.TypeCode)
|
|
|
|
reqRepoReleaseWriter := context.RequireRepoWriter(unit.TypeReleases)
|
|
|
|
reqRepoReleaseReader := context.RequireRepoReader(unit.TypeReleases)
|
|
|
|
reqRepoWikiWriter := context.RequireRepoWriter(unit.TypeWiki)
|
|
|
|
reqRepoIssueWriter := context.RequireRepoWriter(unit.TypeIssues)
|
|
|
|
reqRepoIssueReader := context.RequireRepoReader(unit.TypeIssues)
|
|
|
|
reqRepoPullsReader := context.RequireRepoReader(unit.TypePullRequests)
|
|
|
|
reqRepoIssuesOrPullsWriter := context.RequireRepoWriterOr(unit.TypeIssues, unit.TypePullRequests)
|
|
|
|
reqRepoIssuesOrPullsReader := context.RequireRepoReaderOr(unit.TypeIssues, unit.TypePullRequests)
|
|
|
|
reqRepoProjectsReader := context.RequireRepoReader(unit.TypeProjects)
|
|
|
|
reqRepoProjectsWriter := context.RequireRepoWriter(unit.TypeProjects)
|
2017-04-25 12:54:51 +05:30
|
|
|
|
|
|
|
// ***** START: Organization *****
|
|
|
|
m.Group("/org", func() {
|
|
|
|
m.Group("", func() {
|
|
|
|
m.Get("/create", org.Create)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/create", bindIgnErr(forms.CreateOrgForm{}), org.CreatePost)
|
2017-04-25 12:54:51 +05:30
|
|
|
})
|
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{org}", func() {
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Get("/dashboard", user.Dashboard)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/dashboard/{team}", user.Dashboard)
|
2021-01-13 09:49:17 +05:30
|
|
|
m.Get("/issues", user.Issues)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/issues/{team}", user.Issues)
|
2021-01-13 09:49:17 +05:30
|
|
|
m.Get("/pulls", user.Pulls)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/pulls/{team}", user.Pulls)
|
2019-12-15 19:50:08 +05:30
|
|
|
m.Get("/milestones", reqMilestonesDashboardPageEnabled, user.Milestones)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/milestones/{team}", reqMilestonesDashboardPageEnabled, user.Milestones)
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Get("/members", org.Members)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Post("/members/action/{action}", org.MembersAction)
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Get("/teams", org.Teams)
|
2020-12-28 01:28:03 +05:30
|
|
|
}, context.OrgAssignment(true, false, true))
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{org}", func() {
|
|
|
|
m.Get("/teams/{team}", org.TeamMembers)
|
|
|
|
m.Get("/teams/{team}/repositories", org.TeamRepositories)
|
|
|
|
m.Post("/teams/{team}/action/{action}", org.TeamsAction)
|
|
|
|
m.Post("/teams/{team}/action/repo/{action}", org.TeamsRepoAction)
|
2017-04-25 12:54:51 +05:30
|
|
|
}, context.OrgAssignment(true, false, true))
|
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{org}", func() {
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Get("/teams/new", org.NewTeam)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/teams/new", bindIgnErr(forms.CreateTeamForm{}), org.NewTeamPost)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/teams/{team}/edit", org.EditTeam)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/teams/{team}/edit", bindIgnErr(forms.CreateTeamForm{}), org.EditTeamPost)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Post("/teams/{team}/delete", org.DeleteTeam)
|
2017-04-25 12:54:51 +05:30
|
|
|
|
|
|
|
m.Group("/settings", func() {
|
|
|
|
m.Combo("").Get(org.Settings).
|
2021-04-07 01:14:05 +05:30
|
|
|
Post(bindIgnErr(forms.UpdateOrgSettingForm{}), org.SettingsPost)
|
|
|
|
m.Post("/avatar", bindIgnErr(forms.AvatarForm{}), org.SettingsAvatar)
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Post("/avatar/delete", org.SettingsDeleteAvatar)
|
|
|
|
|
|
|
|
m.Group("/hooks", func() {
|
|
|
|
m.Get("", org.Webhooks)
|
|
|
|
m.Post("/delete", org.DeleteWebhook)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/{type}/new", repo.WebhooksNew)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/gitea/new", bindIgnErr(forms.NewWebhookForm{}), repo.GiteaHooksNewPost)
|
|
|
|
m.Post("/gogs/new", bindIgnErr(forms.NewGogshookForm{}), repo.GogsHooksNewPost)
|
|
|
|
m.Post("/slack/new", bindIgnErr(forms.NewSlackHookForm{}), repo.SlackHooksNewPost)
|
|
|
|
m.Post("/discord/new", bindIgnErr(forms.NewDiscordHookForm{}), repo.DiscordHooksNewPost)
|
|
|
|
m.Post("/dingtalk/new", bindIgnErr(forms.NewDingtalkHookForm{}), repo.DingtalkHooksNewPost)
|
|
|
|
m.Post("/telegram/new", bindIgnErr(forms.NewTelegramHookForm{}), repo.TelegramHooksNewPost)
|
|
|
|
m.Post("/matrix/new", bindIgnErr(forms.NewMatrixHookForm{}), repo.MatrixHooksNewPost)
|
|
|
|
m.Post("/msteams/new", bindIgnErr(forms.NewMSTeamsHookForm{}), repo.MSTeamsHooksNewPost)
|
|
|
|
m.Post("/feishu/new", bindIgnErr(forms.NewFeishuHookForm{}), repo.FeishuHooksNewPost)
|
2021-11-25 14:55:25 +05:30
|
|
|
m.Post("/wechatwork/new", bindIgnErr(forms.NewWechatWorkHookForm{}), repo.WechatworkHooksNewPost)
|
2022-01-06 02:30:20 +05:30
|
|
|
m.Group("/{id}", func() {
|
|
|
|
m.Get("", repo.WebHooksEdit)
|
|
|
|
m.Post("/replay/{uuid}", repo.ReplayWebhook)
|
|
|
|
})
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/gitea/{id}", bindIgnErr(forms.NewWebhookForm{}), repo.WebHooksEditPost)
|
|
|
|
m.Post("/gogs/{id}", bindIgnErr(forms.NewGogshookForm{}), repo.GogsHooksEditPost)
|
|
|
|
m.Post("/slack/{id}", bindIgnErr(forms.NewSlackHookForm{}), repo.SlackHooksEditPost)
|
|
|
|
m.Post("/discord/{id}", bindIgnErr(forms.NewDiscordHookForm{}), repo.DiscordHooksEditPost)
|
|
|
|
m.Post("/dingtalk/{id}", bindIgnErr(forms.NewDingtalkHookForm{}), repo.DingtalkHooksEditPost)
|
|
|
|
m.Post("/telegram/{id}", bindIgnErr(forms.NewTelegramHookForm{}), repo.TelegramHooksEditPost)
|
|
|
|
m.Post("/matrix/{id}", bindIgnErr(forms.NewMatrixHookForm{}), repo.MatrixHooksEditPost)
|
|
|
|
m.Post("/msteams/{id}", bindIgnErr(forms.NewMSTeamsHookForm{}), repo.MSTeamsHooksEditPost)
|
|
|
|
m.Post("/feishu/{id}", bindIgnErr(forms.NewFeishuHookForm{}), repo.FeishuHooksEditPost)
|
2021-11-25 14:55:25 +05:30
|
|
|
m.Post("/wechatwork/{id}", bindIgnErr(forms.NewWechatWorkHookForm{}), repo.WechatworkHooksEditPost)
|
2021-02-11 23:04:34 +05:30
|
|
|
}, webhooksEnabled)
|
2017-04-25 12:54:51 +05:30
|
|
|
|
Add Organization Wide Labels (#10814)
* Add organization wide labels
Implement organization wide labels similar to organization wide
webhooks. This lets you create individual labels for organizations that can be used
for all repos under that organization (so being able to reuse the same
label across multiple repos).
This makes it possible for small organizations with many repos to use
labels effectively.
Fixes #7406
* Add migration
* remove comments
* fix tests
* Update options/locale/locale_en-US.ini
Removed unused translation string
* show org labels in issue search label filter
* Use more clear var name
* rename migration after merge from master
* comment typo
* update migration again after rebase with master
* check for orgID <=0 per guillep2k review
* fmt
* Apply suggestions from code review
Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com>
* remove unused code
* Make sure RepoID is 0 when searching orgID per code review
* more changes/code review requests
* More descriptive translation var per code review
* func description/delete comment when issue label deleted instead of hiding it
* remove comment
* only use issues in that repo when calculating number of open issues for org label on repo label page
* Add integration test for IssuesSearch API with labels
* remove unused function
* Update models/issue_label.go
Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com>
* Use subquery in GetLabelIDsInReposByNames
* Fix tests to use correct orgID
* fix more tests
* IssuesSearch api now uses new BuildLabelNamesIssueIDsCondition. Add a few more tests as well
* update comment for clarity
* Revert previous code change now that we can use the new BuildLabelNamesIssueIDsCondition
* Don't sort repos by date in IssuesSearch API
After much debugging I've found a strange issue where in some cases MySQL will return a different result than other enigines if a query is sorted by a null collumn. For example with our integration test data where we don't set updated_unix in repository fixtures:
SELECT `id`, `owner_id`, `owner_name`, `lower_name`, `name`, `description`, `website`, `original_service_type`, `original_url`, `default_branch`, `num_watches`, `num_stars`, `num_forks`, `num_issues`, `num_closed_issues`, `num_pulls`, `num_closed_pulls`, `num_milestones`, `num_closed_milestones`, `is_private`, `is_empty`, `is_archived`, `is_mirror`, `status`, `is_fork`, `fork_id`, `is_template`, `template_id`, `size`, `is_fsck_enabled`, `close_issues_via_commit_in_any_branch`, `topics`, `avatar`, `created_unix`, `updated_unix` FROM `repository` ORDER BY updated_unix DESC LIMIT 15 OFFSET 45
Returns different results for MySQL than other engines. However, the similar query:
SELECT `id`, `owner_id`, `owner_name`, `lower_name`, `name`, `description`, `website`, `original_service_type`, `original_url`, `default_branch`, `num_watches`, `num_stars`, `num_forks`, `num_issues`, `num_closed_issues`, `num_pulls`, `num_closed_pulls`, `num_milestones`, `num_closed_milestones`, `is_private`, `is_empty`, `is_archived`, `is_mirror`, `status`, `is_fork`, `fork_id`, `is_template`, `template_id`, `size`, `is_fsck_enabled`, `close_issues_via_commit_in_any_branch`, `topics`, `avatar`, `created_unix`, `updated_unix` FROM `repository` ORDER BY updated_unix DESC LIMIT 15 OFFSET 30
Returns the same results.
This causes integration tests to fail on MySQL in certain cases but would never show up in a real installation. Since this API call always returns issues based on the optionally provided repo_priority_id or the issueID itself, there is no change to results by changing the repo sorting method used to get ids earlier in the function.
* linter is back!
* code review
* remove now unused option
* Fix newline at end of files
* more unused code
* update to master
* check for matching ids before query
* Update models/issue_label.go
Co-Authored-By: 6543 <6543@obermui.de>
* Update models/issue_label.go
* update comments
* Update routers/org/setting.go
Co-authored-by: Lauris BH <lauris@nix.lv>
Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com>
Co-authored-by: 6543 <6543@obermui.de>
2020-04-01 09:44:46 +05:30
|
|
|
m.Group("/labels", func() {
|
|
|
|
m.Get("", org.RetrieveLabels, org.Labels)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/new", bindIgnErr(forms.CreateLabelForm{}), org.NewLabel)
|
|
|
|
m.Post("/edit", bindIgnErr(forms.CreateLabelForm{}), org.UpdateLabel)
|
Add Organization Wide Labels (#10814)
* Add organization wide labels
Implement organization wide labels similar to organization wide
webhooks. This lets you create individual labels for organizations that can be used
for all repos under that organization (so being able to reuse the same
label across multiple repos).
This makes it possible for small organizations with many repos to use
labels effectively.
Fixes #7406
* Add migration
* remove comments
* fix tests
* Update options/locale/locale_en-US.ini
Removed unused translation string
* show org labels in issue search label filter
* Use more clear var name
* rename migration after merge from master
* comment typo
* update migration again after rebase with master
* check for orgID <=0 per guillep2k review
* fmt
* Apply suggestions from code review
Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com>
* remove unused code
* Make sure RepoID is 0 when searching orgID per code review
* more changes/code review requests
* More descriptive translation var per code review
* func description/delete comment when issue label deleted instead of hiding it
* remove comment
* only use issues in that repo when calculating number of open issues for org label on repo label page
* Add integration test for IssuesSearch API with labels
* remove unused function
* Update models/issue_label.go
Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com>
* Use subquery in GetLabelIDsInReposByNames
* Fix tests to use correct orgID
* fix more tests
* IssuesSearch api now uses new BuildLabelNamesIssueIDsCondition. Add a few more tests as well
* update comment for clarity
* Revert previous code change now that we can use the new BuildLabelNamesIssueIDsCondition
* Don't sort repos by date in IssuesSearch API
After much debugging I've found a strange issue where in some cases MySQL will return a different result than other enigines if a query is sorted by a null collumn. For example with our integration test data where we don't set updated_unix in repository fixtures:
SELECT `id`, `owner_id`, `owner_name`, `lower_name`, `name`, `description`, `website`, `original_service_type`, `original_url`, `default_branch`, `num_watches`, `num_stars`, `num_forks`, `num_issues`, `num_closed_issues`, `num_pulls`, `num_closed_pulls`, `num_milestones`, `num_closed_milestones`, `is_private`, `is_empty`, `is_archived`, `is_mirror`, `status`, `is_fork`, `fork_id`, `is_template`, `template_id`, `size`, `is_fsck_enabled`, `close_issues_via_commit_in_any_branch`, `topics`, `avatar`, `created_unix`, `updated_unix` FROM `repository` ORDER BY updated_unix DESC LIMIT 15 OFFSET 45
Returns different results for MySQL than other engines. However, the similar query:
SELECT `id`, `owner_id`, `owner_name`, `lower_name`, `name`, `description`, `website`, `original_service_type`, `original_url`, `default_branch`, `num_watches`, `num_stars`, `num_forks`, `num_issues`, `num_closed_issues`, `num_pulls`, `num_closed_pulls`, `num_milestones`, `num_closed_milestones`, `is_private`, `is_empty`, `is_archived`, `is_mirror`, `status`, `is_fork`, `fork_id`, `is_template`, `template_id`, `size`, `is_fsck_enabled`, `close_issues_via_commit_in_any_branch`, `topics`, `avatar`, `created_unix`, `updated_unix` FROM `repository` ORDER BY updated_unix DESC LIMIT 15 OFFSET 30
Returns the same results.
This causes integration tests to fail on MySQL in certain cases but would never show up in a real installation. Since this API call always returns issues based on the optionally provided repo_priority_id or the issueID itself, there is no change to results by changing the repo sorting method used to get ids earlier in the function.
* linter is back!
* code review
* remove now unused option
* Fix newline at end of files
* more unused code
* update to master
* check for matching ids before query
* Update models/issue_label.go
Co-Authored-By: 6543 <6543@obermui.de>
* Update models/issue_label.go
* update comments
* Update routers/org/setting.go
Co-authored-by: Lauris BH <lauris@nix.lv>
Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com>
Co-authored-by: 6543 <6543@obermui.de>
2020-04-01 09:44:46 +05:30
|
|
|
m.Post("/delete", org.DeleteLabel)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/initialize", bindIgnErr(forms.InitializeLabelsForm{}), org.InitializeLabels)
|
Add Organization Wide Labels (#10814)
* Add organization wide labels
Implement organization wide labels similar to organization wide
webhooks. This lets you create individual labels for organizations that can be used
for all repos under that organization (so being able to reuse the same
label across multiple repos).
This makes it possible for small organizations with many repos to use
labels effectively.
Fixes #7406
* Add migration
* remove comments
* fix tests
* Update options/locale/locale_en-US.ini
Removed unused translation string
* show org labels in issue search label filter
* Use more clear var name
* rename migration after merge from master
* comment typo
* update migration again after rebase with master
* check for orgID <=0 per guillep2k review
* fmt
* Apply suggestions from code review
Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com>
* remove unused code
* Make sure RepoID is 0 when searching orgID per code review
* more changes/code review requests
* More descriptive translation var per code review
* func description/delete comment when issue label deleted instead of hiding it
* remove comment
* only use issues in that repo when calculating number of open issues for org label on repo label page
* Add integration test for IssuesSearch API with labels
* remove unused function
* Update models/issue_label.go
Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com>
* Use subquery in GetLabelIDsInReposByNames
* Fix tests to use correct orgID
* fix more tests
* IssuesSearch api now uses new BuildLabelNamesIssueIDsCondition. Add a few more tests as well
* update comment for clarity
* Revert previous code change now that we can use the new BuildLabelNamesIssueIDsCondition
* Don't sort repos by date in IssuesSearch API
After much debugging I've found a strange issue where in some cases MySQL will return a different result than other enigines if a query is sorted by a null collumn. For example with our integration test data where we don't set updated_unix in repository fixtures:
SELECT `id`, `owner_id`, `owner_name`, `lower_name`, `name`, `description`, `website`, `original_service_type`, `original_url`, `default_branch`, `num_watches`, `num_stars`, `num_forks`, `num_issues`, `num_closed_issues`, `num_pulls`, `num_closed_pulls`, `num_milestones`, `num_closed_milestones`, `is_private`, `is_empty`, `is_archived`, `is_mirror`, `status`, `is_fork`, `fork_id`, `is_template`, `template_id`, `size`, `is_fsck_enabled`, `close_issues_via_commit_in_any_branch`, `topics`, `avatar`, `created_unix`, `updated_unix` FROM `repository` ORDER BY updated_unix DESC LIMIT 15 OFFSET 45
Returns different results for MySQL than other engines. However, the similar query:
SELECT `id`, `owner_id`, `owner_name`, `lower_name`, `name`, `description`, `website`, `original_service_type`, `original_url`, `default_branch`, `num_watches`, `num_stars`, `num_forks`, `num_issues`, `num_closed_issues`, `num_pulls`, `num_closed_pulls`, `num_milestones`, `num_closed_milestones`, `is_private`, `is_empty`, `is_archived`, `is_mirror`, `status`, `is_fork`, `fork_id`, `is_template`, `template_id`, `size`, `is_fsck_enabled`, `close_issues_via_commit_in_any_branch`, `topics`, `avatar`, `created_unix`, `updated_unix` FROM `repository` ORDER BY updated_unix DESC LIMIT 15 OFFSET 30
Returns the same results.
This causes integration tests to fail on MySQL in certain cases but would never show up in a real installation. Since this API call always returns issues based on the optionally provided repo_priority_id or the issueID itself, there is no change to results by changing the repo sorting method used to get ids earlier in the function.
* linter is back!
* code review
* remove now unused option
* Fix newline at end of files
* more unused code
* update to master
* check for matching ids before query
* Update models/issue_label.go
Co-Authored-By: 6543 <6543@obermui.de>
* Update models/issue_label.go
* update comments
* Update routers/org/setting.go
Co-authored-by: Lauris BH <lauris@nix.lv>
Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com>
Co-authored-by: 6543 <6543@obermui.de>
2020-04-01 09:44:46 +05:30
|
|
|
})
|
|
|
|
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Route("/delete", "GET,POST", org.SettingsDelete)
|
|
|
|
})
|
|
|
|
}, context.OrgAssignment(true, true))
|
|
|
|
}, reqSignIn)
|
|
|
|
// ***** END: Organization *****
|
|
|
|
|
|
|
|
// ***** START: Repository *****
|
|
|
|
m.Group("/repo", func() {
|
|
|
|
m.Get("/create", repo.Create)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/create", bindIgnErr(forms.CreateRepoForm{}), repo.CreatePost)
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Get("/migrate", repo.Migrate)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/migrate", bindIgnErr(forms.MigrateRepoForm{}), repo.MigratePost)
|
2017-09-18 20:22:20 +05:30
|
|
|
m.Group("/fork", func() {
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Combo("/{repoid}").Get(repo.Fork).
|
2021-04-07 01:14:05 +05:30
|
|
|
Post(bindIgnErr(forms.CreateRepoForm{}), repo.ForkPost)
|
2018-11-28 16:56:14 +05:30
|
|
|
}, context.RepoIDAssignment(), context.UnitTypes(), reqRepoCodeReader)
|
2017-04-25 12:54:51 +05:30
|
|
|
}, reqSignIn)
|
|
|
|
|
2019-01-07 04:07:30 +05:30
|
|
|
// ***** Release Attachment Download without Signin
|
2021-04-10 05:56:08 +05:30
|
|
|
m.Get("/{username}/{reponame}/releases/download/{vTag}/{fileName}", ignSignIn, context.RepoAssignment, repo.MustBeNotEmpty, repo.RedirectDownload)
|
2019-01-07 04:07:30 +05:30
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{username}/{reponame}", func() {
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("/settings", func() {
|
|
|
|
m.Combo("").Get(repo.Settings).
|
2021-04-07 01:14:05 +05:30
|
|
|
Post(bindIgnErr(forms.RepoSettingForm{}), repo.SettingsPost)
|
|
|
|
m.Post("/avatar", bindIgnErr(forms.AvatarForm{}), repo.SettingsAvatar)
|
2019-05-30 07:52:26 +05:30
|
|
|
m.Post("/avatar/delete", repo.SettingsDeleteAvatar)
|
|
|
|
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("/collaboration", func() {
|
|
|
|
m.Combo("").Get(repo.Collaboration).Post(repo.CollaborationPost)
|
|
|
|
m.Post("/access_mode", repo.ChangeCollaborationAccessMode)
|
|
|
|
m.Post("/delete", repo.DeleteCollaboration)
|
2019-09-24 01:38:03 +05:30
|
|
|
m.Group("/team", func() {
|
|
|
|
m.Post("", repo.AddTeamPost)
|
|
|
|
m.Post("/delete", repo.DeleteTeam)
|
|
|
|
})
|
2017-04-25 12:54:51 +05:30
|
|
|
})
|
2021-06-25 19:58:55 +05:30
|
|
|
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("/branches", func() {
|
|
|
|
m.Combo("").Get(repo.ProtectedBranch).Post(repo.ProtectedBranchPost)
|
2017-09-14 13:46:22 +05:30
|
|
|
m.Combo("/*").Get(repo.SettingsProtectedBranch).
|
2021-04-07 01:14:05 +05:30
|
|
|
Post(bindIgnErr(forms.ProtectBranchForm{}), context.RepoMustNotBeArchived(), repo.SettingsProtectedBranchPost)
|
2019-01-18 05:31:04 +05:30
|
|
|
}, repo.MustBeNotEmpty)
|
2021-10-08 22:33:04 +05:30
|
|
|
m.Post("/rename_branch", bindIgnErr(forms.RenameBranchForm{}), context.RepoMustNotBeArchived(), repo.RenameBranchPost)
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2021-06-25 19:58:55 +05:30
|
|
|
m.Group("/tags", func() {
|
|
|
|
m.Get("", repo.Tags)
|
|
|
|
m.Post("", bindIgnErr(forms.ProtectTagForm{}), context.RepoMustNotBeArchived(), repo.NewProtectedTagPost)
|
|
|
|
m.Post("/delete", context.RepoMustNotBeArchived(), repo.DeleteProtectedTagPost)
|
|
|
|
m.Get("/{id}", repo.EditProtectedTag)
|
|
|
|
m.Post("/{id}", bindIgnErr(forms.ProtectTagForm{}), context.RepoMustNotBeArchived(), repo.EditProtectedTagPost)
|
|
|
|
})
|
|
|
|
|
2021-02-11 23:04:34 +05:30
|
|
|
m.Group("/hooks/git", func() {
|
|
|
|
m.Get("", repo.GitHooks)
|
|
|
|
m.Combo("/{name}").Get(repo.GitHooksEdit).
|
|
|
|
Post(repo.GitHooksEditPost)
|
|
|
|
}, context.GitHookService())
|
|
|
|
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("/hooks", func() {
|
|
|
|
m.Get("", repo.Webhooks)
|
|
|
|
m.Post("/delete", repo.DeleteWebhook)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/{type}/new", repo.WebhooksNew)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/gitea/new", bindIgnErr(forms.NewWebhookForm{}), repo.GiteaHooksNewPost)
|
|
|
|
m.Post("/gogs/new", bindIgnErr(forms.NewGogshookForm{}), repo.GogsHooksNewPost)
|
|
|
|
m.Post("/slack/new", bindIgnErr(forms.NewSlackHookForm{}), repo.SlackHooksNewPost)
|
|
|
|
m.Post("/discord/new", bindIgnErr(forms.NewDiscordHookForm{}), repo.DiscordHooksNewPost)
|
|
|
|
m.Post("/dingtalk/new", bindIgnErr(forms.NewDingtalkHookForm{}), repo.DingtalkHooksNewPost)
|
|
|
|
m.Post("/telegram/new", bindIgnErr(forms.NewTelegramHookForm{}), repo.TelegramHooksNewPost)
|
|
|
|
m.Post("/matrix/new", bindIgnErr(forms.NewMatrixHookForm{}), repo.MatrixHooksNewPost)
|
|
|
|
m.Post("/msteams/new", bindIgnErr(forms.NewMSTeamsHookForm{}), repo.MSTeamsHooksNewPost)
|
|
|
|
m.Post("/feishu/new", bindIgnErr(forms.NewFeishuHookForm{}), repo.FeishuHooksNewPost)
|
2021-07-23 10:11:27 +05:30
|
|
|
m.Post("/wechatwork/new", bindIgnErr(forms.NewWechatWorkHookForm{}), repo.WechatworkHooksNewPost)
|
2022-01-06 02:30:20 +05:30
|
|
|
m.Group("/{id}", func() {
|
|
|
|
m.Get("", repo.WebHooksEdit)
|
|
|
|
m.Post("/test", repo.TestWebhook)
|
|
|
|
m.Post("/replay/{uuid}", repo.ReplayWebhook)
|
|
|
|
})
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/gitea/{id}", bindIgnErr(forms.NewWebhookForm{}), repo.WebHooksEditPost)
|
|
|
|
m.Post("/gogs/{id}", bindIgnErr(forms.NewGogshookForm{}), repo.GogsHooksEditPost)
|
|
|
|
m.Post("/slack/{id}", bindIgnErr(forms.NewSlackHookForm{}), repo.SlackHooksEditPost)
|
|
|
|
m.Post("/discord/{id}", bindIgnErr(forms.NewDiscordHookForm{}), repo.DiscordHooksEditPost)
|
|
|
|
m.Post("/dingtalk/{id}", bindIgnErr(forms.NewDingtalkHookForm{}), repo.DingtalkHooksEditPost)
|
|
|
|
m.Post("/telegram/{id}", bindIgnErr(forms.NewTelegramHookForm{}), repo.TelegramHooksEditPost)
|
|
|
|
m.Post("/matrix/{id}", bindIgnErr(forms.NewMatrixHookForm{}), repo.MatrixHooksEditPost)
|
|
|
|
m.Post("/msteams/{id}", bindIgnErr(forms.NewMSTeamsHookForm{}), repo.MSTeamsHooksEditPost)
|
|
|
|
m.Post("/feishu/{id}", bindIgnErr(forms.NewFeishuHookForm{}), repo.FeishuHooksEditPost)
|
2021-07-23 10:11:27 +05:30
|
|
|
m.Post("/wechatwork/{id}", bindIgnErr(forms.NewWechatWorkHookForm{}), repo.WechatworkHooksEditPost)
|
2021-02-11 23:04:34 +05:30
|
|
|
}, webhooksEnabled)
|
2017-04-25 12:54:51 +05:30
|
|
|
|
|
|
|
m.Group("/keys", func() {
|
|
|
|
m.Combo("").Get(repo.DeployKeys).
|
2021-04-07 01:14:05 +05:30
|
|
|
Post(bindIgnErr(forms.AddKeyForm{}), repo.DeployKeysPost)
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Post("/delete", repo.DeleteDeployKey)
|
|
|
|
})
|
|
|
|
|
2019-10-29 00:01:55 +05:30
|
|
|
m.Group("/lfs", func() {
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/", repo.LFSFiles)
|
|
|
|
m.Get("/show/{oid}", repo.LFSFileGet)
|
|
|
|
m.Post("/delete/{oid}", repo.LFSDelete)
|
2019-10-29 00:01:55 +05:30
|
|
|
m.Get("/pointers", repo.LFSPointerFiles)
|
|
|
|
m.Post("/pointers/associate", repo.LFSAutoAssociate)
|
|
|
|
m.Get("/find", repo.LFSFileFind)
|
2019-12-12 18:48:07 +05:30
|
|
|
m.Group("/locks", func() {
|
|
|
|
m.Get("/", repo.LFSLocks)
|
|
|
|
m.Post("/", repo.LFSLockFile)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Post("/{lid}/unlock", repo.LFSUnlock)
|
2019-12-12 18:48:07 +05:30
|
|
|
})
|
2019-10-29 00:01:55 +05:30
|
|
|
})
|
|
|
|
|
2017-04-25 12:54:51 +05:30
|
|
|
}, func(ctx *context.Context) {
|
|
|
|
ctx.Data["PageIsSettings"] = true
|
2019-10-29 00:01:55 +05:30
|
|
|
ctx.Data["LFSStartServer"] = setting.LFS.StartServer
|
2017-07-17 07:34:43 +05:30
|
|
|
})
|
2021-04-10 05:56:08 +05:30
|
|
|
}, reqSignIn, context.RepoAssignment, context.UnitTypes(), reqRepoAdmin, context.RepoRef())
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2021-04-10 05:56:08 +05:30
|
|
|
m.Post("/{username}/{reponame}/action/{action}", reqSignIn, context.RepoAssignment, context.UnitTypes(), repo.Action)
|
2017-05-18 20:24:24 +05:30
|
|
|
|
2020-05-03 14:37:04 +05:30
|
|
|
// Grouping for those endpoints not requiring authentication
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{username}/{reponame}", func() {
|
2020-05-03 14:37:04 +05:30
|
|
|
m.Group("/milestone", func() {
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/{id}", repo.MilestoneIssuesAndPulls)
|
2020-05-03 14:37:04 +05:30
|
|
|
}, reqRepoIssuesOrPullsReader, context.RepoRef())
|
2021-12-18 03:50:27 +05:30
|
|
|
m.Get("/compare", repo.MustBeNotEmpty, reqRepoCodeReader, repo.SetEditorconfigIfExists, ignSignIn, repo.SetDiffViewStyle, repo.SetWhitespaceBehavior, repo.CompareDiff)
|
2020-05-05 04:14:30 +05:30
|
|
|
m.Combo("/compare/*", repo.MustBeNotEmpty, reqRepoCodeReader, repo.SetEditorconfigIfExists).
|
2021-02-13 10:05:43 +05:30
|
|
|
Get(ignSignIn, repo.SetDiffViewStyle, repo.SetWhitespaceBehavior, repo.CompareDiff).
|
2021-04-07 01:14:05 +05:30
|
|
|
Post(reqSignIn, context.RepoMustNotBeArchived(), reqRepoPullsReader, repo.MustAllowPulls, bindIgnErr(forms.CreateIssueForm{}), repo.SetWhitespaceBehavior, repo.CompareAndPullRequestPost)
|
2021-04-10 05:56:08 +05:30
|
|
|
}, context.RepoAssignment, context.UnitTypes())
|
2020-05-03 14:37:04 +05:30
|
|
|
|
|
|
|
// Grouping for those endpoints that do require authentication
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{username}/{reponame}", func() {
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("/issues", func() {
|
2020-09-11 20:18:39 +05:30
|
|
|
m.Group("/new", func() {
|
|
|
|
m.Combo("").Get(context.RepoRef(), repo.NewIssue).
|
2021-04-07 01:14:05 +05:30
|
|
|
Post(bindIgnErr(forms.CreateIssueForm{}), repo.NewIssuePost)
|
2020-09-11 20:18:39 +05:30
|
|
|
m.Get("/choose", context.RepoRef(), repo.NewIssueChooseTemplate)
|
|
|
|
})
|
2019-01-24 00:28:38 +05:30
|
|
|
}, context.RepoMustNotBeArchived(), reqRepoIssueReader)
|
2021-02-18 20:17:23 +05:30
|
|
|
// FIXME: should use different URLs but mostly same logic for comments of issue and pull request.
|
2017-10-16 13:25:43 +05:30
|
|
|
// So they can apply their own enable/disable logic on routers.
|
2021-12-17 00:31:14 +05:30
|
|
|
m.Group("/{type:issues|pulls}", func() {
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{index}", func() {
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Post("/title", repo.UpdateIssueTitle)
|
|
|
|
m.Post("/content", repo.UpdateIssueContent)
|
|
|
|
m.Post("/watch", repo.IssueWatch)
|
2020-09-08 21:59:51 +05:30
|
|
|
m.Post("/ref", repo.UpdateIssueRef)
|
2018-07-18 02:53:58 +05:30
|
|
|
m.Group("/dependency", func() {
|
|
|
|
m.Post("/add", repo.AddDependency)
|
|
|
|
m.Post("/delete", repo.RemoveDependency)
|
|
|
|
})
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Combo("/comments").Post(repo.MustAllowUserComment, bindIgnErr(forms.CreateCommentForm{}), repo.NewComment)
|
2017-09-12 12:18:13 +05:30
|
|
|
m.Group("/times", func() {
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/add", bindIgnErr(forms.AddTimeManuallyForm{}), repo.AddTimeManually)
|
2021-02-19 16:22:11 +05:30
|
|
|
m.Post("/{timeid}/delete", repo.DeleteTime)
|
2017-09-12 12:18:13 +05:30
|
|
|
m.Group("/stopwatch", func() {
|
|
|
|
m.Post("/toggle", repo.IssueStopwatch)
|
|
|
|
m.Post("/cancel", repo.CancelStopwatch)
|
|
|
|
})
|
|
|
|
})
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/reactions/{action}", bindIgnErr(forms.ReactionForm{}), repo.ChangeIssueReaction)
|
|
|
|
m.Post("/lock", reqRepoIssueWriter, bindIgnErr(forms.IssueLockForm{}), repo.LockIssue)
|
2019-02-19 02:25:04 +05:30
|
|
|
m.Post("/unlock", reqRepoIssueWriter, repo.UnlockIssue)
|
2019-01-24 00:28:38 +05:30
|
|
|
}, context.RepoMustNotBeArchived())
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{index}", func() {
|
2020-10-05 11:19:33 +05:30
|
|
|
m.Get("/attachments", repo.GetIssueAttachments)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/attachments/{uuid}", repo.GetAttachment)
|
2020-10-05 11:19:33 +05:30
|
|
|
})
|
2021-10-11 04:10:03 +05:30
|
|
|
m.Group("/{index}", func() {
|
|
|
|
m.Post("/content-history/soft-delete", repo.SoftDeleteContentHistory)
|
|
|
|
})
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2018-11-28 16:56:14 +05:30
|
|
|
m.Post("/labels", reqRepoIssuesOrPullsWriter, repo.UpdateIssueLabel)
|
|
|
|
m.Post("/milestone", reqRepoIssuesOrPullsWriter, repo.UpdateIssueMilestone)
|
2020-08-17 08:37:38 +05:30
|
|
|
m.Post("/projects", reqRepoIssuesOrPullsWriter, repo.UpdateIssueProject)
|
2018-11-28 16:56:14 +05:30
|
|
|
m.Post("/assignee", reqRepoIssuesOrPullsWriter, repo.UpdateIssueAssignee)
|
2020-04-06 22:03:34 +05:30
|
|
|
m.Post("/request_review", reqRepoIssuesOrPullsReader, repo.UpdatePullReviewRequest)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/dismiss_review", reqRepoAdmin, bindIgnErr(forms.DismissReviewForm{}), repo.DismissReview)
|
2018-11-28 16:56:14 +05:30
|
|
|
m.Post("/status", reqRepoIssuesOrPullsWriter, repo.UpdateIssueStatus)
|
2020-04-18 19:20:25 +05:30
|
|
|
m.Post("/resolve_conversation", reqRepoIssuesOrPullsReader, repo.UpdateResolveConversation)
|
2020-10-05 11:19:33 +05:30
|
|
|
m.Post("/attachments", repo.UploadIssueAttachment)
|
|
|
|
m.Post("/attachments/remove", repo.DeleteAttachment)
|
2019-01-24 00:28:38 +05:30
|
|
|
}, context.RepoMustNotBeArchived())
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/comments/{id}", func() {
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Post("", repo.UpdateCommentContent)
|
|
|
|
m.Post("/delete", repo.DeleteComment)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/reactions/{action}", bindIgnErr(forms.ReactionForm{}), repo.ChangeCommentReaction)
|
2019-01-24 00:28:38 +05:30
|
|
|
}, context.RepoMustNotBeArchived())
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/comments/{id}", func() {
|
2020-10-05 11:19:33 +05:30
|
|
|
m.Get("/attachments", repo.GetCommentAttachments)
|
|
|
|
})
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("/labels", func() {
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/new", bindIgnErr(forms.CreateLabelForm{}), repo.NewLabel)
|
|
|
|
m.Post("/edit", bindIgnErr(forms.CreateLabelForm{}), repo.UpdateLabel)
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Post("/delete", repo.DeleteLabel)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/initialize", bindIgnErr(forms.InitializeLabelsForm{}), repo.InitializeLabels)
|
2019-01-24 00:28:38 +05:30
|
|
|
}, context.RepoMustNotBeArchived(), reqRepoIssuesOrPullsWriter, context.RepoRef())
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("/milestones", func() {
|
|
|
|
m.Combo("/new").Get(repo.NewMilestone).
|
2021-04-07 01:14:05 +05:30
|
|
|
Post(bindIgnErr(forms.CreateMilestoneForm{}), repo.NewMilestonePost)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/{id}/edit", repo.EditMilestone)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/{id}/edit", bindIgnErr(forms.CreateMilestoneForm{}), repo.EditMilestonePost)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Post("/{id}/{action}", repo.ChangeMilestoneStatus)
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Post("/delete", repo.DeleteMilestone)
|
2019-01-24 00:28:38 +05:30
|
|
|
}, context.RepoMustNotBeArchived(), reqRepoIssuesOrPullsWriter, context.RepoRef())
|
2019-12-16 11:50:25 +05:30
|
|
|
m.Group("/pull", func() {
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Post("/{index}/target_branch", repo.UpdatePullRequestTarget)
|
2019-12-16 11:50:25 +05:30
|
|
|
}, context.RepoMustNotBeArchived())
|
2017-04-25 12:54:51 +05:30
|
|
|
|
|
|
|
m.Group("", func() {
|
|
|
|
m.Group("", func() {
|
2017-10-30 07:34:25 +05:30
|
|
|
m.Combo("/_edit/*").Get(repo.EditFile).
|
2021-04-07 01:14:05 +05:30
|
|
|
Post(bindIgnErr(forms.EditRepoFileForm{}), repo.EditFilePost)
|
2017-10-30 07:34:25 +05:30
|
|
|
m.Combo("/_new/*").Get(repo.NewFile).
|
2021-04-07 01:14:05 +05:30
|
|
|
Post(bindIgnErr(forms.EditRepoFileForm{}), repo.NewFilePost)
|
|
|
|
m.Post("/_preview/*", bindIgnErr(forms.EditPreviewDiffForm{}), repo.DiffPreviewPost)
|
2017-10-30 07:34:25 +05:30
|
|
|
m.Combo("/_delete/*").Get(repo.DeleteFile).
|
2021-04-07 01:14:05 +05:30
|
|
|
Post(bindIgnErr(forms.DeleteRepoFileForm{}), repo.DeleteFilePost)
|
2017-10-30 07:34:25 +05:30
|
|
|
m.Combo("/_upload/*", repo.MustBeAbleToUpload).
|
|
|
|
Get(repo.UploadFile).
|
2021-04-07 01:14:05 +05:30
|
|
|
Post(bindIgnErr(forms.UploadRepoFileForm{}), repo.UploadFilePost)
|
2017-10-30 07:34:25 +05:30
|
|
|
}, context.RepoRefByType(context.RepoRefBranch), repo.MustBeEditable)
|
|
|
|
m.Group("", func() {
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Post("/upload-file", repo.UploadFileToServer)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/upload-remove", bindIgnErr(forms.RemoveUploadFileForm{}), repo.RemoveUploadFileFromServer)
|
2017-10-30 07:34:25 +05:30
|
|
|
}, context.RepoRef(), repo.MustBeEditable, repo.MustBeAbleToUpload)
|
2019-01-24 00:28:38 +05:30
|
|
|
}, context.RepoMustNotBeArchived(), reqRepoCodeWriter, repo.MustBeNotEmpty)
|
2017-10-16 01:29:24 +05:30
|
|
|
|
|
|
|
m.Group("/branches", func() {
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/_new", func() {
|
2017-10-30 07:34:25 +05:30
|
|
|
m.Post("/branch/*", context.RepoRefByType(context.RepoRefBranch), repo.CreateBranch)
|
|
|
|
m.Post("/tag/*", context.RepoRefByType(context.RepoRefTag), repo.CreateBranch)
|
|
|
|
m.Post("/commit/*", context.RepoRefByType(context.RepoRefCommit), repo.CreateBranch)
|
2021-04-07 01:14:05 +05:30
|
|
|
}, bindIgnErr(forms.NewBranchForm{}))
|
2017-10-26 06:19:16 +05:30
|
|
|
m.Post("/delete", repo.DeleteBranchPost)
|
|
|
|
m.Post("/restore", repo.RestoreBranchPost)
|
2019-01-24 00:28:38 +05:30
|
|
|
}, context.RepoMustNotBeArchived(), reqRepoCodeWriter, repo.MustBeNotEmpty)
|
2017-10-26 06:19:16 +05:30
|
|
|
|
2021-04-10 05:56:08 +05:30
|
|
|
}, reqSignIn, context.RepoAssignment, context.UnitTypes())
|
2017-05-18 20:24:24 +05:30
|
|
|
|
|
|
|
// Releases
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{username}/{reponame}", func() {
|
2020-11-03 04:40:22 +05:30
|
|
|
m.Get("/tags", repo.TagsList, repo.MustBeNotEmpty,
|
|
|
|
reqRepoCodeReader, context.RepoRefByType(context.RepoRefTag))
|
2017-05-18 20:24:24 +05:30
|
|
|
m.Group("/releases", func() {
|
2020-04-18 20:17:15 +05:30
|
|
|
m.Get("/", repo.Releases)
|
2020-09-17 23:54:23 +05:30
|
|
|
m.Get("/tag/*", repo.SingleRelease)
|
2020-04-18 20:17:15 +05:30
|
|
|
m.Get("/latest", repo.LatestRelease)
|
2021-05-06 08:42:50 +05:30
|
|
|
}, repo.MustBeNotEmpty, reqRepoReleaseReader, context.RepoRefByType(context.RepoRefTag, true))
|
|
|
|
m.Get("/releases/attachments/{uuid}", repo.GetAttachment, repo.MustBeNotEmpty, reqRepoReleaseReader)
|
2017-06-18 09:08:24 +05:30
|
|
|
m.Group("/releases", func() {
|
2017-05-18 20:24:24 +05:30
|
|
|
m.Get("/new", repo.NewRelease)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/new", bindIgnErr(forms.NewReleaseForm{}), repo.NewReleasePost)
|
2017-05-18 20:24:24 +05:30
|
|
|
m.Post("/delete", repo.DeleteRelease)
|
2020-10-05 11:19:33 +05:30
|
|
|
m.Post("/attachments", repo.UploadReleaseAttachment)
|
|
|
|
m.Post("/attachments/remove", repo.DeleteAttachment)
|
2019-01-24 00:28:38 +05:30
|
|
|
}, reqSignIn, repo.MustBeNotEmpty, context.RepoMustNotBeArchived(), reqRepoReleaseWriter, context.RepoRef())
|
2020-11-03 04:40:22 +05:30
|
|
|
m.Post("/tags/delete", repo.DeleteTag, reqSignIn,
|
|
|
|
repo.MustBeNotEmpty, context.RepoMustNotBeArchived(), reqRepoCodeWriter, context.RepoRef())
|
2017-05-18 20:24:24 +05:30
|
|
|
m.Group("/releases", func() {
|
|
|
|
m.Get("/edit/*", repo.EditRelease)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/edit/*", bindIgnErr(forms.EditReleaseForm{}), repo.EditReleasePost)
|
2019-01-24 00:28:38 +05:30
|
|
|
}, reqSignIn, repo.MustBeNotEmpty, context.RepoMustNotBeArchived(), reqRepoReleaseWriter, func(ctx *context.Context) {
|
2017-05-18 20:24:24 +05:30
|
|
|
var err error
|
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(ctx.Repo.Repository.DefaultBranch)
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetBranchCommit", err)
|
2017-05-18 20:24:24 +05:30
|
|
|
return
|
|
|
|
}
|
2017-10-26 07:07:33 +05:30
|
|
|
ctx.Repo.CommitsCount, err = ctx.Repo.GetCommitsCount()
|
2017-05-18 20:24:24 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetCommitsCount", err)
|
2017-05-18 20:24:24 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["CommitsCount"] = ctx.Repo.CommitsCount
|
|
|
|
})
|
2021-07-23 23:38:04 +05:30
|
|
|
|
2021-04-10 05:56:08 +05:30
|
|
|
}, ignSignIn, context.RepoAssignment, context.UnitTypes(), reqRepoReleaseReader)
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2021-07-23 23:38:04 +05:30
|
|
|
// to maintain compatibility with old attachments
|
|
|
|
m.Group("/{username}/{reponame}", func() {
|
|
|
|
m.Get("/attachments/{uuid}", repo.GetAttachment)
|
|
|
|
}, ignSignIn, context.RepoAssignment, context.UnitTypes())
|
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{username}/{reponame}", func() {
|
2018-06-21 14:39:46 +05:30
|
|
|
m.Post("/topics", repo.TopicsPost)
|
2021-04-10 05:56:08 +05:30
|
|
|
}, context.RepoAssignment, context.RepoMustNotBeArchived(), reqRepoAdmin)
|
2018-04-11 08:21:44 +05:30
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{username}/{reponame}", func() {
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("", func() {
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/{type:issues|pulls}", repo.Issues)
|
|
|
|
m.Get("/{type:issues|pulls}/{index}", repo.ViewIssue)
|
2021-10-11 04:10:03 +05:30
|
|
|
m.Group("/{type:issues|pulls}/{index}/content-history", func() {
|
|
|
|
m.Get("/overview", repo.GetContentHistoryOverview)
|
|
|
|
m.Get("/list", repo.GetContentHistoryList)
|
|
|
|
m.Get("/detail", repo.GetContentHistoryDetail)
|
|
|
|
})
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/labels", reqRepoIssuesOrPullsReader, repo.RetrieveLabels, repo.Labels)
|
2018-11-28 16:56:14 +05:30
|
|
|
m.Get("/milestones", reqRepoIssuesOrPullsReader, repo.Milestones)
|
2017-06-03 11:26:36 +05:30
|
|
|
}, context.RepoRef())
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2020-08-17 08:37:38 +05:30
|
|
|
m.Group("/projects", func() {
|
|
|
|
m.Get("", repo.Projects)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/{id}", repo.ViewProject)
|
2020-08-22 12:28:59 +05:30
|
|
|
m.Group("", func() {
|
|
|
|
m.Get("/new", repo.NewProject)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/new", bindIgnErr(forms.CreateProjectForm{}), repo.NewProjectPost)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{id}", func() {
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("", bindIgnErr(forms.EditProjectBoardForm{}), repo.AddBoardToProjectPost)
|
2020-08-22 12:28:59 +05:30
|
|
|
m.Post("/delete", repo.DeleteProject)
|
|
|
|
|
|
|
|
m.Get("/edit", repo.EditProject)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/edit", bindIgnErr(forms.CreateProjectForm{}), repo.EditProjectPost)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Post("/{action:open|close}", repo.ChangeProjectStatus)
|
2020-08-22 12:28:59 +05:30
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{boardID}", func() {
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Put("", bindIgnErr(forms.EditProjectBoardForm{}), repo.EditProjectBoard)
|
2020-08-22 12:28:59 +05:30
|
|
|
m.Delete("", repo.DeleteProjectBoard)
|
2021-01-16 01:59:32 +05:30
|
|
|
m.Post("/default", repo.SetDefaultProjectBoard)
|
2020-08-22 12:28:59 +05:30
|
|
|
|
2021-12-08 12:27:18 +05:30
|
|
|
m.Post("/move", repo.MoveIssues)
|
2020-08-22 12:28:59 +05:30
|
|
|
})
|
2020-08-17 08:37:38 +05:30
|
|
|
})
|
2020-08-22 12:28:59 +05:30
|
|
|
}, reqRepoProjectsWriter, context.RepoMustNotBeArchived())
|
2020-08-17 08:37:38 +05:30
|
|
|
}, reqRepoProjectsReader, repo.MustEnableProjects)
|
|
|
|
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("/wiki", func() {
|
2021-11-16 23:48:25 +05:30
|
|
|
m.Combo("/").
|
|
|
|
Get(repo.Wiki).
|
|
|
|
Post(context.RepoMustNotBeArchived(),
|
|
|
|
reqSignIn,
|
|
|
|
reqRepoWikiWriter,
|
|
|
|
bindIgnErr(forms.NewWikiForm{}),
|
|
|
|
repo.WikiPost)
|
|
|
|
m.Combo("/*").
|
|
|
|
Get(repo.Wiki).
|
|
|
|
Post(context.RepoMustNotBeArchived(),
|
|
|
|
reqSignIn,
|
|
|
|
reqRepoWikiWriter,
|
|
|
|
bindIgnErr(forms.NewWikiForm{}),
|
|
|
|
repo.WikiPost)
|
2021-02-13 10:05:43 +05:30
|
|
|
m.Get("/commit/{sha:[a-f0-9]{7,40}}", repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.SetWhitespaceBehavior, repo.Diff)
|
2021-08-31 07:52:54 +05:30
|
|
|
m.Get("/commit/{sha:[a-f0-9]{7,40}}.{ext:patch|diff}", repo.RawDiff)
|
2021-11-16 23:48:25 +05:30
|
|
|
}, repo.MustEnableWiki, func(ctx *context.Context) {
|
2020-05-16 22:08:40 +05:30
|
|
|
ctx.Data["PageIsWiki"] = true
|
|
|
|
})
|
2017-04-25 12:54:51 +05:30
|
|
|
|
|
|
|
m.Group("/wiki", func() {
|
|
|
|
m.Get("/raw/*", repo.WikiRaw)
|
2017-09-30 09:34:16 +05:30
|
|
|
}, repo.MustEnableWiki)
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2017-10-15 04:47:39 +05:30
|
|
|
m.Group("/activity", func() {
|
|
|
|
m.Get("", repo.Activity)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/{period}", repo.Activity)
|
2021-11-10 01:27:58 +05:30
|
|
|
}, context.RepoRef(), repo.MustBeNotEmpty, context.RequireRepoReaderOr(unit.TypePullRequests, unit.TypeIssues, unit.TypeReleases))
|
2017-10-15 04:47:39 +05:30
|
|
|
|
2019-05-04 18:09:03 +05:30
|
|
|
m.Group("/activity_author_data", func() {
|
|
|
|
m.Get("", repo.ActivityAuthors)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/{period}", repo.ActivityAuthors)
|
2021-11-10 01:27:58 +05:30
|
|
|
}, context.RepoRef(), repo.MustBeNotEmpty, context.RequireRepoReaderOr(unit.TypeCode))
|
2019-05-04 18:09:03 +05:30
|
|
|
|
[RFC] Make archival asynchronous (#11296)
* Make archival asynchronous
The prime benefit being sought here is for large archives to not
clog up the rendering process and cause unsightly proxy timeouts.
As a secondary benefit, archive-in-progress is moved out of the
way into a /tmp file so that new archival requests for the same
commit will not get fulfilled based on an archive that isn't yet
finished.
This asynchronous system is fairly primitive; request comes in, we'll
spawn off a new goroutine to handle it, then we'll mark it as done.
Status requests will see if the file exists in the final location,
and report the archival as done when it exists.
Fixes #11265
* Archive links: drop initial delay to three-quarters of a second
Some, or perhaps even most, archives will not take all that long to archive.
The archive process starts as soon as the download button is initially
clicked, so in theory they could be done quite quickly. Drop the initial
delay down to three-quarters of a second to make it more responsive in the
common case of the archive being quickly created.
* archiver: restructure a little bit to facilitate testing
This introduces two sync.Cond pointers to the archiver package. If they're
non-nil when we go to process a request, we'll wait until signalled (at all)
to proceed. The tests will then create the sync.Cond so that it can signal
at-will and sanity-check the state of the queue at different phases.
The author believes that nil-checking these two sync.Cond pointers on every
archive processing will introduce minimal overhead with no impact on
maintainability.
* gofmt nit: no space around binary + operator
* services: archiver: appease golangci-lint, lock queueMutex
Locking/unlocking the queueMutex is allowed, but not required, for
Cond.Signal() and Cond.Broadcast(). The magic at play here is just a little
too much for golangci-lint, as we take the address of queueMutex and this is
mostly used in archiver.go; the variable still gets flagged as unused.
* archiver: tests: fix several timing nits
Once we've signaled a cond var, it may take some small amount of time for
the goroutines released to hit the spot we're wanting them to be at. Give
them an appropriate amount of time.
* archiver: tests: no underscore in var name, ungh
* archiver: tests: Test* is run in a separate context than TestMain
We must setup the mutex/cond variables at the beginning of any test that's
going to use it, or else these will be nil when the test is actually ran.
* archiver: tests: hopefully final tweak
Things got shuffled around such that we carefully build up and release
requests from the queue, so we can validate the state of the queue at each
step. Fix some assertions that no longer hold true as fallout.
* repo: Download: restore some semblance of previous behavior
When archival was made async, the GET endpoint was only useful if a previous
POST had initiated the download. This commit restores the previous behavior,
to an extent; we'll now submit the archive request there and return a
"202 Accepted" to indicate that it's processing if we didn't manage to
complete the request within ~2 seconds of submission.
This lets a client directly GET the archive, and gives them some indication
that they may attempt to GET it again at a later time.
* archiver: tests: simplify a bit further
We don't need to risk failure and use time.ParseDuration to get 2 *
time.Second.
else if isn't really necessary if the conditions are simple enough and lead
to the same result.
* archiver: tests: resolve potential source of flakiness
Increase all timeouts to 10 seconds; these aren't hard-coded sleeps, so
there's no guarantee we'll actually take that long. If we need longer to
not have a false-positive, then so be it.
While here, various assert.{Not,}Equal arguments are flipped around so that
the wording in error output reflects reality, where the expected argument is
second and actual third.
* archiver: setup infrastructure for notifying consumers of completion
This API will *not* allow consumers to subscribe to specific requests being
completed, just *any* request being completed. The caller is responsible for
determining if their request is satisfied and waiting again if needed.
* repo: archive: make GET endpoint synchronous again
If the request isn't complete, this endpoint will now submit the request and
wait for completion using the new API. This may still be susceptible to
timeouts for larger repos, but other endpoints now exist that the web
interface will use to negotiate its way through larger archive processes.
* archiver: tests: amend test to include WaitForCompletion()
This is a trivial one, so go ahead and include it.
* archiver: tests: fix test by calling NewContext()
The mutex is otherwise uninitialized, so we need to ensure that we're
actually initializing it if we plan to test it.
* archiver: tests: integrate new WaitForCompletion a little better
We can use this to wait for archives to come in, rather than spinning and
hoping with a timeout.
* archiver: tests: combine numQueued declaration with next-instruction assignment
* routers: repo: reap unused archiving flag from DownloadStatus()
This had some planned usage before, indicating whether this request
initiated the archival process or not. After several rounds of refactoring,
this use was deemed not necessary for much of anything and got boiled down
to !complete in all cases.
* services: archiver: restructure to use a channel
We now offer two forms of waiting for a request:
- WaitForCompletion: wait for completion with no timeout
- TimedWaitForCompletion: wait for completion with timeout
In both cases, we wait for the given request's cchan to close; in the latter
case, we do so with the caller-provided timeout. This completely removes the
need for busy-wait loops in Download/InitiateDownload, as it's fairly clean
to wait on a channel with timeout.
* services: archiver: use defer to unlock now that we can
This previously carried the lock into the goroutine, but an intermediate
step just added the request to archiveInProgress outside of the new
goroutine and removed the need for the goroutine to start out with it.
* Revert "archiver: tests: combine numQueued declaration with next-instruction assignment"
This reverts commit bcc52140238e16680f2e05e448e9be51372afdf5.
Revert "archiver: tests: integrate new WaitForCompletion a little better"
This reverts commit 9fc8bedb5667d24d3a3c7843dc28a229efffb1e6.
Revert "archiver: tests: fix test by calling NewContext()"
This reverts commit 709c35685eaaf261ebbb7d3420e3376a4ee8e7f2.
Revert "archiver: tests: amend test to include WaitForCompletion()"
This reverts commit 75261f56bc05d1fa8ff7e81dcbc0ccd93fdc9d50.
* archiver: tests: first attempt at WaitForCompletion() tests
* archiver: tests: slight improvement, less busy-loop
Just wait for the requests to complete in order, instead of busy-waiting
with a timeout. This is slightly less fragile.
While here, reverse the arguments of a nearby assert.Equal() so that
expected/actual are correct in any test output.
* archiver: address lint nits
* services: archiver: only close the channel once
* services: archiver: use a struct{} for the wait channel
This makes it obvious that the channel is only being used as a signal,
rather than anything useful being piped through it.
* archiver: tests: fix expectations
Move the close of the channel into doArchive() itself; notably, before these
goroutines move on to waiting on the Release cond.
The tests are adjusted to reflect that we can't WaitForCompletion() after
they've already completed, as WaitForCompletion() doesn't indicate that
they've been released from the queue yet.
* archiver: tests: set cchan to nil for comparison
* archiver: move ctx.Error's back into the route handlers
We shouldn't be setting this in a service, we should just be validating the
request that we were handed.
* services: archiver: use regex to match a hash
This makes sure we don't try and use refName as a hash when it's clearly not
one, e.g. heads/pull/foo.
* routers: repo: remove the weird /archive/status endpoint
We don't need to do this anymore, we can just continue POSTing to the
archive/* endpoint until we're told the download's complete. This avoids a
potential naming conflict, where a ref could start with "status/"
* archiver: tests: bump reasonable timeout to 15s
* archiver: tests: actually release timedReq
* archiver: tests: run through inFlight instead of manually checking
While we're here, add a test for manually re-processing an archive that's
already been complete. Re-open the channel and mark it incomplete, so that
doArchive can just mark it complete again.
* initArchiveLinks: prevent default behavior from clicking
* archiver: alias gitea's context, golang context import pending
* archiver: simplify logic, just reconstruct slices
While the previous logic was perhaps slightly more efficient, the
new variant's readability is much improved.
* archiver: don't block shutdown on waiting for archive
The technique established launches a goroutine to do the wait,
which will close a wait channel upon termination. For the timeout
case, we also send back a value indicating whether the timeout was
hit or not.
The timeouts are expected to be relatively small, but still a multi-
second delay to shutdown due to this could be unfortunate.
* archiver: simplify shutdown logic
We can just grab the shutdown channel from the graceful manager instead of
constructing a channel to halt the caller and/or pass a result back.
* Style issues
* Fix mis-merge
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: Lauris BH <lauris@nix.lv>
2020-11-08 01:57:28 +05:30
|
|
|
m.Group("/archive", func() {
|
2021-06-24 02:42:38 +05:30
|
|
|
m.Get("/*", repo.Download)
|
[RFC] Make archival asynchronous (#11296)
* Make archival asynchronous
The prime benefit being sought here is for large archives to not
clog up the rendering process and cause unsightly proxy timeouts.
As a secondary benefit, archive-in-progress is moved out of the
way into a /tmp file so that new archival requests for the same
commit will not get fulfilled based on an archive that isn't yet
finished.
This asynchronous system is fairly primitive; request comes in, we'll
spawn off a new goroutine to handle it, then we'll mark it as done.
Status requests will see if the file exists in the final location,
and report the archival as done when it exists.
Fixes #11265
* Archive links: drop initial delay to three-quarters of a second
Some, or perhaps even most, archives will not take all that long to archive.
The archive process starts as soon as the download button is initially
clicked, so in theory they could be done quite quickly. Drop the initial
delay down to three-quarters of a second to make it more responsive in the
common case of the archive being quickly created.
* archiver: restructure a little bit to facilitate testing
This introduces two sync.Cond pointers to the archiver package. If they're
non-nil when we go to process a request, we'll wait until signalled (at all)
to proceed. The tests will then create the sync.Cond so that it can signal
at-will and sanity-check the state of the queue at different phases.
The author believes that nil-checking these two sync.Cond pointers on every
archive processing will introduce minimal overhead with no impact on
maintainability.
* gofmt nit: no space around binary + operator
* services: archiver: appease golangci-lint, lock queueMutex
Locking/unlocking the queueMutex is allowed, but not required, for
Cond.Signal() and Cond.Broadcast(). The magic at play here is just a little
too much for golangci-lint, as we take the address of queueMutex and this is
mostly used in archiver.go; the variable still gets flagged as unused.
* archiver: tests: fix several timing nits
Once we've signaled a cond var, it may take some small amount of time for
the goroutines released to hit the spot we're wanting them to be at. Give
them an appropriate amount of time.
* archiver: tests: no underscore in var name, ungh
* archiver: tests: Test* is run in a separate context than TestMain
We must setup the mutex/cond variables at the beginning of any test that's
going to use it, or else these will be nil when the test is actually ran.
* archiver: tests: hopefully final tweak
Things got shuffled around such that we carefully build up and release
requests from the queue, so we can validate the state of the queue at each
step. Fix some assertions that no longer hold true as fallout.
* repo: Download: restore some semblance of previous behavior
When archival was made async, the GET endpoint was only useful if a previous
POST had initiated the download. This commit restores the previous behavior,
to an extent; we'll now submit the archive request there and return a
"202 Accepted" to indicate that it's processing if we didn't manage to
complete the request within ~2 seconds of submission.
This lets a client directly GET the archive, and gives them some indication
that they may attempt to GET it again at a later time.
* archiver: tests: simplify a bit further
We don't need to risk failure and use time.ParseDuration to get 2 *
time.Second.
else if isn't really necessary if the conditions are simple enough and lead
to the same result.
* archiver: tests: resolve potential source of flakiness
Increase all timeouts to 10 seconds; these aren't hard-coded sleeps, so
there's no guarantee we'll actually take that long. If we need longer to
not have a false-positive, then so be it.
While here, various assert.{Not,}Equal arguments are flipped around so that
the wording in error output reflects reality, where the expected argument is
second and actual third.
* archiver: setup infrastructure for notifying consumers of completion
This API will *not* allow consumers to subscribe to specific requests being
completed, just *any* request being completed. The caller is responsible for
determining if their request is satisfied and waiting again if needed.
* repo: archive: make GET endpoint synchronous again
If the request isn't complete, this endpoint will now submit the request and
wait for completion using the new API. This may still be susceptible to
timeouts for larger repos, but other endpoints now exist that the web
interface will use to negotiate its way through larger archive processes.
* archiver: tests: amend test to include WaitForCompletion()
This is a trivial one, so go ahead and include it.
* archiver: tests: fix test by calling NewContext()
The mutex is otherwise uninitialized, so we need to ensure that we're
actually initializing it if we plan to test it.
* archiver: tests: integrate new WaitForCompletion a little better
We can use this to wait for archives to come in, rather than spinning and
hoping with a timeout.
* archiver: tests: combine numQueued declaration with next-instruction assignment
* routers: repo: reap unused archiving flag from DownloadStatus()
This had some planned usage before, indicating whether this request
initiated the archival process or not. After several rounds of refactoring,
this use was deemed not necessary for much of anything and got boiled down
to !complete in all cases.
* services: archiver: restructure to use a channel
We now offer two forms of waiting for a request:
- WaitForCompletion: wait for completion with no timeout
- TimedWaitForCompletion: wait for completion with timeout
In both cases, we wait for the given request's cchan to close; in the latter
case, we do so with the caller-provided timeout. This completely removes the
need for busy-wait loops in Download/InitiateDownload, as it's fairly clean
to wait on a channel with timeout.
* services: archiver: use defer to unlock now that we can
This previously carried the lock into the goroutine, but an intermediate
step just added the request to archiveInProgress outside of the new
goroutine and removed the need for the goroutine to start out with it.
* Revert "archiver: tests: combine numQueued declaration with next-instruction assignment"
This reverts commit bcc52140238e16680f2e05e448e9be51372afdf5.
Revert "archiver: tests: integrate new WaitForCompletion a little better"
This reverts commit 9fc8bedb5667d24d3a3c7843dc28a229efffb1e6.
Revert "archiver: tests: fix test by calling NewContext()"
This reverts commit 709c35685eaaf261ebbb7d3420e3376a4ee8e7f2.
Revert "archiver: tests: amend test to include WaitForCompletion()"
This reverts commit 75261f56bc05d1fa8ff7e81dcbc0ccd93fdc9d50.
* archiver: tests: first attempt at WaitForCompletion() tests
* archiver: tests: slight improvement, less busy-loop
Just wait for the requests to complete in order, instead of busy-waiting
with a timeout. This is slightly less fragile.
While here, reverse the arguments of a nearby assert.Equal() so that
expected/actual are correct in any test output.
* archiver: address lint nits
* services: archiver: only close the channel once
* services: archiver: use a struct{} for the wait channel
This makes it obvious that the channel is only being used as a signal,
rather than anything useful being piped through it.
* archiver: tests: fix expectations
Move the close of the channel into doArchive() itself; notably, before these
goroutines move on to waiting on the Release cond.
The tests are adjusted to reflect that we can't WaitForCompletion() after
they've already completed, as WaitForCompletion() doesn't indicate that
they've been released from the queue yet.
* archiver: tests: set cchan to nil for comparison
* archiver: move ctx.Error's back into the route handlers
We shouldn't be setting this in a service, we should just be validating the
request that we were handed.
* services: archiver: use regex to match a hash
This makes sure we don't try and use refName as a hash when it's clearly not
one, e.g. heads/pull/foo.
* routers: repo: remove the weird /archive/status endpoint
We don't need to do this anymore, we can just continue POSTing to the
archive/* endpoint until we're told the download's complete. This avoids a
potential naming conflict, where a ref could start with "status/"
* archiver: tests: bump reasonable timeout to 15s
* archiver: tests: actually release timedReq
* archiver: tests: run through inFlight instead of manually checking
While we're here, add a test for manually re-processing an archive that's
already been complete. Re-open the channel and mark it incomplete, so that
doArchive can just mark it complete again.
* initArchiveLinks: prevent default behavior from clicking
* archiver: alias gitea's context, golang context import pending
* archiver: simplify logic, just reconstruct slices
While the previous logic was perhaps slightly more efficient, the
new variant's readability is much improved.
* archiver: don't block shutdown on waiting for archive
The technique established launches a goroutine to do the wait,
which will close a wait channel upon termination. For the timeout
case, we also send back a value indicating whether the timeout was
hit or not.
The timeouts are expected to be relatively small, but still a multi-
second delay to shutdown due to this could be unfortunate.
* archiver: simplify shutdown logic
We can just grab the shutdown channel from the graceful manager instead of
constructing a channel to halt the caller and/or pass a result back.
* Style issues
* Fix mis-merge
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: Lauris BH <lauris@nix.lv>
2020-11-08 01:57:28 +05:30
|
|
|
m.Post("/*", repo.InitiateDownload)
|
|
|
|
}, repo.MustBeNotEmpty, reqRepoCodeReader)
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2017-10-26 06:19:16 +05:30
|
|
|
m.Group("/branches", func() {
|
|
|
|
m.Get("", repo.Branches)
|
2019-01-18 05:31:04 +05:30
|
|
|
}, repo.MustBeNotEmpty, context.RepoRef(), reqRepoCodeReader)
|
2017-10-26 06:19:16 +05:30
|
|
|
|
2019-11-15 08:22:59 +05:30
|
|
|
m.Group("/blob_excerpt", func() {
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/{sha}", repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.ExcerptBlob)
|
2019-11-15 08:22:59 +05:30
|
|
|
}, repo.MustBeNotEmpty, context.RepoRef(), reqRepoCodeReader)
|
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/pulls/{index}", func() {
|
2018-01-05 16:26:52 +05:30
|
|
|
m.Get(".diff", repo.DownloadPullDiff)
|
2018-01-07 18:40:20 +05:30
|
|
|
m.Get(".patch", repo.DownloadPullPatch)
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Get("/commits", context.RepoRef(), repo.ViewPullCommits)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/merge", context.RepoMustNotBeArchived(), bindIgnErr(forms.MergePullRequestForm{}), repo.MergePullRequest)
|
2020-01-17 11:33:40 +05:30
|
|
|
m.Post("/update", repo.UpdatePullRequest)
|
2019-01-24 00:28:38 +05:30
|
|
|
m.Post("/cleanup", context.RepoMustNotBeArchived(), context.RepoRef(), repo.CleanUpPullRequest)
|
2018-08-06 10:13:22 +05:30
|
|
|
m.Group("/files", func() {
|
2018-08-14 23:19:33 +05:30
|
|
|
m.Get("", context.RepoRef(), repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.SetWhitespaceBehavior, repo.ViewPullFiles)
|
2018-08-06 10:13:22 +05:30
|
|
|
m.Group("/reviews", func() {
|
2021-01-09 03:19:55 +05:30
|
|
|
m.Get("/new_comment", repo.RenderNewCodeCommentForm)
|
2021-04-07 01:14:05 +05:30
|
|
|
m.Post("/comments", bindIgnErr(forms.CodeCommentForm{}), repo.CreateCodeComment)
|
|
|
|
m.Post("/submit", bindIgnErr(forms.SubmitReviewForm{}), repo.SubmitReview)
|
2019-01-24 00:28:38 +05:30
|
|
|
}, context.RepoMustNotBeArchived())
|
2018-08-06 10:13:22 +05:30
|
|
|
})
|
2017-09-30 09:34:16 +05:30
|
|
|
}, repo.MustAllowPulls)
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2019-02-12 20:39:43 +05:30
|
|
|
m.Group("/media", func() {
|
|
|
|
m.Get("/branch/*", context.RepoRefByType(context.RepoRefBranch), repo.SingleDownloadOrLFS)
|
|
|
|
m.Get("/tag/*", context.RepoRefByType(context.RepoRefTag), repo.SingleDownloadOrLFS)
|
|
|
|
m.Get("/commit/*", context.RepoRefByType(context.RepoRefCommit), repo.SingleDownloadOrLFS)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/blob/{sha}", context.RepoRefByType(context.RepoRefBlob), repo.DownloadByIDOrLFS)
|
2019-02-12 20:39:43 +05:30
|
|
|
// "/*" route is deprecated, and kept for backward compatibility
|
|
|
|
m.Get("/*", context.RepoRefByType(context.RepoRefLegacy), repo.SingleDownloadOrLFS)
|
|
|
|
}, repo.MustBeNotEmpty, reqRepoCodeReader)
|
|
|
|
|
2017-10-30 07:34:25 +05:30
|
|
|
m.Group("/raw", func() {
|
|
|
|
m.Get("/branch/*", context.RepoRefByType(context.RepoRefBranch), repo.SingleDownload)
|
|
|
|
m.Get("/tag/*", context.RepoRefByType(context.RepoRefTag), repo.SingleDownload)
|
|
|
|
m.Get("/commit/*", context.RepoRefByType(context.RepoRefCommit), repo.SingleDownload)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/blob/{sha}", context.RepoRefByType(context.RepoRefBlob), repo.DownloadByID)
|
2017-10-30 07:34:25 +05:30
|
|
|
// "/*" route is deprecated, and kept for backward compatibility
|
|
|
|
m.Get("/*", context.RepoRefByType(context.RepoRefLegacy), repo.SingleDownload)
|
2019-01-18 05:31:04 +05:30
|
|
|
}, repo.MustBeNotEmpty, reqRepoCodeReader)
|
2017-10-30 07:34:25 +05:30
|
|
|
|
|
|
|
m.Group("/commits", func() {
|
|
|
|
m.Get("/branch/*", context.RepoRefByType(context.RepoRefBranch), repo.RefCommits)
|
|
|
|
m.Get("/tag/*", context.RepoRefByType(context.RepoRefTag), repo.RefCommits)
|
|
|
|
m.Get("/commit/*", context.RepoRefByType(context.RepoRefCommit), repo.RefCommits)
|
|
|
|
// "/*" route is deprecated, and kept for backward compatibility
|
|
|
|
m.Get("/*", context.RepoRefByType(context.RepoRefLegacy), repo.RefCommits)
|
2019-01-18 05:31:04 +05:30
|
|
|
}, repo.MustBeNotEmpty, reqRepoCodeReader)
|
2017-10-30 07:34:25 +05:30
|
|
|
|
2019-04-20 08:17:00 +05:30
|
|
|
m.Group("/blame", func() {
|
|
|
|
m.Get("/branch/*", context.RepoRefByType(context.RepoRefBranch), repo.RefBlame)
|
|
|
|
m.Get("/tag/*", context.RepoRefByType(context.RepoRefTag), repo.RefBlame)
|
|
|
|
m.Get("/commit/*", context.RepoRefByType(context.RepoRefCommit), repo.RefBlame)
|
|
|
|
}, repo.MustBeNotEmpty, reqRepoCodeReader)
|
|
|
|
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Group("", func() {
|
|
|
|
m.Get("/graph", repo.Graph)
|
2021-02-13 10:05:43 +05:30
|
|
|
m.Get("/commit/{sha:([a-f0-9]{7,40})$}", repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.SetWhitespaceBehavior, repo.Diff)
|
2019-01-18 05:31:04 +05:30
|
|
|
}, repo.MustBeNotEmpty, context.RepoRef(), reqRepoCodeReader)
|
2017-07-27 14:53:38 +05:30
|
|
|
|
2017-10-30 07:34:25 +05:30
|
|
|
m.Group("/src", func() {
|
|
|
|
m.Get("/branch/*", context.RepoRefByType(context.RepoRefBranch), repo.Home)
|
|
|
|
m.Get("/tag/*", context.RepoRefByType(context.RepoRefTag), repo.Home)
|
|
|
|
m.Get("/commit/*", context.RepoRefByType(context.RepoRefCommit), repo.Home)
|
|
|
|
// "/*" route is deprecated, and kept for backward compatibility
|
|
|
|
m.Get("/*", context.RepoRefByType(context.RepoRefLegacy), repo.Home)
|
|
|
|
}, repo.SetEditorconfigIfExists)
|
|
|
|
|
2017-07-27 14:53:38 +05:30
|
|
|
m.Group("", func() {
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Get("/forks", repo.Forks)
|
2018-11-28 16:56:14 +05:30
|
|
|
}, context.RepoRef(), reqRepoCodeReader)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Get("/commit/{sha:([a-f0-9]{7,40})}.{ext:patch|diff}",
|
2019-01-18 05:31:04 +05:30
|
|
|
repo.MustBeNotEmpty, reqRepoCodeReader, repo.RawDiff)
|
2021-04-10 05:56:08 +05:30
|
|
|
}, ignSignIn, context.RepoAssignment, context.UnitTypes())
|
2021-10-08 18:38:22 +05:30
|
|
|
|
|
|
|
m.Post("/{username}/{reponame}/lastcommit/*", ignSignInAndCsrf, context.RepoAssignment, context.UnitTypes(), context.RepoRefByType(context.RepoRefCommit), reqRepoCodeReader, repo.LastCommit)
|
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{username}/{reponame}", func() {
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Get("/stars", repo.Stars)
|
|
|
|
m.Get("/watchers", repo.Watchers)
|
2018-11-28 16:56:14 +05:30
|
|
|
m.Get("/search", reqRepoCodeReader, repo.Search)
|
2021-04-10 05:56:08 +05:30
|
|
|
}, ignSignIn, context.RepoAssignment, context.RepoRef(), context.UnitTypes())
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{username}", func() {
|
|
|
|
m.Group("/{reponame}", func() {
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Get("", repo.SetEditorconfigIfExists, repo.Home)
|
2021-05-10 03:20:06 +05:30
|
|
|
}, ignSignIn, context.RepoAssignment, context.RepoRef(), context.UnitTypes())
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Group("/{reponame}", func() {
|
|
|
|
m.Group("/info/lfs", func() {
|
2021-06-06 05:29:27 +05:30
|
|
|
m.Post("/objects/batch", lfs.CheckAcceptMediaType, lfs.BatchHandler)
|
|
|
|
m.Put("/objects/{oid}/{size}", lfs.UploadHandler)
|
|
|
|
m.Get("/objects/{oid}/{filename}", lfs.DownloadHandler)
|
|
|
|
m.Get("/objects/{oid}", lfs.DownloadHandler)
|
|
|
|
m.Post("/verify", lfs.CheckAcceptMediaType, lfs.VerifyHandler)
|
2017-11-29 02:28:37 +05:30
|
|
|
m.Group("/locks", func() {
|
|
|
|
m.Get("/", lfs.GetListLockHandler)
|
|
|
|
m.Post("/", lfs.PostLockHandler)
|
|
|
|
m.Post("/verify", lfs.VerifyLockHandler)
|
2021-01-26 21:06:53 +05:30
|
|
|
m.Post("/{lid}/unlock", lfs.UnLockHandler)
|
2021-06-06 05:29:27 +05:30
|
|
|
}, lfs.CheckAcceptMediaType)
|
2017-04-25 12:54:51 +05:30
|
|
|
m.Any("/*", func(ctx *context.Context) {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("", nil)
|
2017-04-25 12:54:51 +05:30
|
|
|
})
|
2021-06-06 05:29:27 +05:30
|
|
|
}, ignSignInAndCsrf, lfsServerEnabled)
|
2021-01-26 21:06:53 +05:30
|
|
|
|
|
|
|
m.Group("", func() {
|
2021-07-21 09:02:35 +05:30
|
|
|
m.PostOptions("/git-upload-pack", repo.ServiceUploadPack)
|
|
|
|
m.PostOptions("/git-receive-pack", repo.ServiceReceivePack)
|
|
|
|
m.GetOptions("/info/refs", repo.GetInfoRefs)
|
|
|
|
m.GetOptions("/HEAD", repo.GetTextFile("HEAD"))
|
|
|
|
m.GetOptions("/objects/info/alternates", repo.GetTextFile("objects/info/alternates"))
|
|
|
|
m.GetOptions("/objects/info/http-alternates", repo.GetTextFile("objects/info/http-alternates"))
|
|
|
|
m.GetOptions("/objects/info/packs", repo.GetInfoPacks)
|
|
|
|
m.GetOptions("/objects/info/{file:[^/]*}", repo.GetTextFile(""))
|
|
|
|
m.GetOptions("/objects/{head:[0-9a-f]{2}}/{hash:[0-9a-f]{38}}", repo.GetLooseObject)
|
|
|
|
m.GetOptions("/objects/pack/pack-{file:[0-9a-f]{40}}.pack", repo.GetPackFile)
|
|
|
|
m.GetOptions("/objects/pack/pack-{file:[0-9a-f]{40}}.idx", repo.GetIdxFile)
|
2021-01-26 21:06:53 +05:30
|
|
|
}, ignSignInAndCsrf)
|
2017-04-25 12:54:51 +05:30
|
|
|
})
|
|
|
|
})
|
|
|
|
// ***** END: Repository *****
|
|
|
|
|
|
|
|
m.Group("/notifications", func() {
|
|
|
|
m.Get("", user.Notifications)
|
|
|
|
m.Post("/status", user.NotificationStatusPost)
|
2017-12-07 11:22:57 +05:30
|
|
|
m.Post("/purge", user.NotificationPurgePost)
|
2017-04-25 12:54:51 +05:30
|
|
|
}, reqSignIn)
|
|
|
|
|
2018-07-28 05:49:01 +05:30
|
|
|
if setting.API.EnableSwagger {
|
2021-06-09 05:03:54 +05:30
|
|
|
m.Get("/swagger.v1.json", SwaggerV1Json)
|
2019-08-26 17:03:06 +05:30
|
|
|
}
|
2021-12-22 16:09:28 +05:30
|
|
|
m.NotFound(func(w http.ResponseWriter, req *http.Request) {
|
|
|
|
ctx := context.GetContext(req)
|
|
|
|
ctx.NotFound("", nil)
|
|
|
|
})
|
|
|
|
|
2017-04-25 12:54:51 +05:30
|
|
|
}
|