2017-04-25 09:24:51 +02:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
package routes
|
|
|
|
|
|
|
|
import (
|
2019-04-02 09:48:31 +02:00
|
|
|
"bytes"
|
2018-05-19 16:12:37 +02:00
|
|
|
"encoding/gob"
|
2020-10-18 03:29:06 +02:00
|
|
|
"errors"
|
2020-10-16 05:51:06 +02:00
|
|
|
"fmt"
|
2020-10-14 15:07:51 +02:00
|
|
|
"io"
|
2018-05-19 16:12:37 +02:00
|
|
|
"net/http"
|
2020-10-16 05:51:06 +02:00
|
|
|
"os"
|
2017-04-25 09:24:51 +02:00
|
|
|
"path"
|
2020-10-14 15:07:51 +02:00
|
|
|
"strings"
|
2019-04-02 09:48:31 +02:00
|
|
|
"text/template"
|
2018-02-03 23:37:05 +01:00
|
|
|
"time"
|
2017-04-25 09:24:51 +02:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/auth"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/lfs"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
2018-11-05 04:20:00 +01:00
|
|
|
"code.gitea.io/gitea/modules/metrics"
|
2017-04-25 09:24:51 +02:00
|
|
|
"code.gitea.io/gitea/modules/options"
|
|
|
|
"code.gitea.io/gitea/modules/public"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-10-14 15:07:51 +02:00
|
|
|
"code.gitea.io/gitea/modules/storage"
|
2017-04-25 09:24:51 +02:00
|
|
|
"code.gitea.io/gitea/modules/templates"
|
|
|
|
"code.gitea.io/gitea/modules/validation"
|
|
|
|
"code.gitea.io/gitea/routers"
|
|
|
|
"code.gitea.io/gitea/routers/admin"
|
|
|
|
apiv1 "code.gitea.io/gitea/routers/api/v1"
|
|
|
|
"code.gitea.io/gitea/routers/dev"
|
2020-05-07 23:49:00 +02:00
|
|
|
"code.gitea.io/gitea/routers/events"
|
2017-04-25 09:24:51 +02:00
|
|
|
"code.gitea.io/gitea/routers/org"
|
|
|
|
"code.gitea.io/gitea/routers/private"
|
|
|
|
"code.gitea.io/gitea/routers/repo"
|
|
|
|
"code.gitea.io/gitea/routers/user"
|
2018-05-17 06:05:00 +02:00
|
|
|
userSetting "code.gitea.io/gitea/routers/user/setting"
|
2019-09-24 07:02:49 +02:00
|
|
|
"code.gitea.io/gitea/services/mailer"
|
2017-04-25 09:24:51 +02:00
|
|
|
|
2019-07-17 03:04:37 +02:00
|
|
|
// to registers all internal adapters
|
|
|
|
_ "code.gitea.io/gitea/modules/session"
|
|
|
|
|
2019-08-23 18:40:30 +02:00
|
|
|
"gitea.com/macaron/binding"
|
|
|
|
"gitea.com/macaron/cache"
|
|
|
|
"gitea.com/macaron/captcha"
|
2019-08-26 13:33:06 +02:00
|
|
|
"gitea.com/macaron/cors"
|
2019-08-23 18:40:30 +02:00
|
|
|
"gitea.com/macaron/csrf"
|
2019-11-18 06:18:33 +01:00
|
|
|
"gitea.com/macaron/gzip"
|
2019-08-23 18:40:30 +02:00
|
|
|
"gitea.com/macaron/i18n"
|
|
|
|
"gitea.com/macaron/macaron"
|
|
|
|
"gitea.com/macaron/session"
|
|
|
|
"gitea.com/macaron/toolbox"
|
2018-11-05 04:20:00 +01:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2018-05-19 16:12:37 +02:00
|
|
|
"github.com/tstranex/u2f"
|
2017-04-25 09:24:51 +02:00
|
|
|
)
|
|
|
|
|
2019-04-02 09:48:31 +02:00
|
|
|
type routerLoggerOptions struct {
|
|
|
|
Ctx *macaron.Context
|
|
|
|
Identity *string
|
|
|
|
Start *time.Time
|
|
|
|
ResponseWriter *macaron.ResponseWriter
|
|
|
|
}
|
|
|
|
|
|
|
|
func setupAccessLogger(m *macaron.Macaron) {
|
|
|
|
logger := log.GetLogger("access")
|
|
|
|
|
|
|
|
logTemplate, _ := template.New("log").Parse(setting.AccessLogTemplate)
|
|
|
|
m.Use(func(ctx *macaron.Context) {
|
|
|
|
start := time.Now()
|
|
|
|
ctx.Next()
|
|
|
|
identity := "-"
|
|
|
|
if val, ok := ctx.Data["SignedUserName"]; ok {
|
|
|
|
if stringVal, ok := val.(string); ok && stringVal != "" {
|
|
|
|
identity = stringVal
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rw := ctx.Resp.(macaron.ResponseWriter)
|
|
|
|
|
|
|
|
buf := bytes.NewBuffer([]byte{})
|
2019-06-12 21:41:28 +02:00
|
|
|
err := logTemplate.Execute(buf, routerLoggerOptions{
|
2019-04-02 09:48:31 +02:00
|
|
|
Ctx: ctx,
|
|
|
|
Identity: &identity,
|
|
|
|
Start: &start,
|
|
|
|
ResponseWriter: &rw,
|
|
|
|
})
|
2019-06-12 21:41:28 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Error("Could not set up macaron access logger: %v", err.Error())
|
|
|
|
}
|
2019-04-02 09:48:31 +02:00
|
|
|
|
2019-06-12 21:41:28 +02:00
|
|
|
err = logger.SendLog(log.INFO, "", "", 0, buf.String(), "")
|
|
|
|
if err != nil {
|
|
|
|
log.Error("Could not set up macaron access logger: %v", err.Error())
|
|
|
|
}
|
2019-04-02 09:48:31 +02:00
|
|
|
})
|
2019-02-06 04:06:41 +01:00
|
|
|
}
|
|
|
|
|
2019-05-14 04:55:52 +02:00
|
|
|
// RouterHandler is a macaron handler that will log the routing to the default gitea log
|
|
|
|
func RouterHandler(level log.Level) func(ctx *macaron.Context) {
|
|
|
|
return func(ctx *macaron.Context) {
|
|
|
|
start := time.Now()
|
|
|
|
|
2019-12-24 01:11:12 +01:00
|
|
|
_ = log.GetLogger("router").Log(0, level, "Started %s %s for %s", log.ColoredMethod(ctx.Req.Method), ctx.Req.URL.RequestURI(), ctx.RemoteAddr())
|
2019-05-14 04:55:52 +02:00
|
|
|
|
|
|
|
rw := ctx.Resp.(macaron.ResponseWriter)
|
|
|
|
ctx.Next()
|
|
|
|
|
|
|
|
status := rw.Status()
|
2019-12-24 01:11:12 +01:00
|
|
|
_ = log.GetLogger("router").Log(0, level, "Completed %s %s %v %s in %v", log.ColoredMethod(ctx.Req.Method), ctx.Req.URL.RequestURI(), log.ColoredStatus(status), log.ColoredStatus(status, http.StatusText(rw.Status())), log.ColoredTime(time.Since(start)))
|
2019-05-14 04:55:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-14 15:07:51 +02:00
|
|
|
func storageHandler(storageSetting setting.Storage, prefix string, objStore storage.ObjectStorage) macaron.Handler {
|
|
|
|
if storageSetting.ServeDirect {
|
|
|
|
return func(ctx *macaron.Context) {
|
|
|
|
req := ctx.Req.Request
|
|
|
|
if req.Method != "GET" && req.Method != "HEAD" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !strings.HasPrefix(req.RequestURI, "/"+prefix) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
rPath := strings.TrimPrefix(req.RequestURI, "/"+prefix)
|
|
|
|
u, err := objStore.URL(rPath, path.Base(rPath))
|
|
|
|
if err != nil {
|
2020-10-18 03:29:06 +02:00
|
|
|
if os.IsNotExist(err) || errors.Is(err, os.ErrNotExist) {
|
2020-10-16 05:51:06 +02:00
|
|
|
log.Warn("Unable to find %s %s", prefix, rPath)
|
|
|
|
ctx.Error(404, "file not found")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Error("Error whilst getting URL for %s %s. Error: %v", prefix, rPath, err)
|
|
|
|
ctx.Error(500, fmt.Sprintf("Error whilst getting URL for %s %s", prefix, rPath))
|
2020-10-14 15:07:51 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
http.Redirect(
|
|
|
|
ctx.Resp,
|
|
|
|
req,
|
|
|
|
u.String(),
|
|
|
|
301,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return func(ctx *macaron.Context) {
|
|
|
|
req := ctx.Req.Request
|
|
|
|
if req.Method != "GET" && req.Method != "HEAD" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !strings.HasPrefix(req.RequestURI, "/"+prefix) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
rPath := strings.TrimPrefix(req.RequestURI, "/"+prefix)
|
|
|
|
rPath = strings.TrimPrefix(rPath, "/")
|
|
|
|
//If we have matched and access to release or issue
|
|
|
|
fr, err := objStore.Open(rPath)
|
|
|
|
if err != nil {
|
2020-10-18 03:29:06 +02:00
|
|
|
if os.IsNotExist(err) || errors.Is(err, os.ErrNotExist) {
|
2020-10-16 05:51:06 +02:00
|
|
|
log.Warn("Unable to find %s %s", prefix, rPath)
|
|
|
|
ctx.Error(404, "file not found")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Error("Error whilst opening %s %s. Error: %v", prefix, rPath, err)
|
|
|
|
ctx.Error(500, fmt.Sprintf("Error whilst opening %s %s", prefix, rPath))
|
2020-10-14 15:07:51 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
defer fr.Close()
|
|
|
|
|
|
|
|
_, err = io.Copy(ctx.Resp, fr)
|
|
|
|
if err != nil {
|
2020-10-16 05:51:06 +02:00
|
|
|
log.Error("Error whilst rendering %s %s. Error: %v", prefix, rPath, err)
|
|
|
|
ctx.Error(500, fmt.Sprintf("Error whilst rendering %s %s", prefix, rPath))
|
2020-10-14 15:07:51 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-25 09:24:51 +02:00
|
|
|
// NewMacaron initializes Macaron instance.
|
|
|
|
func NewMacaron() *macaron.Macaron {
|
2018-05-19 16:12:37 +02:00
|
|
|
gob.Register(&u2f.Challenge{})
|
2019-02-06 04:06:41 +01:00
|
|
|
var m *macaron.Macaron
|
|
|
|
if setting.RedirectMacaronLog {
|
2019-04-02 09:48:31 +02:00
|
|
|
loggerAsWriter := log.NewLoggerAsWriter("INFO", log.GetLogger("macaron"))
|
2019-02-06 04:06:41 +01:00
|
|
|
m = macaron.NewWithLogger(loggerAsWriter)
|
2019-04-02 09:48:31 +02:00
|
|
|
if !setting.DisableRouterLog && setting.RouterLogLevel != log.NONE {
|
2019-05-14 04:55:52 +02:00
|
|
|
if log.GetLogger("router").GetLevel() <= setting.RouterLogLevel {
|
|
|
|
m.Use(RouterHandler(setting.RouterLogLevel))
|
|
|
|
}
|
2019-02-06 04:06:41 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
m = macaron.New()
|
|
|
|
if !setting.DisableRouterLog {
|
|
|
|
m.Use(macaron.Logger())
|
|
|
|
}
|
2017-04-25 09:24:51 +02:00
|
|
|
}
|
2019-04-02 09:48:31 +02:00
|
|
|
// Access Logger is similar to Router Log but more configurable and by default is more like the NCSA Common Log format
|
|
|
|
if setting.EnableAccessLog {
|
|
|
|
setupAccessLogger(m)
|
|
|
|
}
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Use(macaron.Recovery())
|
|
|
|
if setting.EnableGzip {
|
2019-01-23 09:56:51 +01:00
|
|
|
m.Use(gzip.Middleware())
|
2017-04-25 09:24:51 +02:00
|
|
|
}
|
2019-12-10 13:23:26 +01:00
|
|
|
if setting.Protocol == setting.FCGI || setting.Protocol == setting.FCGIUnix {
|
2017-04-25 09:24:51 +02:00
|
|
|
m.SetURLPrefix(setting.AppSubURL)
|
|
|
|
}
|
|
|
|
m.Use(public.Custom(
|
|
|
|
&public.Options{
|
2018-02-03 23:37:05 +01:00
|
|
|
SkipLogging: setting.DisableRouterLog,
|
2019-10-15 00:05:57 +02:00
|
|
|
ExpiresAfter: setting.StaticCacheTime,
|
2017-04-25 09:24:51 +02:00
|
|
|
},
|
|
|
|
))
|
|
|
|
m.Use(public.Static(
|
|
|
|
&public.Options{
|
2018-02-03 23:37:05 +01:00
|
|
|
Directory: path.Join(setting.StaticRootPath, "public"),
|
|
|
|
SkipLogging: setting.DisableRouterLog,
|
2019-10-15 00:05:57 +02:00
|
|
|
ExpiresAfter: setting.StaticCacheTime,
|
2017-04-25 09:24:51 +02:00
|
|
|
},
|
|
|
|
))
|
2020-10-14 15:07:51 +02:00
|
|
|
|
2020-10-16 05:51:06 +02:00
|
|
|
m.Use(templates.HTMLRenderer())
|
|
|
|
|
2020-10-14 15:07:51 +02:00
|
|
|
m.Use(storageHandler(setting.Avatar.Storage, "avatars", storage.Avatars))
|
|
|
|
m.Use(storageHandler(setting.RepoAvatar.Storage, "repo-avatars", storage.RepoAvatars))
|
2017-04-25 09:24:51 +02:00
|
|
|
|
2019-09-24 07:02:49 +02:00
|
|
|
mailer.InitMailRender(templates.Mailer())
|
2017-04-25 09:24:51 +02:00
|
|
|
|
|
|
|
localeNames, err := options.Dir("locale")
|
|
|
|
|
|
|
|
if err != nil {
|
2019-04-02 09:48:31 +02:00
|
|
|
log.Fatal("Failed to list locale files: %v", err)
|
2017-04-25 09:24:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
localFiles := make(map[string][]byte)
|
|
|
|
|
|
|
|
for _, name := range localeNames {
|
|
|
|
localFiles[name], err = options.Locale(name)
|
|
|
|
|
|
|
|
if err != nil {
|
2019-04-02 09:48:31 +02:00
|
|
|
log.Fatal("Failed to load %s locale file. %v", name, err)
|
2017-04-25 09:24:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m.Use(i18n.I18n(i18n.Options{
|
2019-07-12 15:57:31 +02:00
|
|
|
SubURL: setting.AppSubURL,
|
|
|
|
Files: localFiles,
|
|
|
|
Langs: setting.Langs,
|
|
|
|
Names: setting.Names,
|
|
|
|
DefaultLang: "en-US",
|
|
|
|
Redirect: false,
|
|
|
|
CookieDomain: setting.SessionConfig.Domain,
|
2017-04-25 09:24:51 +02:00
|
|
|
}))
|
|
|
|
m.Use(cache.Cacher(cache.Options{
|
2017-10-26 03:37:33 +02:00
|
|
|
Adapter: setting.CacheService.Adapter,
|
|
|
|
AdapterConfig: setting.CacheService.Conn,
|
|
|
|
Interval: setting.CacheService.Interval,
|
2017-04-25 09:24:51 +02:00
|
|
|
}))
|
|
|
|
m.Use(captcha.Captchaer(captcha.Options{
|
|
|
|
SubURL: setting.AppSubURL,
|
|
|
|
}))
|
2020-01-29 08:47:46 +01:00
|
|
|
m.Use(session.Sessioner(session.Options{
|
|
|
|
Provider: setting.SessionConfig.Provider,
|
|
|
|
ProviderConfig: setting.SessionConfig.ProviderConfig,
|
|
|
|
CookieName: setting.SessionConfig.CookieName,
|
|
|
|
CookiePath: setting.SessionConfig.CookiePath,
|
|
|
|
Gclifetime: setting.SessionConfig.Gclifetime,
|
|
|
|
Maxlifetime: setting.SessionConfig.Maxlifetime,
|
|
|
|
Secure: setting.SessionConfig.Secure,
|
|
|
|
Domain: setting.SessionConfig.Domain,
|
|
|
|
}))
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Use(csrf.Csrfer(csrf.Options{
|
2018-08-14 22:16:37 +02:00
|
|
|
Secret: setting.SecretKey,
|
|
|
|
Cookie: setting.CSRFCookieName,
|
|
|
|
SetCookie: true,
|
|
|
|
Secure: setting.SessionConfig.Secure,
|
2019-07-12 15:57:31 +02:00
|
|
|
CookieHttpOnly: setting.CSRFCookieHTTPOnly,
|
2018-08-14 22:16:37 +02:00
|
|
|
Header: "X-Csrf-Token",
|
2019-07-12 15:57:31 +02:00
|
|
|
CookieDomain: setting.SessionConfig.Domain,
|
2018-08-14 22:16:37 +02:00
|
|
|
CookiePath: setting.AppSubURL,
|
2017-04-25 09:24:51 +02:00
|
|
|
}))
|
|
|
|
m.Use(toolbox.Toolboxer(m, toolbox.Options{
|
|
|
|
HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{
|
|
|
|
{
|
|
|
|
Desc: "Database connection",
|
|
|
|
Func: models.Ping,
|
|
|
|
},
|
|
|
|
},
|
2018-09-30 00:44:06 +02:00
|
|
|
DisableDebug: !setting.EnablePprof,
|
2017-04-25 09:24:51 +02:00
|
|
|
}))
|
|
|
|
m.Use(context.Contexter())
|
2019-01-30 23:00:00 +01:00
|
|
|
// OK we are now set-up enough to allow us to create a nicer recovery than
|
|
|
|
// the default macaron recovery
|
|
|
|
m.Use(context.Recovery())
|
2018-10-30 16:08:49 +01:00
|
|
|
m.SetAutoHead(true)
|
2017-04-25 09:24:51 +02:00
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
2020-10-19 23:03:08 +02:00
|
|
|
// RegisterInstallRoute registers the install routes
|
|
|
|
func RegisterInstallRoute(m *macaron.Macaron) {
|
|
|
|
m.Combo("/", routers.InstallInit).Get(routers.Install).
|
|
|
|
Post(binding.BindIgnErr(auth.InstallForm{}), routers.InstallPost)
|
|
|
|
m.NotFound(func(ctx *context.Context) {
|
|
|
|
ctx.Redirect(setting.AppURL, 302)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-04-25 09:24:51 +02:00
|
|
|
// RegisterRoutes routes routes to Macaron
|
|
|
|
func RegisterRoutes(m *macaron.Macaron) {
|
|
|
|
reqSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: true})
|
|
|
|
ignSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: setting.Service.RequireSignInView})
|
|
|
|
ignSignInAndCsrf := context.Toggle(&context.ToggleOptions{DisableCSRF: true})
|
|
|
|
reqSignOut := context.Toggle(&context.ToggleOptions{SignOutRequired: true})
|
|
|
|
|
|
|
|
bindIgnErr := binding.BindIgnErr
|
|
|
|
validation.AddBindingRules()
|
|
|
|
|
2017-08-19 17:34:49 +02:00
|
|
|
openIDSignInEnabled := func(ctx *context.Context) {
|
|
|
|
if !setting.Service.EnableOpenIDSignIn {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
openIDSignUpEnabled := func(ctx *context.Context) {
|
|
|
|
if !setting.Service.EnableOpenIDSignUp {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-15 15:20:08 +01:00
|
|
|
reqMilestonesDashboardPageEnabled := func(ctx *context.Context) {
|
|
|
|
if !setting.Service.ShowMilestonesDashboardPage {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Use(user.GetNotificationCount)
|
2020-01-17 08:34:37 +01:00
|
|
|
m.Use(func(ctx *context.Context) {
|
|
|
|
ctx.Data["UnitWikiGlobalDisabled"] = models.UnitTypeWiki.UnitGlobalDisabled()
|
|
|
|
ctx.Data["UnitIssuesGlobalDisabled"] = models.UnitTypeIssues.UnitGlobalDisabled()
|
|
|
|
ctx.Data["UnitPullsGlobalDisabled"] = models.UnitTypePullRequests.UnitGlobalDisabled()
|
2020-08-17 05:07:38 +02:00
|
|
|
ctx.Data["UnitProjectsGlobalDisabled"] = models.UnitTypeProjects.UnitGlobalDisabled()
|
2020-01-17 08:34:37 +01:00
|
|
|
})
|
2017-04-25 09:24:51 +02:00
|
|
|
|
|
|
|
// FIXME: not all routes need go through same middlewares.
|
|
|
|
// Especially some AJAX requests, we can reduce middleware number to improve performance.
|
|
|
|
// Routers.
|
|
|
|
// for health check
|
|
|
|
m.Head("/", func() string {
|
|
|
|
return ""
|
|
|
|
})
|
2018-05-24 21:51:28 +02:00
|
|
|
m.Get("/", routers.Home)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Group("/explore", func() {
|
|
|
|
m.Get("", func(ctx *context.Context) {
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/explore/repos")
|
|
|
|
})
|
|
|
|
m.Get("/repos", routers.ExploreRepos)
|
|
|
|
m.Get("/users", routers.ExploreUsers)
|
|
|
|
m.Get("/organizations", routers.ExploreOrganizations)
|
2018-03-16 15:04:33 +01:00
|
|
|
m.Get("/code", routers.ExploreCode)
|
2017-04-25 09:24:51 +02:00
|
|
|
}, ignSignIn)
|
|
|
|
m.Combo("/install", routers.InstallInit).Get(routers.Install).
|
|
|
|
Post(bindIgnErr(auth.InstallForm{}), routers.InstallPost)
|
|
|
|
m.Get("/^:type(issues|pulls)$", reqSignIn, user.Issues)
|
2019-12-15 15:20:08 +01:00
|
|
|
m.Get("/milestones", reqSignIn, reqMilestonesDashboardPageEnabled, user.Milestones)
|
2017-04-25 09:24:51 +02:00
|
|
|
|
|
|
|
// ***** START: User *****
|
|
|
|
m.Group("/user", func() {
|
|
|
|
m.Get("/login", user.SignIn)
|
|
|
|
m.Post("/login", bindIgnErr(auth.SignInForm{}), user.SignInPost)
|
2017-08-19 17:34:49 +02:00
|
|
|
m.Group("", func() {
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Combo("/login/openid").
|
|
|
|
Get(user.SignInOpenID).
|
|
|
|
Post(bindIgnErr(auth.SignInOpenIDForm{}), user.SignInOpenIDPost)
|
2017-08-19 17:34:49 +02:00
|
|
|
}, openIDSignInEnabled)
|
|
|
|
m.Group("/openid", func() {
|
|
|
|
m.Combo("/connect").
|
|
|
|
Get(user.ConnectOpenID).
|
|
|
|
Post(bindIgnErr(auth.ConnectOpenIDForm{}), user.ConnectOpenIDPost)
|
|
|
|
m.Group("/register", func() {
|
|
|
|
m.Combo("").
|
|
|
|
Get(user.RegisterOpenID, openIDSignUpEnabled).
|
2017-04-25 09:24:51 +02:00
|
|
|
Post(bindIgnErr(auth.SignUpOpenIDForm{}), user.RegisterOpenIDPost)
|
2017-08-19 17:34:49 +02:00
|
|
|
}, openIDSignUpEnabled)
|
|
|
|
}, openIDSignInEnabled)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Get("/sign_up", user.SignUp)
|
|
|
|
m.Post("/sign_up", bindIgnErr(auth.RegisterForm{}), user.SignUpPost)
|
|
|
|
m.Group("/oauth2", func() {
|
|
|
|
m.Get("/:provider", user.SignInOAuth)
|
|
|
|
m.Get("/:provider/callback", user.SignInOAuthCallback)
|
|
|
|
})
|
|
|
|
m.Get("/link_account", user.LinkAccount)
|
|
|
|
m.Post("/link_account_signin", bindIgnErr(auth.SignInForm{}), user.LinkAccountPostSignIn)
|
|
|
|
m.Post("/link_account_signup", bindIgnErr(auth.RegisterForm{}), user.LinkAccountPostRegister)
|
|
|
|
m.Group("/two_factor", func() {
|
|
|
|
m.Get("", user.TwoFactor)
|
|
|
|
m.Post("", bindIgnErr(auth.TwoFactorAuthForm{}), user.TwoFactorPost)
|
|
|
|
m.Get("/scratch", user.TwoFactorScratch)
|
|
|
|
m.Post("/scratch", bindIgnErr(auth.TwoFactorScratchAuthForm{}), user.TwoFactorScratchPost)
|
|
|
|
})
|
2018-05-19 16:12:37 +02:00
|
|
|
m.Group("/u2f", func() {
|
|
|
|
m.Get("", user.U2F)
|
|
|
|
m.Get("/challenge", user.U2FChallenge)
|
|
|
|
m.Post("/sign", bindIgnErr(u2f.SignResponse{}), user.U2FSign)
|
|
|
|
|
|
|
|
})
|
2017-04-25 09:24:51 +02:00
|
|
|
}, reqSignOut)
|
|
|
|
|
2020-05-07 23:49:00 +02:00
|
|
|
m.Any("/user/events", reqSignIn, events.Events)
|
|
|
|
|
2019-03-08 17:42:50 +01:00
|
|
|
m.Group("/login/oauth", func() {
|
|
|
|
m.Get("/authorize", bindIgnErr(auth.AuthorizationForm{}), user.AuthorizeOAuth)
|
|
|
|
m.Post("/grant", bindIgnErr(auth.GrantApplicationForm{}), user.GrantApplicationOAuth)
|
|
|
|
// TODO manage redirection
|
|
|
|
m.Post("/authorize", bindIgnErr(auth.AuthorizationForm{}), user.AuthorizeOAuth)
|
|
|
|
}, ignSignInAndCsrf, reqSignIn)
|
|
|
|
m.Post("/login/oauth/access_token", bindIgnErr(auth.AccessTokenForm{}), ignSignInAndCsrf, user.AccessTokenOAuth)
|
|
|
|
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Group("/user/settings", func() {
|
2018-05-17 06:05:00 +02:00
|
|
|
m.Get("", userSetting.Profile)
|
|
|
|
m.Post("", bindIgnErr(auth.UpdateProfileForm{}), userSetting.ProfilePost)
|
2018-09-13 14:04:25 +02:00
|
|
|
m.Get("/change_password", user.MustChangePassword)
|
|
|
|
m.Post("/change_password", bindIgnErr(auth.MustChangePasswordForm{}), user.MustChangePasswordPost)
|
2018-05-17 06:05:00 +02:00
|
|
|
m.Post("/avatar", binding.MultipartForm(auth.AvatarForm{}), userSetting.AvatarPost)
|
|
|
|
m.Post("/avatar/delete", userSetting.DeleteAvatar)
|
2018-05-15 12:07:32 +02:00
|
|
|
m.Group("/account", func() {
|
2018-05-17 06:05:00 +02:00
|
|
|
m.Combo("").Get(userSetting.Account).Post(bindIgnErr(auth.ChangePasswordForm{}), userSetting.AccountPost)
|
|
|
|
m.Post("/email", bindIgnErr(auth.AddEmailForm{}), userSetting.EmailPost)
|
|
|
|
m.Post("/email/delete", userSetting.DeleteEmail)
|
|
|
|
m.Post("/delete", userSetting.DeleteAccount)
|
2019-01-09 18:22:57 +01:00
|
|
|
m.Post("/theme", bindIgnErr(auth.UpdateThemeForm{}), userSetting.UpdateUIThemePost)
|
2018-05-15 12:07:32 +02:00
|
|
|
})
|
|
|
|
m.Group("/security", func() {
|
2018-05-17 06:05:00 +02:00
|
|
|
m.Get("", userSetting.Security)
|
2018-05-15 12:07:32 +02:00
|
|
|
m.Group("/two_factor", func() {
|
2018-05-17 06:05:00 +02:00
|
|
|
m.Post("/regenerate_scratch", userSetting.RegenerateScratchTwoFactor)
|
|
|
|
m.Post("/disable", userSetting.DisableTwoFactor)
|
|
|
|
m.Get("/enroll", userSetting.EnrollTwoFactor)
|
|
|
|
m.Post("/enroll", bindIgnErr(auth.TwoFactorAuthForm{}), userSetting.EnrollTwoFactorPost)
|
2018-05-15 12:07:32 +02:00
|
|
|
})
|
2018-05-19 16:12:37 +02:00
|
|
|
m.Group("/u2f", func() {
|
|
|
|
m.Post("/request_register", bindIgnErr(auth.U2FRegistrationForm{}), userSetting.U2FRegister)
|
|
|
|
m.Post("/register", bindIgnErr(u2f.RegisterResponse{}), userSetting.U2FRegisterPost)
|
|
|
|
m.Post("/delete", bindIgnErr(auth.U2FDeleteForm{}), userSetting.U2FDelete)
|
|
|
|
})
|
2018-05-15 12:07:32 +02:00
|
|
|
m.Group("/openid", func() {
|
2018-05-17 06:05:00 +02:00
|
|
|
m.Post("", bindIgnErr(auth.AddOpenIDForm{}), userSetting.OpenIDPost)
|
|
|
|
m.Post("/delete", userSetting.DeleteOpenID)
|
|
|
|
m.Post("/toggle_visibility", userSetting.ToggleOpenIDVisibility)
|
2018-05-15 12:07:32 +02:00
|
|
|
}, openIDSignInEnabled)
|
2018-05-17 06:05:00 +02:00
|
|
|
m.Post("/account_link", userSetting.DeleteAccountLink)
|
2018-05-15 12:07:32 +02:00
|
|
|
})
|
2019-03-08 17:42:50 +01:00
|
|
|
m.Group("/applications/oauth2", func() {
|
|
|
|
m.Get("/:id", userSetting.OAuth2ApplicationShow)
|
|
|
|
m.Post("/:id", bindIgnErr(auth.EditOAuth2ApplicationForm{}), userSetting.OAuthApplicationsEdit)
|
2019-03-09 17:29:58 +01:00
|
|
|
m.Post("/:id/regenerate_secret", userSetting.OAuthApplicationsRegenerateSecret)
|
2019-03-08 17:42:50 +01:00
|
|
|
m.Post("", bindIgnErr(auth.EditOAuth2ApplicationForm{}), userSetting.OAuthApplicationsPost)
|
|
|
|
m.Post("/delete", userSetting.DeleteOAuth2Application)
|
2019-04-17 10:18:16 +02:00
|
|
|
m.Post("/revoke", userSetting.RevokeOAuth2Grant)
|
2019-03-08 17:42:50 +01:00
|
|
|
})
|
2018-05-17 06:05:00 +02:00
|
|
|
m.Combo("/applications").Get(userSetting.Applications).
|
|
|
|
Post(bindIgnErr(auth.NewAccessTokenForm{}), userSetting.ApplicationsPost)
|
|
|
|
m.Post("/applications/delete", userSetting.DeleteApplication)
|
|
|
|
m.Combo("/keys").Get(userSetting.Keys).
|
|
|
|
Post(bindIgnErr(auth.AddKeyForm{}), userSetting.KeysPost)
|
|
|
|
m.Post("/keys/delete", userSetting.DeleteKey)
|
|
|
|
m.Get("/organization", userSetting.Organization)
|
|
|
|
m.Get("/repos", userSetting.Repos)
|
2020-09-25 06:09:23 +02:00
|
|
|
m.Post("/repos/unadopted", userSetting.AdoptOrDeleteRepository)
|
2017-04-25 09:24:51 +02:00
|
|
|
}, reqSignIn, func(ctx *context.Context) {
|
|
|
|
ctx.Data["PageIsUserSettings"] = true
|
2019-01-09 18:22:57 +01:00
|
|
|
ctx.Data["AllThemes"] = setting.UI.Themes
|
2017-04-25 09:24:51 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
m.Group("/user", func() {
|
|
|
|
// r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
|
2019-04-02 07:44:33 +02:00
|
|
|
m.Any("/activate", user.Activate, reqSignIn)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Any("/activate_email", user.ActivateEmail)
|
2019-09-26 18:21:23 +02:00
|
|
|
m.Get("/avatar/:username/:size", user.Avatar)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Get("/email2user", user.Email2User)
|
2019-04-18 09:23:59 +02:00
|
|
|
m.Get("/recover_account", user.ResetPasswd)
|
|
|
|
m.Post("/recover_account", user.ResetPasswdPost)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Get("/forgot_password", user.ForgotPasswd)
|
|
|
|
m.Post("/forgot_password", user.ForgotPasswdPost)
|
2020-03-03 05:50:31 +01:00
|
|
|
m.Post("/logout", user.SignOut)
|
2020-10-24 01:46:35 +02:00
|
|
|
m.Get("/task/:task", user.TaskStatus)
|
2017-04-25 09:24:51 +02:00
|
|
|
})
|
|
|
|
// ***** END: User *****
|
|
|
|
|
2020-03-27 13:34:39 +01:00
|
|
|
m.Get("/avatar/:hash", user.AvatarByEmailHash)
|
|
|
|
|
2017-04-25 09:24:51 +02:00
|
|
|
adminReq := context.Toggle(&context.ToggleOptions{SignInRequired: true, AdminRequired: true})
|
|
|
|
|
|
|
|
// ***** START: Admin *****
|
|
|
|
m.Group("/admin", func() {
|
|
|
|
m.Get("", adminReq, admin.Dashboard)
|
2020-02-25 23:54:13 +01:00
|
|
|
m.Post("", adminReq, bindIgnErr(auth.AdminDashboardForm{}), admin.DashboardPost)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Get("/config", admin.Config)
|
|
|
|
m.Post("/config/test_mail", admin.SendTestMail)
|
2020-01-07 12:23:09 +01:00
|
|
|
m.Group("/monitor", func() {
|
|
|
|
m.Get("", admin.Monitor)
|
|
|
|
m.Post("/cancel/:pid", admin.MonitorCancel)
|
|
|
|
m.Group("/queue/:qid", func() {
|
|
|
|
m.Get("", admin.Queue)
|
|
|
|
m.Post("/set", admin.SetQueueSettings)
|
|
|
|
m.Post("/add", admin.AddWorkers)
|
|
|
|
m.Post("/cancel/:pid", admin.WorkerCancel)
|
2020-01-29 02:01:06 +01:00
|
|
|
m.Post("/flush", admin.Flush)
|
2020-01-07 12:23:09 +01:00
|
|
|
})
|
|
|
|
})
|
2017-04-25 09:24:51 +02:00
|
|
|
|
|
|
|
m.Group("/users", func() {
|
|
|
|
m.Get("", admin.Users)
|
|
|
|
m.Combo("/new").Get(admin.NewUser).Post(bindIgnErr(auth.AdminCreateUserForm{}), admin.NewUserPost)
|
|
|
|
m.Combo("/:userid").Get(admin.EditUser).Post(bindIgnErr(auth.AdminEditUserForm{}), admin.EditUserPost)
|
|
|
|
m.Post("/:userid/delete", admin.DeleteUser)
|
|
|
|
})
|
|
|
|
|
2020-03-02 19:25:36 +01:00
|
|
|
m.Group("/emails", func() {
|
|
|
|
m.Get("", admin.Emails)
|
|
|
|
m.Post("/activate", admin.ActivateEmail)
|
|
|
|
})
|
|
|
|
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Group("/orgs", func() {
|
|
|
|
m.Get("", admin.Organizations)
|
|
|
|
})
|
|
|
|
|
|
|
|
m.Group("/repos", func() {
|
|
|
|
m.Get("", admin.Repos)
|
2020-09-25 06:09:23 +02:00
|
|
|
m.Combo("/unadopted").Get(admin.UnadoptedRepos).Post(admin.AdoptOrDeleteRepository)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Post("/delete", admin.DeleteRepo)
|
|
|
|
})
|
|
|
|
|
2020-03-08 23:08:05 +01:00
|
|
|
m.Group("/^:configType(hooks|system-hooks)$", func() {
|
|
|
|
m.Get("", admin.DefaultOrSystemWebhooks)
|
|
|
|
m.Post("/delete", admin.DeleteDefaultOrSystemWebhook)
|
2019-03-19 03:33:20 +01:00
|
|
|
m.Get("/:type/new", repo.WebhooksNew)
|
2020-03-08 23:08:05 +01:00
|
|
|
m.Post("/gitea/new", bindIgnErr(auth.NewWebhookForm{}), repo.GiteaHooksNewPost)
|
2019-10-02 14:58:40 +02:00
|
|
|
m.Post("/gogs/new", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksNewPost)
|
2019-03-19 03:33:20 +01:00
|
|
|
m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
|
|
|
|
m.Post("/discord/new", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksNewPost)
|
|
|
|
m.Post("/dingtalk/new", bindIgnErr(auth.NewDingtalkHookForm{}), repo.DingtalkHooksNewPost)
|
2019-08-27 00:59:10 +02:00
|
|
|
m.Post("/telegram/new", bindIgnErr(auth.NewTelegramHookForm{}), repo.TelegramHooksNewPost)
|
2020-03-28 14:09:55 +01:00
|
|
|
m.Post("/matrix/new", bindIgnErr(auth.NewMatrixHookForm{}), repo.MatrixHooksNewPost)
|
2019-04-19 16:18:06 +02:00
|
|
|
m.Post("/msteams/new", bindIgnErr(auth.NewMSTeamsHookForm{}), repo.MSTeamsHooksNewPost)
|
2020-02-12 09:48:28 +01:00
|
|
|
m.Post("/feishu/new", bindIgnErr(auth.NewFeishuHookForm{}), repo.FeishuHooksNewPost)
|
2019-03-19 03:33:20 +01:00
|
|
|
m.Get("/:id", repo.WebHooksEdit)
|
|
|
|
m.Post("/gitea/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
|
2019-10-02 14:58:40 +02:00
|
|
|
m.Post("/gogs/:id", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksEditPost)
|
2019-03-19 03:33:20 +01:00
|
|
|
m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
|
|
|
|
m.Post("/discord/:id", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksEditPost)
|
|
|
|
m.Post("/dingtalk/:id", bindIgnErr(auth.NewDingtalkHookForm{}), repo.DingtalkHooksEditPost)
|
2019-08-27 00:59:10 +02:00
|
|
|
m.Post("/telegram/:id", bindIgnErr(auth.NewTelegramHookForm{}), repo.TelegramHooksEditPost)
|
2020-03-28 14:09:55 +01:00
|
|
|
m.Post("/matrix/:id", bindIgnErr(auth.NewMatrixHookForm{}), repo.MatrixHooksEditPost)
|
2020-01-15 19:38:44 +01:00
|
|
|
m.Post("/msteams/:id", bindIgnErr(auth.NewMSTeamsHookForm{}), repo.MSTeamsHooksEditPost)
|
2020-02-12 09:48:28 +01:00
|
|
|
m.Post("/feishu/:id", bindIgnErr(auth.NewFeishuHookForm{}), repo.FeishuHooksEditPost)
|
2019-03-19 03:33:20 +01:00
|
|
|
})
|
|
|
|
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Group("/auths", func() {
|
|
|
|
m.Get("", admin.Authentications)
|
|
|
|
m.Combo("/new").Get(admin.NewAuthSource).Post(bindIgnErr(auth.AuthenticationForm{}), admin.NewAuthSourcePost)
|
|
|
|
m.Combo("/:authid").Get(admin.EditAuthSource).
|
|
|
|
Post(bindIgnErr(auth.AuthenticationForm{}), admin.EditAuthSourcePost)
|
|
|
|
m.Post("/:authid/delete", admin.DeleteAuthSource)
|
|
|
|
})
|
|
|
|
|
|
|
|
m.Group("/notices", func() {
|
|
|
|
m.Get("", admin.Notices)
|
|
|
|
m.Post("/delete", admin.DeleteNotices)
|
2020-02-26 17:25:54 +01:00
|
|
|
m.Post("/empty", admin.EmptyNotices)
|
2017-04-25 09:24:51 +02:00
|
|
|
})
|
|
|
|
}, adminReq)
|
|
|
|
// ***** END: Admin *****
|
|
|
|
|
|
|
|
m.Group("", func() {
|
2020-02-09 21:18:01 +01:00
|
|
|
m.Get("/:username", user.Profile)
|
2020-01-05 00:20:08 +01:00
|
|
|
m.Get("/attachments/:uuid", repo.GetAttachment)
|
2017-04-25 09:24:51 +02:00
|
|
|
}, ignSignIn)
|
|
|
|
|
|
|
|
m.Group("/:username", func() {
|
2020-02-25 21:28:47 +01:00
|
|
|
m.Post("/action/:action", user.Action)
|
2017-04-25 09:24:51 +02:00
|
|
|
}, reqSignIn)
|
|
|
|
|
|
|
|
if macaron.Env == macaron.DEV {
|
|
|
|
m.Get("/template/*", dev.TemplatePreview)
|
|
|
|
}
|
|
|
|
|
|
|
|
reqRepoAdmin := context.RequireRepoAdmin()
|
2018-11-28 12:26:14 +01:00
|
|
|
reqRepoCodeWriter := context.RequireRepoWriter(models.UnitTypeCode)
|
|
|
|
reqRepoCodeReader := context.RequireRepoReader(models.UnitTypeCode)
|
|
|
|
reqRepoReleaseWriter := context.RequireRepoWriter(models.UnitTypeReleases)
|
|
|
|
reqRepoReleaseReader := context.RequireRepoReader(models.UnitTypeReleases)
|
|
|
|
reqRepoWikiWriter := context.RequireRepoWriter(models.UnitTypeWiki)
|
2020-01-20 13:00:32 +01:00
|
|
|
reqRepoIssueWriter := context.RequireRepoWriter(models.UnitTypeIssues)
|
2018-11-28 12:26:14 +01:00
|
|
|
reqRepoIssueReader := context.RequireRepoReader(models.UnitTypeIssues)
|
|
|
|
reqRepoPullsReader := context.RequireRepoReader(models.UnitTypePullRequests)
|
|
|
|
reqRepoIssuesOrPullsWriter := context.RequireRepoWriterOr(models.UnitTypeIssues, models.UnitTypePullRequests)
|
|
|
|
reqRepoIssuesOrPullsReader := context.RequireRepoReaderOr(models.UnitTypeIssues, models.UnitTypePullRequests)
|
2020-08-17 05:07:38 +02:00
|
|
|
reqRepoProjectsReader := context.RequireRepoReader(models.UnitTypeProjects)
|
2020-08-22 08:58:59 +02:00
|
|
|
reqRepoProjectsWriter := context.RequireRepoWriter(models.UnitTypeProjects)
|
2017-04-25 09:24:51 +02:00
|
|
|
|
|
|
|
// ***** START: Organization *****
|
|
|
|
m.Group("/org", func() {
|
|
|
|
m.Group("", func() {
|
|
|
|
m.Get("/create", org.Create)
|
|
|
|
m.Post("/create", bindIgnErr(auth.CreateOrgForm{}), org.CreatePost)
|
|
|
|
})
|
|
|
|
|
|
|
|
m.Group("/:org", func() {
|
|
|
|
m.Get("/dashboard", user.Dashboard)
|
|
|
|
m.Get("/^:type(issues|pulls)$", user.Issues)
|
2019-12-15 15:20:08 +01:00
|
|
|
m.Get("/milestones", reqMilestonesDashboardPageEnabled, user.Milestones)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Get("/members", org.Members)
|
2020-02-25 21:28:47 +01:00
|
|
|
m.Post("/members/action/:action", org.MembersAction)
|
2017-04-25 09:24:51 +02:00
|
|
|
|
|
|
|
m.Get("/teams", org.Teams)
|
|
|
|
}, context.OrgAssignment(true))
|
|
|
|
|
|
|
|
m.Group("/:org", func() {
|
|
|
|
m.Get("/teams/:team", org.TeamMembers)
|
|
|
|
m.Get("/teams/:team/repositories", org.TeamRepositories)
|
2020-02-25 21:28:47 +01:00
|
|
|
m.Post("/teams/:team/action/:action", org.TeamsAction)
|
|
|
|
m.Post("/teams/:team/action/repo/:action", org.TeamsRepoAction)
|
2017-04-25 09:24:51 +02:00
|
|
|
}, context.OrgAssignment(true, false, true))
|
|
|
|
|
|
|
|
m.Group("/:org", func() {
|
|
|
|
m.Get("/teams/new", org.NewTeam)
|
|
|
|
m.Post("/teams/new", bindIgnErr(auth.CreateTeamForm{}), org.NewTeamPost)
|
|
|
|
m.Get("/teams/:team/edit", org.EditTeam)
|
|
|
|
m.Post("/teams/:team/edit", bindIgnErr(auth.CreateTeamForm{}), org.EditTeamPost)
|
|
|
|
m.Post("/teams/:team/delete", org.DeleteTeam)
|
|
|
|
|
|
|
|
m.Group("/settings", func() {
|
|
|
|
m.Combo("").Get(org.Settings).
|
|
|
|
Post(bindIgnErr(auth.UpdateOrgSettingForm{}), org.SettingsPost)
|
|
|
|
m.Post("/avatar", binding.MultipartForm(auth.AvatarForm{}), org.SettingsAvatar)
|
|
|
|
m.Post("/avatar/delete", org.SettingsDeleteAvatar)
|
|
|
|
|
|
|
|
m.Group("/hooks", func() {
|
|
|
|
m.Get("", org.Webhooks)
|
|
|
|
m.Post("/delete", org.DeleteWebhook)
|
|
|
|
m.Get("/:type/new", repo.WebhooksNew)
|
2020-03-08 23:08:05 +01:00
|
|
|
m.Post("/gitea/new", bindIgnErr(auth.NewWebhookForm{}), repo.GiteaHooksNewPost)
|
2019-10-02 14:58:40 +02:00
|
|
|
m.Post("/gogs/new", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksNewPost)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
|
2017-08-30 07:36:52 +02:00
|
|
|
m.Post("/discord/new", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksNewPost)
|
2017-11-21 05:26:43 +01:00
|
|
|
m.Post("/dingtalk/new", bindIgnErr(auth.NewDingtalkHookForm{}), repo.DingtalkHooksNewPost)
|
2019-04-19 04:45:02 +02:00
|
|
|
m.Post("/telegram/new", bindIgnErr(auth.NewTelegramHookForm{}), repo.TelegramHooksNewPost)
|
2020-03-28 14:09:55 +01:00
|
|
|
m.Post("/matrix/new", bindIgnErr(auth.NewMatrixHookForm{}), repo.MatrixHooksNewPost)
|
2020-01-15 19:38:44 +01:00
|
|
|
m.Post("/msteams/new", bindIgnErr(auth.NewMSTeamsHookForm{}), repo.MSTeamsHooksNewPost)
|
2020-02-12 09:48:28 +01:00
|
|
|
m.Post("/feishu/new", bindIgnErr(auth.NewFeishuHookForm{}), repo.FeishuHooksNewPost)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Get("/:id", repo.WebHooksEdit)
|
2017-05-29 09:17:15 +02:00
|
|
|
m.Post("/gitea/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
|
|
|
|
m.Post("/gogs/:id", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksEditPost)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
|
2017-08-29 03:20:35 +02:00
|
|
|
m.Post("/discord/:id", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksEditPost)
|
2017-11-21 05:26:43 +01:00
|
|
|
m.Post("/dingtalk/:id", bindIgnErr(auth.NewDingtalkHookForm{}), repo.DingtalkHooksEditPost)
|
2019-04-19 04:45:02 +02:00
|
|
|
m.Post("/telegram/:id", bindIgnErr(auth.NewTelegramHookForm{}), repo.TelegramHooksEditPost)
|
2020-03-28 14:09:55 +01:00
|
|
|
m.Post("/matrix/:id", bindIgnErr(auth.NewMatrixHookForm{}), repo.MatrixHooksEditPost)
|
2020-01-15 19:38:44 +01:00
|
|
|
m.Post("/msteams/:id", bindIgnErr(auth.NewMSTeamsHookForm{}), repo.MSTeamsHooksEditPost)
|
2020-02-12 09:48:28 +01:00
|
|
|
m.Post("/feishu/:id", bindIgnErr(auth.NewFeishuHookForm{}), repo.FeishuHooksEditPost)
|
2017-04-25 09:24:51 +02:00
|
|
|
})
|
|
|
|
|
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 06:14:46 +02:00
|
|
|
m.Group("/labels", func() {
|
|
|
|
m.Get("", org.RetrieveLabels, org.Labels)
|
|
|
|
m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), org.NewLabel)
|
|
|
|
m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), org.UpdateLabel)
|
|
|
|
m.Post("/delete", org.DeleteLabel)
|
|
|
|
m.Post("/initialize", bindIgnErr(auth.InitializeLabelsForm{}), org.InitializeLabels)
|
|
|
|
})
|
|
|
|
|
2017-04-25 09:24:51 +02:00
|
|
|
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)
|
|
|
|
m.Post("/create", bindIgnErr(auth.CreateRepoForm{}), repo.CreatePost)
|
|
|
|
m.Get("/migrate", repo.Migrate)
|
|
|
|
m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), repo.MigratePost)
|
2017-09-18 16:52:20 +02:00
|
|
|
m.Group("/fork", func() {
|
|
|
|
m.Combo("/:repoid").Get(repo.Fork).
|
|
|
|
Post(bindIgnErr(auth.CreateRepoForm{}), repo.ForkPost)
|
2018-11-28 12:26:14 +01:00
|
|
|
}, context.RepoIDAssignment(), context.UnitTypes(), reqRepoCodeReader)
|
2017-04-25 09:24:51 +02:00
|
|
|
}, reqSignIn)
|
|
|
|
|
2019-01-06 23:37:30 +01:00
|
|
|
// ***** Release Attachment Download without Signin
|
2019-01-18 01:01:04 +01:00
|
|
|
m.Get("/:username/:reponame/releases/download/:vTag/:fileName", ignSignIn, context.RepoAssignment(), repo.MustBeNotEmpty, repo.RedirectDownload)
|
2019-01-06 23:37:30 +01:00
|
|
|
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Group("/:username/:reponame", func() {
|
|
|
|
m.Group("/settings", func() {
|
|
|
|
m.Combo("").Get(repo.Settings).
|
|
|
|
Post(bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost)
|
2019-05-30 04:22:26 +02:00
|
|
|
m.Post("/avatar", binding.MultipartForm(auth.AvatarForm{}), repo.SettingsAvatar)
|
|
|
|
m.Post("/avatar/delete", repo.SettingsDeleteAvatar)
|
|
|
|
|
2017-04-25 09:24:51 +02:00
|
|
|
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-23 22:08:03 +02:00
|
|
|
m.Group("/team", func() {
|
|
|
|
m.Post("", repo.AddTeamPost)
|
|
|
|
m.Post("/delete", repo.DeleteTeam)
|
|
|
|
})
|
2017-04-25 09:24:51 +02:00
|
|
|
})
|
|
|
|
m.Group("/branches", func() {
|
|
|
|
m.Combo("").Get(repo.ProtectedBranch).Post(repo.ProtectedBranchPost)
|
2017-09-14 10:16:22 +02:00
|
|
|
m.Combo("/*").Get(repo.SettingsProtectedBranch).
|
2019-01-23 19:58:38 +01:00
|
|
|
Post(bindIgnErr(auth.ProtectBranchForm{}), context.RepoMustNotBeArchived(), repo.SettingsProtectedBranchPost)
|
2019-01-18 01:01:04 +01:00
|
|
|
}, repo.MustBeNotEmpty)
|
2017-04-25 09:24:51 +02:00
|
|
|
|
|
|
|
m.Group("/hooks", func() {
|
|
|
|
m.Get("", repo.Webhooks)
|
|
|
|
m.Post("/delete", repo.DeleteWebhook)
|
|
|
|
m.Get("/:type/new", repo.WebhooksNew)
|
2020-03-08 23:08:05 +01:00
|
|
|
m.Post("/gitea/new", bindIgnErr(auth.NewWebhookForm{}), repo.GiteaHooksNewPost)
|
2019-10-02 14:58:40 +02:00
|
|
|
m.Post("/gogs/new", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksNewPost)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
|
2017-08-28 07:06:45 +02:00
|
|
|
m.Post("/discord/new", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksNewPost)
|
2017-11-21 05:26:43 +01:00
|
|
|
m.Post("/dingtalk/new", bindIgnErr(auth.NewDingtalkHookForm{}), repo.DingtalkHooksNewPost)
|
2019-04-19 04:45:02 +02:00
|
|
|
m.Post("/telegram/new", bindIgnErr(auth.NewTelegramHookForm{}), repo.TelegramHooksNewPost)
|
2020-03-28 14:09:55 +01:00
|
|
|
m.Post("/matrix/new", bindIgnErr(auth.NewMatrixHookForm{}), repo.MatrixHooksNewPost)
|
2019-04-19 16:18:06 +02:00
|
|
|
m.Post("/msteams/new", bindIgnErr(auth.NewMSTeamsHookForm{}), repo.MSTeamsHooksNewPost)
|
2020-02-12 09:48:28 +01:00
|
|
|
m.Post("/feishu/new", bindIgnErr(auth.NewFeishuHookForm{}), repo.FeishuHooksNewPost)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Get("/:id", repo.WebHooksEdit)
|
|
|
|
m.Post("/:id/test", repo.TestWebhook)
|
2017-05-29 09:17:15 +02:00
|
|
|
m.Post("/gitea/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
|
2018-06-21 07:22:03 +02:00
|
|
|
m.Post("/gogs/:id", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksEditPost)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
|
2017-08-28 07:06:45 +02:00
|
|
|
m.Post("/discord/:id", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksEditPost)
|
2017-11-21 05:26:43 +01:00
|
|
|
m.Post("/dingtalk/:id", bindIgnErr(auth.NewDingtalkHookForm{}), repo.DingtalkHooksEditPost)
|
2019-04-19 04:45:02 +02:00
|
|
|
m.Post("/telegram/:id", bindIgnErr(auth.NewTelegramHookForm{}), repo.TelegramHooksEditPost)
|
2020-03-28 14:09:55 +01:00
|
|
|
m.Post("/matrix/:id", bindIgnErr(auth.NewMatrixHookForm{}), repo.MatrixHooksEditPost)
|
2019-04-19 16:18:06 +02:00
|
|
|
m.Post("/msteams/:id", bindIgnErr(auth.NewMSTeamsHookForm{}), repo.MSTeamsHooksEditPost)
|
2020-02-12 09:48:28 +01:00
|
|
|
m.Post("/feishu/:id", bindIgnErr(auth.NewFeishuHookForm{}), repo.FeishuHooksEditPost)
|
2017-04-25 09:24:51 +02:00
|
|
|
|
|
|
|
m.Group("/git", func() {
|
|
|
|
m.Get("", repo.GitHooks)
|
|
|
|
m.Combo("/:name").Get(repo.GitHooksEdit).
|
|
|
|
Post(repo.GitHooksEditPost)
|
|
|
|
}, context.GitHookService())
|
|
|
|
})
|
|
|
|
|
|
|
|
m.Group("/keys", func() {
|
|
|
|
m.Combo("").Get(repo.DeployKeys).
|
2017-04-26 15:10:43 +02:00
|
|
|
Post(bindIgnErr(auth.AddKeyForm{}), repo.DeployKeysPost)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Post("/delete", repo.DeleteDeployKey)
|
|
|
|
})
|
|
|
|
|
2019-10-28 19:31:55 +01:00
|
|
|
m.Group("/lfs", func() {
|
|
|
|
m.Get("", repo.LFSFiles)
|
|
|
|
m.Get("/show/:oid", repo.LFSFileGet)
|
|
|
|
m.Post("/delete/:oid", repo.LFSDelete)
|
|
|
|
m.Get("/pointers", repo.LFSPointerFiles)
|
|
|
|
m.Post("/pointers/associate", repo.LFSAutoAssociate)
|
|
|
|
m.Get("/find", repo.LFSFileFind)
|
2019-12-12 14:18:07 +01:00
|
|
|
m.Group("/locks", func() {
|
|
|
|
m.Get("/", repo.LFSLocks)
|
|
|
|
m.Post("/", repo.LFSLockFile)
|
|
|
|
m.Post("/:lid/unlock", repo.LFSUnlock)
|
|
|
|
})
|
2019-10-28 19:31:55 +01:00
|
|
|
})
|
|
|
|
|
2017-04-25 09:24:51 +02:00
|
|
|
}, func(ctx *context.Context) {
|
|
|
|
ctx.Data["PageIsSettings"] = true
|
2019-10-28 19:31:55 +01:00
|
|
|
ctx.Data["LFSStartServer"] = setting.LFS.StartServer
|
2017-07-17 04:04:43 +02:00
|
|
|
})
|
2019-07-16 05:43:30 +02:00
|
|
|
}, reqSignIn, context.RepoAssignment(), context.UnitTypes(), reqRepoAdmin, context.RepoRef())
|
2017-04-25 09:24:51 +02:00
|
|
|
|
2020-02-25 21:28:47 +01:00
|
|
|
m.Post("/:username/:reponame/action/:action", reqSignIn, context.RepoAssignment(), context.UnitTypes(), repo.Action)
|
2017-05-18 16:54:24 +02:00
|
|
|
|
2020-05-03 11:07:04 +02:00
|
|
|
// Grouping for those endpoints not requiring authentication
|
|
|
|
m.Group("/:username/:reponame", func() {
|
|
|
|
m.Group("/milestone", func() {
|
|
|
|
m.Get("/:id", repo.MilestoneIssuesAndPulls)
|
|
|
|
}, reqRepoIssuesOrPullsReader, context.RepoRef())
|
2020-05-05 00:44:30 +02:00
|
|
|
m.Combo("/compare/*", repo.MustBeNotEmpty, reqRepoCodeReader, repo.SetEditorconfigIfExists).
|
2020-08-12 12:34:57 +02:00
|
|
|
Get(ignSignIn, repo.SetDiffViewStyle, repo.CompareDiff).
|
2020-05-05 00:44:30 +02:00
|
|
|
Post(reqSignIn, context.RepoMustNotBeArchived(), reqRepoPullsReader, repo.MustAllowPulls, bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost)
|
2020-05-03 11:07:04 +02:00
|
|
|
}, context.RepoAssignment(), context.UnitTypes())
|
|
|
|
|
|
|
|
// Grouping for those endpoints that do require authentication
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Group("/:username/:reponame", func() {
|
|
|
|
m.Group("/issues", func() {
|
2020-09-11 16:48:39 +02:00
|
|
|
m.Group("/new", func() {
|
|
|
|
m.Combo("").Get(context.RepoRef(), repo.NewIssue).
|
|
|
|
Post(bindIgnErr(auth.CreateIssueForm{}), repo.NewIssuePost)
|
|
|
|
m.Get("/choose", context.RepoRef(), repo.NewIssueChooseTemplate)
|
|
|
|
})
|
2019-01-23 19:58:38 +01:00
|
|
|
}, context.RepoMustNotBeArchived(), reqRepoIssueReader)
|
2017-10-16 09:55:43 +02:00
|
|
|
// FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest.
|
|
|
|
// So they can apply their own enable/disable logic on routers.
|
|
|
|
m.Group("/issues", func() {
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Group("/:index", func() {
|
|
|
|
m.Post("/title", repo.UpdateIssueTitle)
|
|
|
|
m.Post("/content", repo.UpdateIssueContent)
|
|
|
|
m.Post("/watch", repo.IssueWatch)
|
2020-09-08 18:29:51 +02:00
|
|
|
m.Post("/ref", repo.UpdateIssueRef)
|
2018-07-17 23:23:58 +02:00
|
|
|
m.Group("/dependency", func() {
|
|
|
|
m.Post("/add", repo.AddDependency)
|
|
|
|
m.Post("/delete", repo.RemoveDependency)
|
|
|
|
})
|
2019-02-18 21:55:04 +01:00
|
|
|
m.Combo("/comments").Post(repo.MustAllowUserComment, bindIgnErr(auth.CreateCommentForm{}), repo.NewComment)
|
2017-09-12 08:48:13 +02:00
|
|
|
m.Group("/times", func() {
|
|
|
|
m.Post("/add", bindIgnErr(auth.AddTimeManuallyForm{}), repo.AddTimeManually)
|
|
|
|
m.Group("/stopwatch", func() {
|
|
|
|
m.Post("/toggle", repo.IssueStopwatch)
|
|
|
|
m.Post("/cancel", repo.CancelStopwatch)
|
|
|
|
})
|
|
|
|
})
|
2017-12-04 00:14:26 +01:00
|
|
|
m.Post("/reactions/:action", bindIgnErr(auth.ReactionForm{}), repo.ChangeIssueReaction)
|
2019-02-18 21:55:04 +01:00
|
|
|
m.Post("/lock", reqRepoIssueWriter, bindIgnErr(auth.IssueLockForm{}), repo.LockIssue)
|
|
|
|
m.Post("/unlock", reqRepoIssueWriter, repo.UnlockIssue)
|
2019-01-23 19:58:38 +01:00
|
|
|
}, context.RepoMustNotBeArchived())
|
2020-10-05 07:49:33 +02:00
|
|
|
m.Group("/:index", func() {
|
|
|
|
m.Get("/attachments", repo.GetIssueAttachments)
|
|
|
|
m.Get("/attachments/:uuid", repo.GetAttachment)
|
|
|
|
})
|
2017-04-25 09:24:51 +02:00
|
|
|
|
2018-11-28 12:26:14 +01:00
|
|
|
m.Post("/labels", reqRepoIssuesOrPullsWriter, repo.UpdateIssueLabel)
|
|
|
|
m.Post("/milestone", reqRepoIssuesOrPullsWriter, repo.UpdateIssueMilestone)
|
2020-08-17 05:07:38 +02:00
|
|
|
m.Post("/projects", reqRepoIssuesOrPullsWriter, repo.UpdateIssueProject)
|
2018-11-28 12:26:14 +01:00
|
|
|
m.Post("/assignee", reqRepoIssuesOrPullsWriter, repo.UpdateIssueAssignee)
|
2020-04-06 18:33:34 +02:00
|
|
|
m.Post("/request_review", reqRepoIssuesOrPullsReader, repo.UpdatePullReviewRequest)
|
2018-11-28 12:26:14 +01:00
|
|
|
m.Post("/status", reqRepoIssuesOrPullsWriter, repo.UpdateIssueStatus)
|
2020-04-18 15:50:25 +02:00
|
|
|
m.Post("/resolve_conversation", reqRepoIssuesOrPullsReader, repo.UpdateResolveConversation)
|
2020-10-05 07:49:33 +02:00
|
|
|
m.Post("/attachments", repo.UploadIssueAttachment)
|
|
|
|
m.Post("/attachments/remove", repo.DeleteAttachment)
|
2019-01-23 19:58:38 +01:00
|
|
|
}, context.RepoMustNotBeArchived())
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Group("/comments/:id", func() {
|
|
|
|
m.Post("", repo.UpdateCommentContent)
|
|
|
|
m.Post("/delete", repo.DeleteComment)
|
2017-12-04 00:14:26 +01:00
|
|
|
m.Post("/reactions/:action", bindIgnErr(auth.ReactionForm{}), repo.ChangeCommentReaction)
|
2019-01-23 19:58:38 +01:00
|
|
|
}, context.RepoMustNotBeArchived())
|
2020-10-05 07:49:33 +02:00
|
|
|
m.Group("/comments/:id", func() {
|
|
|
|
m.Get("/attachments", repo.GetCommentAttachments)
|
|
|
|
})
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Group("/labels", func() {
|
|
|
|
m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel)
|
|
|
|
m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel)
|
|
|
|
m.Post("/delete", repo.DeleteLabel)
|
|
|
|
m.Post("/initialize", bindIgnErr(auth.InitializeLabelsForm{}), repo.InitializeLabels)
|
2019-01-23 19:58:38 +01:00
|
|
|
}, context.RepoMustNotBeArchived(), reqRepoIssuesOrPullsWriter, context.RepoRef())
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Group("/milestones", func() {
|
|
|
|
m.Combo("/new").Get(repo.NewMilestone).
|
|
|
|
Post(bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
|
|
|
|
m.Get("/:id/edit", repo.EditMilestone)
|
|
|
|
m.Post("/:id/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.EditMilestonePost)
|
2020-08-17 05:07:38 +02:00
|
|
|
m.Post("/:id/:action", repo.ChangeMilestoneStatus)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Post("/delete", repo.DeleteMilestone)
|
2019-01-23 19:58:38 +01:00
|
|
|
}, context.RepoMustNotBeArchived(), reqRepoIssuesOrPullsWriter, context.RepoRef())
|
2019-12-16 07:20:25 +01:00
|
|
|
m.Group("/pull", func() {
|
|
|
|
m.Post("/:index/target_branch", repo.UpdatePullRequestTarget)
|
|
|
|
}, context.RepoMustNotBeArchived())
|
2017-04-25 09:24:51 +02:00
|
|
|
|
|
|
|
m.Group("", func() {
|
|
|
|
m.Group("", func() {
|
2017-10-30 03:04:25 +01:00
|
|
|
m.Combo("/_edit/*").Get(repo.EditFile).
|
|
|
|
Post(bindIgnErr(auth.EditRepoFileForm{}), repo.EditFilePost)
|
|
|
|
m.Combo("/_new/*").Get(repo.NewFile).
|
|
|
|
Post(bindIgnErr(auth.EditRepoFileForm{}), repo.NewFilePost)
|
|
|
|
m.Post("/_preview/*", bindIgnErr(auth.EditPreviewDiffForm{}), repo.DiffPreviewPost)
|
|
|
|
m.Combo("/_delete/*").Get(repo.DeleteFile).
|
|
|
|
Post(bindIgnErr(auth.DeleteRepoFileForm{}), repo.DeleteFilePost)
|
|
|
|
m.Combo("/_upload/*", repo.MustBeAbleToUpload).
|
|
|
|
Get(repo.UploadFile).
|
2017-04-25 09:24:51 +02:00
|
|
|
Post(bindIgnErr(auth.UploadRepoFileForm{}), repo.UploadFilePost)
|
2017-10-30 03:04:25 +01:00
|
|
|
}, context.RepoRefByType(context.RepoRefBranch), repo.MustBeEditable)
|
|
|
|
m.Group("", func() {
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Post("/upload-file", repo.UploadFileToServer)
|
|
|
|
m.Post("/upload-remove", bindIgnErr(auth.RemoveUploadFileForm{}), repo.RemoveUploadFileFromServer)
|
2017-10-30 03:04:25 +01:00
|
|
|
}, context.RepoRef(), repo.MustBeEditable, repo.MustBeAbleToUpload)
|
2019-01-23 19:58:38 +01:00
|
|
|
}, context.RepoMustNotBeArchived(), reqRepoCodeWriter, repo.MustBeNotEmpty)
|
2017-10-15 21:59:24 +02:00
|
|
|
|
|
|
|
m.Group("/branches", func() {
|
2017-10-30 03:04:25 +01:00
|
|
|
m.Group("/_new/", func() {
|
|
|
|
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)
|
|
|
|
}, bindIgnErr(auth.NewBranchForm{}))
|
2017-10-26 02:49:16 +02:00
|
|
|
m.Post("/delete", repo.DeleteBranchPost)
|
|
|
|
m.Post("/restore", repo.RestoreBranchPost)
|
2019-01-23 19:58:38 +01:00
|
|
|
}, context.RepoMustNotBeArchived(), reqRepoCodeWriter, repo.MustBeNotEmpty)
|
2017-10-26 02:49:16 +02:00
|
|
|
|
2018-11-28 12:26:14 +01:00
|
|
|
}, reqSignIn, context.RepoAssignment(), context.UnitTypes())
|
2017-05-18 16:54:24 +02:00
|
|
|
|
|
|
|
// Releases
|
|
|
|
m.Group("/:username/:reponame", func() {
|
|
|
|
m.Group("/releases", func() {
|
2020-04-18 16:47:15 +02:00
|
|
|
m.Get("/", repo.Releases)
|
2020-09-17 20:24:23 +02:00
|
|
|
m.Get("/tag/*", repo.SingleRelease)
|
2020-04-18 16:47:15 +02:00
|
|
|
m.Get("/latest", repo.LatestRelease)
|
2020-10-05 07:49:33 +02:00
|
|
|
m.Get("/attachments/:uuid", repo.GetAttachment)
|
2020-09-17 20:24:23 +02:00
|
|
|
}, repo.MustBeNotEmpty, context.RepoRefByType(context.RepoRefTag))
|
2017-06-18 05:38:24 +02:00
|
|
|
m.Group("/releases", func() {
|
2017-05-18 16:54:24 +02:00
|
|
|
m.Get("/new", repo.NewRelease)
|
|
|
|
m.Post("/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost)
|
|
|
|
m.Post("/delete", repo.DeleteRelease)
|
2020-10-05 07:49:33 +02:00
|
|
|
m.Post("/attachments", repo.UploadReleaseAttachment)
|
|
|
|
m.Post("/attachments/remove", repo.DeleteAttachment)
|
2019-01-23 19:58:38 +01:00
|
|
|
}, reqSignIn, repo.MustBeNotEmpty, context.RepoMustNotBeArchived(), reqRepoReleaseWriter, context.RepoRef())
|
2017-05-18 16:54:24 +02:00
|
|
|
m.Group("/releases", func() {
|
|
|
|
m.Get("/edit/*", repo.EditRelease)
|
|
|
|
m.Post("/edit/*", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost)
|
2019-01-23 19:58:38 +01:00
|
|
|
}, reqSignIn, repo.MustBeNotEmpty, context.RepoMustNotBeArchived(), reqRepoReleaseWriter, func(ctx *context.Context) {
|
2017-05-18 16:54:24 +02:00
|
|
|
var err error
|
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(ctx.Repo.Repository.DefaultBranch)
|
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetBranchCommit", err)
|
2017-05-18 16:54:24 +02:00
|
|
|
return
|
|
|
|
}
|
2017-10-26 03:37:33 +02:00
|
|
|
ctx.Repo.CommitsCount, err = ctx.Repo.GetCommitsCount()
|
2017-05-18 16:54:24 +02:00
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetCommitsCount", err)
|
2017-05-18 16:54:24 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["CommitsCount"] = ctx.Repo.CommitsCount
|
|
|
|
})
|
2019-01-30 17:45:48 +01:00
|
|
|
}, ignSignIn, context.RepoAssignment(), context.UnitTypes(), reqRepoReleaseReader)
|
2017-04-25 09:24:51 +02:00
|
|
|
|
2018-04-11 04:51:44 +02:00
|
|
|
m.Group("/:username/:reponame", func() {
|
2018-06-21 11:09:46 +02:00
|
|
|
m.Post("/topics", repo.TopicsPost)
|
2019-01-24 11:22:27 +01:00
|
|
|
}, context.RepoAssignment(), context.RepoMustNotBeArchived(), reqRepoAdmin)
|
2018-04-11 04:51:44 +02:00
|
|
|
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Group("/:username/:reponame", func() {
|
|
|
|
m.Group("", func() {
|
2019-01-23 05:10:38 +01:00
|
|
|
m.Get("/^:type(issues|pulls)$", repo.Issues)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Get("/^:type(issues|pulls)$/:index", repo.ViewIssue)
|
2018-11-28 12:26:14 +01:00
|
|
|
m.Get("/labels/", reqRepoIssuesOrPullsReader, repo.RetrieveLabels, repo.Labels)
|
|
|
|
m.Get("/milestones", reqRepoIssuesOrPullsReader, repo.Milestones)
|
2017-06-03 07:56:36 +02:00
|
|
|
}, context.RepoRef())
|
2017-04-25 09:24:51 +02:00
|
|
|
|
2020-08-17 05:07:38 +02:00
|
|
|
m.Group("/projects", func() {
|
|
|
|
m.Get("", repo.Projects)
|
2020-08-22 08:58:59 +02:00
|
|
|
m.Get("/:id", repo.ViewProject)
|
|
|
|
m.Group("", func() {
|
|
|
|
m.Get("/new", repo.NewProject)
|
|
|
|
m.Post("/new", bindIgnErr(auth.CreateProjectForm{}), repo.NewProjectPost)
|
|
|
|
m.Group("/:id", func() {
|
|
|
|
m.Post("", bindIgnErr(auth.EditProjectBoardTitleForm{}), repo.AddBoardToProjectPost)
|
|
|
|
m.Post("/delete", repo.DeleteProject)
|
|
|
|
|
|
|
|
m.Get("/edit", repo.EditProject)
|
|
|
|
m.Post("/edit", bindIgnErr(auth.CreateProjectForm{}), repo.EditProjectPost)
|
|
|
|
m.Post("/^:action(open|close)$", repo.ChangeProjectStatus)
|
|
|
|
|
|
|
|
m.Group("/:boardID", func() {
|
|
|
|
m.Put("", bindIgnErr(auth.EditProjectBoardTitleForm{}), repo.EditProjectBoardTitle)
|
|
|
|
m.Delete("", repo.DeleteProjectBoard)
|
|
|
|
|
|
|
|
m.Post("/:index", repo.MoveIssueAcrossBoards)
|
|
|
|
})
|
2020-08-17 05:07:38 +02:00
|
|
|
})
|
2020-08-22 08:58:59 +02:00
|
|
|
}, reqRepoProjectsWriter, context.RepoMustNotBeArchived())
|
2020-08-17 05:07:38 +02:00
|
|
|
}, reqRepoProjectsReader, repo.MustEnableProjects)
|
|
|
|
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Group("/wiki", func() {
|
|
|
|
m.Get("/?:page", repo.Wiki)
|
|
|
|
m.Get("/_pages", repo.WikiPages)
|
2019-07-08 10:20:22 +02:00
|
|
|
m.Get("/:page/_revision", repo.WikiRevision)
|
2020-05-16 18:38:40 +02:00
|
|
|
m.Get("/commit/:sha([a-f0-9]{7,40})$", repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.Diff)
|
|
|
|
m.Get("/commit/:sha([a-f0-9]{7,40})\\.:ext(patch|diff)", repo.RawDiff)
|
2017-04-25 09:24:51 +02:00
|
|
|
|
|
|
|
m.Group("", func() {
|
|
|
|
m.Combo("/_new").Get(repo.NewWiki).
|
|
|
|
Post(bindIgnErr(auth.NewWikiForm{}), repo.NewWikiPost)
|
|
|
|
m.Combo("/:page/_edit").Get(repo.EditWiki).
|
|
|
|
Post(bindIgnErr(auth.NewWikiForm{}), repo.EditWikiPost)
|
|
|
|
m.Post("/:page/delete", repo.DeleteWikiPagePost)
|
2019-01-23 19:58:38 +01:00
|
|
|
}, context.RepoMustNotBeArchived(), reqSignIn, reqRepoWikiWriter)
|
2020-05-16 18:38:40 +02:00
|
|
|
}, repo.MustEnableWiki, context.RepoRef(), func(ctx *context.Context) {
|
|
|
|
ctx.Data["PageIsWiki"] = true
|
|
|
|
})
|
2017-04-25 09:24:51 +02:00
|
|
|
|
|
|
|
m.Group("/wiki", func() {
|
|
|
|
m.Get("/raw/*", repo.WikiRaw)
|
2017-09-30 06:04:16 +02:00
|
|
|
}, repo.MustEnableWiki)
|
2017-04-25 09:24:51 +02:00
|
|
|
|
2017-10-15 01:17:39 +02:00
|
|
|
m.Group("/activity", func() {
|
|
|
|
m.Get("", repo.Activity)
|
|
|
|
m.Get("/:period", repo.Activity)
|
2019-01-18 01:01:04 +01:00
|
|
|
}, context.RepoRef(), repo.MustBeNotEmpty, context.RequireRepoReaderOr(models.UnitTypePullRequests, models.UnitTypeIssues, models.UnitTypeReleases))
|
2017-10-15 01:17:39 +02:00
|
|
|
|
2019-05-04 14:39:03 +02:00
|
|
|
m.Group("/activity_author_data", func() {
|
|
|
|
m.Get("", repo.ActivityAuthors)
|
|
|
|
m.Get("/:period", repo.ActivityAuthors)
|
|
|
|
}, context.RepoRef(), repo.MustBeNotEmpty, context.RequireRepoReaderOr(models.UnitTypeCode))
|
|
|
|
|
2019-01-18 01:01:04 +01:00
|
|
|
m.Get("/archive/*", repo.MustBeNotEmpty, reqRepoCodeReader, repo.Download)
|
2017-04-25 09:24:51 +02:00
|
|
|
|
2017-10-26 02:49:16 +02:00
|
|
|
m.Group("/branches", func() {
|
|
|
|
m.Get("", repo.Branches)
|
2019-01-18 01:01:04 +01:00
|
|
|
}, repo.MustBeNotEmpty, context.RepoRef(), reqRepoCodeReader)
|
2017-10-26 02:49:16 +02:00
|
|
|
|
2019-11-15 03:52:59 +01:00
|
|
|
m.Group("/blob_excerpt", func() {
|
|
|
|
m.Get("/:sha", repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.ExcerptBlob)
|
|
|
|
}, repo.MustBeNotEmpty, context.RepoRef(), reqRepoCodeReader)
|
|
|
|
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Group("/pulls/:index", func() {
|
2018-01-05 11:56:52 +01:00
|
|
|
m.Get(".diff", repo.DownloadPullDiff)
|
2018-01-07 14:10:20 +01:00
|
|
|
m.Get(".patch", repo.DownloadPullPatch)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Get("/commits", context.RepoRef(), repo.ViewPullCommits)
|
2020-04-08 13:26:50 +02:00
|
|
|
m.Post("/merge", context.RepoMustNotBeArchived(), bindIgnErr(auth.MergePullRequestForm{}), repo.MergePullRequest)
|
2020-01-17 07:03:40 +01:00
|
|
|
m.Post("/update", repo.UpdatePullRequest)
|
2019-01-23 19:58:38 +01:00
|
|
|
m.Post("/cleanup", context.RepoMustNotBeArchived(), context.RepoRef(), repo.CleanUpPullRequest)
|
2018-08-06 06:43:22 +02:00
|
|
|
m.Group("/files", func() {
|
2018-08-14 19:49:33 +02:00
|
|
|
m.Get("", context.RepoRef(), repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.SetWhitespaceBehavior, repo.ViewPullFiles)
|
2018-08-06 06:43:22 +02:00
|
|
|
m.Group("/reviews", func() {
|
|
|
|
m.Post("/comments", bindIgnErr(auth.CodeCommentForm{}), repo.CreateCodeComment)
|
|
|
|
m.Post("/submit", bindIgnErr(auth.SubmitReviewForm{}), repo.SubmitReview)
|
2019-01-23 19:58:38 +01:00
|
|
|
}, context.RepoMustNotBeArchived())
|
2018-08-06 06:43:22 +02:00
|
|
|
})
|
2017-09-30 06:04:16 +02:00
|
|
|
}, repo.MustAllowPulls)
|
2017-04-25 09:24:51 +02:00
|
|
|
|
2019-02-12 16:09:43 +01:00
|
|
|
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)
|
|
|
|
m.Get("/blob/:sha", context.RepoRefByType(context.RepoRefBlob), repo.DownloadByIDOrLFS)
|
|
|
|
// "/*" route is deprecated, and kept for backward compatibility
|
|
|
|
m.Get("/*", context.RepoRefByType(context.RepoRefLegacy), repo.SingleDownloadOrLFS)
|
|
|
|
}, repo.MustBeNotEmpty, reqRepoCodeReader)
|
|
|
|
|
2017-10-30 03:04:25 +01:00
|
|
|
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)
|
2018-11-18 19:45:40 +01:00
|
|
|
m.Get("/blob/:sha", context.RepoRefByType(context.RepoRefBlob), repo.DownloadByID)
|
2017-10-30 03:04:25 +01:00
|
|
|
// "/*" route is deprecated, and kept for backward compatibility
|
|
|
|
m.Get("/*", context.RepoRefByType(context.RepoRefLegacy), repo.SingleDownload)
|
2019-01-18 01:01:04 +01:00
|
|
|
}, repo.MustBeNotEmpty, reqRepoCodeReader)
|
2017-10-30 03:04:25 +01:00
|
|
|
|
|
|
|
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 01:01:04 +01:00
|
|
|
}, repo.MustBeNotEmpty, reqRepoCodeReader)
|
2017-10-30 03:04:25 +01:00
|
|
|
|
2019-04-20 04:47:00 +02:00
|
|
|
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 09:24:51 +02:00
|
|
|
m.Group("", func() {
|
|
|
|
m.Get("/graph", repo.Graph)
|
|
|
|
m.Get("/commit/:sha([a-f0-9]{7,40})$", repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.Diff)
|
2019-01-18 01:01:04 +01:00
|
|
|
}, repo.MustBeNotEmpty, context.RepoRef(), reqRepoCodeReader)
|
2017-07-27 11:23:38 +02:00
|
|
|
|
2017-10-30 03:04:25 +01:00
|
|
|
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 11:23:38 +02:00
|
|
|
m.Group("", func() {
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Get("/forks", repo.Forks)
|
2018-11-28 12:26:14 +01:00
|
|
|
}, context.RepoRef(), reqRepoCodeReader)
|
2017-08-29 08:53:51 +02:00
|
|
|
m.Get("/commit/:sha([a-f0-9]{7,40})\\.:ext(patch|diff)",
|
2019-01-18 01:01:04 +01:00
|
|
|
repo.MustBeNotEmpty, reqRepoCodeReader, repo.RawDiff)
|
2018-11-28 12:26:14 +01:00
|
|
|
}, ignSignIn, context.RepoAssignment(), context.UnitTypes())
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Group("/:username/:reponame", func() {
|
|
|
|
m.Get("/stars", repo.Stars)
|
|
|
|
m.Get("/watchers", repo.Watchers)
|
2018-11-28 12:26:14 +01:00
|
|
|
m.Get("/search", reqRepoCodeReader, repo.Search)
|
|
|
|
}, ignSignIn, context.RepoAssignment(), context.RepoRef(), context.UnitTypes())
|
2017-04-25 09:24:51 +02:00
|
|
|
|
|
|
|
m.Group("/:username", func() {
|
|
|
|
m.Group("/:reponame", func() {
|
|
|
|
m.Get("", repo.SetEditorconfigIfExists, repo.Home)
|
|
|
|
m.Get("\\.git$", repo.SetEditorconfigIfExists, repo.Home)
|
2018-11-28 12:26:14 +01:00
|
|
|
}, ignSignIn, context.RepoAssignment(), context.RepoRef(), context.UnitTypes())
|
2017-04-25 09:24:51 +02:00
|
|
|
|
|
|
|
m.Group("/:reponame", func() {
|
2017-11-29 00:35:23 +01:00
|
|
|
m.Group("\\.git/info/lfs", func() {
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Post("/objects/batch", lfs.BatchHandler)
|
|
|
|
m.Get("/objects/:oid/:filename", lfs.ObjectOidHandler)
|
|
|
|
m.Any("/objects/:oid", lfs.ObjectOidHandler)
|
|
|
|
m.Post("/objects", lfs.PostHandler)
|
2017-11-08 14:04:19 +01:00
|
|
|
m.Post("/verify", lfs.VerifyHandler)
|
2017-11-28 21:58:37 +01:00
|
|
|
m.Group("/locks", func() {
|
|
|
|
m.Get("/", lfs.GetListLockHandler)
|
|
|
|
m.Post("/", lfs.PostLockHandler)
|
|
|
|
m.Post("/verify", lfs.VerifyLockHandler)
|
|
|
|
m.Post("/:lid/unlock", lfs.UnLockHandler)
|
2019-05-28 12:32:41 +02:00
|
|
|
})
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Any("/*", func(ctx *context.Context) {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("", nil)
|
2017-04-25 09:24:51 +02:00
|
|
|
})
|
|
|
|
}, ignSignInAndCsrf)
|
|
|
|
m.Any("/*", ignSignInAndCsrf, repo.HTTP)
|
|
|
|
m.Head("/tasks/trigger", repo.TriggerTask)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
// ***** END: Repository *****
|
|
|
|
|
|
|
|
m.Group("/notifications", func() {
|
|
|
|
m.Get("", user.Notifications)
|
|
|
|
m.Post("/status", user.NotificationStatusPost)
|
2017-12-07 06:52:57 +01:00
|
|
|
m.Post("/purge", user.NotificationPurgePost)
|
2017-04-25 09:24:51 +02:00
|
|
|
}, reqSignIn)
|
|
|
|
|
2018-07-28 02:19:01 +02:00
|
|
|
if setting.API.EnableSwagger {
|
|
|
|
m.Get("/swagger.v1.json", templates.JSONRenderer(), routers.SwaggerV1Json)
|
|
|
|
}
|
|
|
|
|
2019-08-26 13:33:06 +02:00
|
|
|
var handlers []macaron.Handler
|
2020-01-29 08:47:46 +01:00
|
|
|
if setting.CORSConfig.Enabled {
|
|
|
|
handlers = append(handlers, cors.CORS(cors.Options{
|
|
|
|
Scheme: setting.CORSConfig.Scheme,
|
|
|
|
AllowDomain: setting.CORSConfig.AllowDomain,
|
|
|
|
AllowSubdomain: setting.CORSConfig.AllowSubdomain,
|
|
|
|
Methods: setting.CORSConfig.Methods,
|
|
|
|
MaxAgeSeconds: int(setting.CORSConfig.MaxAge.Seconds()),
|
|
|
|
AllowCredentials: setting.CORSConfig.AllowCredentials,
|
|
|
|
}))
|
2019-08-26 13:33:06 +02:00
|
|
|
}
|
|
|
|
handlers = append(handlers, ignSignIn)
|
2017-04-25 09:24:51 +02:00
|
|
|
m.Group("/api", func() {
|
|
|
|
apiv1.RegisterRoutes(m)
|
2019-08-26 13:33:06 +02:00
|
|
|
}, handlers...)
|
2017-04-25 09:24:51 +02:00
|
|
|
|
|
|
|
m.Group("/api/internal", func() {
|
|
|
|
// package name internal is ideal but Golang is not allowed, so we use private as package name.
|
|
|
|
private.RegisterRoutes(m)
|
|
|
|
})
|
|
|
|
|
|
|
|
// robots.txt
|
|
|
|
m.Get("/robots.txt", func(ctx *context.Context) {
|
|
|
|
if setting.HasRobotsTxt {
|
|
|
|
ctx.ServeFileContent(path.Join(setting.CustomPath, "robots.txt"))
|
|
|
|
} else {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("", nil)
|
2017-04-25 09:24:51 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-02-23 15:34:53 +01:00
|
|
|
m.Get("/apple-touch-icon.png", func(ctx *context.Context) {
|
|
|
|
ctx.Redirect(path.Join(setting.StaticURLPrefix, "img/apple-touch-icon.png"), 301)
|
|
|
|
})
|
|
|
|
|
2018-11-27 16:18:26 +01:00
|
|
|
// Progressive Web App
|
|
|
|
m.Get("/manifest.json", templates.JSONRenderer(), func(ctx *context.Context) {
|
|
|
|
ctx.HTML(200, "pwa/manifest_json")
|
|
|
|
})
|
|
|
|
|
2018-11-05 04:20:00 +01:00
|
|
|
// prometheus metrics endpoint
|
|
|
|
if setting.Metrics.Enabled {
|
|
|
|
c := metrics.NewCollector()
|
|
|
|
prometheus.MustRegister(c)
|
|
|
|
|
|
|
|
m.Get("/metrics", routers.Metrics)
|
|
|
|
}
|
|
|
|
|
2017-04-25 09:24:51 +02:00
|
|
|
// Not found handler.
|
|
|
|
m.NotFound(routers.NotFound)
|
|
|
|
}
|