2014-02-19 15:20:53 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2014-05-02 06:51:46 +05:30
|
|
|
package cmd
|
2014-02-19 15:20:53 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-08-12 03:16:33 +05:30
|
|
|
"net"
|
2014-02-19 15:20:53 +05:30
|
|
|
"net/http"
|
2014-11-04 07:16:53 +05:30
|
|
|
"net/http/fcgi"
|
2017-02-05 18:36:25 +05:30
|
|
|
_ "net/http/pprof" // Used for debugging if enabled and a web server is running
|
2014-04-16 05:31:20 +05:30
|
|
|
"os"
|
2014-05-26 05:41:25 +05:30
|
|
|
"path"
|
2014-09-29 15:08:46 +05:30
|
|
|
"strings"
|
2014-02-19 15:20:53 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/auth"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2016-12-26 06:46:37 +05:30
|
|
|
"code.gitea.io/gitea/modules/lfs"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2016-12-22 23:42:23 +05:30
|
|
|
"code.gitea.io/gitea/modules/options"
|
2016-11-29 21:56:36 +05:30
|
|
|
"code.gitea.io/gitea/modules/public"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2016-12-06 23:28:31 +05:30
|
|
|
"code.gitea.io/gitea/modules/templates"
|
2016-11-10 21:54:48 +05:30
|
|
|
"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"
|
|
|
|
"code.gitea.io/gitea/routers/org"
|
|
|
|
"code.gitea.io/gitea/routers/repo"
|
|
|
|
"code.gitea.io/gitea/routers/user"
|
2016-12-26 06:46:37 +05:30
|
|
|
|
2016-11-05 22:26:35 +05:30
|
|
|
"github.com/go-macaron/binding"
|
|
|
|
"github.com/go-macaron/cache"
|
|
|
|
"github.com/go-macaron/captcha"
|
|
|
|
"github.com/go-macaron/csrf"
|
|
|
|
"github.com/go-macaron/gzip"
|
|
|
|
"github.com/go-macaron/i18n"
|
|
|
|
"github.com/go-macaron/session"
|
|
|
|
"github.com/go-macaron/toolbox"
|
2017-02-27 07:19:05 +05:30
|
|
|
context2 "github.com/gorilla/context"
|
2016-11-05 22:26:35 +05:30
|
|
|
"github.com/urfave/cli"
|
|
|
|
macaron "gopkg.in/macaron.v1"
|
2014-02-19 15:20:53 +05:30
|
|
|
)
|
|
|
|
|
2016-11-04 17:12:18 +05:30
|
|
|
// CmdWeb represents the available web sub-command.
|
2014-02-19 15:20:53 +05:30
|
|
|
var CmdWeb = cli.Command{
|
|
|
|
Name: "web",
|
2016-12-21 17:43:17 +05:30
|
|
|
Usage: "Start Gitea web server",
|
|
|
|
Description: `Gitea web server is the only thing you need to run,
|
2014-03-24 17:06:38 +05:30
|
|
|
and it takes care of all the other things for you`,
|
2014-02-19 15:20:53 +05:30
|
|
|
Action: runWeb,
|
2015-02-01 23:11:03 +05:30
|
|
|
Flags: []cli.Flag{
|
2016-11-10 03:48:22 +05:30
|
|
|
cli.StringFlag{
|
|
|
|
Name: "port, p",
|
|
|
|
Value: "3000",
|
|
|
|
Usage: "Temporary port number to prevent conflict",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "config, c",
|
|
|
|
Value: "custom/conf/app.ini",
|
|
|
|
Usage: "Custom configuration file path",
|
|
|
|
},
|
2017-01-09 17:24:57 +05:30
|
|
|
cli.StringFlag{
|
|
|
|
Name: "pid, P",
|
2017-01-14 07:45:43 +05:30
|
|
|
Value: "/var/run/gitea.pid",
|
2017-01-09 17:24:57 +05:30
|
|
|
Usage: "Custom pid file path",
|
|
|
|
},
|
2015-02-01 23:11:03 +05:30
|
|
|
},
|
2014-02-19 15:20:53 +05:30
|
|
|
}
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
// newMacaron initializes Macaron instance.
|
|
|
|
func newMacaron() *macaron.Macaron {
|
|
|
|
m := macaron.New()
|
2015-07-31 12:33:30 +05:30
|
|
|
if !setting.DisableRouterLog {
|
|
|
|
m.Use(macaron.Logger())
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
m.Use(macaron.Recovery())
|
2014-10-14 03:34:07 +05:30
|
|
|
if setting.EnableGzip {
|
2015-10-16 06:58:12 +05:30
|
|
|
m.Use(gzip.Gziper())
|
2014-10-14 03:34:07 +05:30
|
|
|
}
|
2014-11-16 10:36:09 +05:30
|
|
|
if setting.Protocol == setting.FCGI {
|
2016-11-27 15:44:25 +05:30
|
|
|
m.SetURLPrefix(setting.AppSubURL)
|
2014-11-16 10:36:09 +05:30
|
|
|
}
|
2017-01-29 03:44:56 +05:30
|
|
|
m.Use(public.Custom(
|
|
|
|
&public.Options{
|
|
|
|
SkipLogging: setting.DisableRouterLog,
|
|
|
|
},
|
|
|
|
))
|
2016-11-29 21:56:36 +05:30
|
|
|
m.Use(public.Static(
|
|
|
|
&public.Options{
|
|
|
|
Directory: path.Join(setting.StaticRootPath, "public"),
|
2015-07-31 12:33:30 +05:30
|
|
|
SkipLogging: setting.DisableRouterLog,
|
2014-07-26 09:54:27 +05:30
|
|
|
},
|
|
|
|
))
|
2014-11-21 21:28:08 +05:30
|
|
|
m.Use(macaron.Static(
|
|
|
|
setting.AvatarUploadPath,
|
|
|
|
macaron.StaticOptions{
|
|
|
|
Prefix: "avatars",
|
2015-07-31 12:33:30 +05:30
|
|
|
SkipLogging: setting.DisableRouterLog,
|
2017-01-25 09:56:31 +05:30
|
|
|
ETag: true,
|
2014-11-21 21:28:08 +05:30
|
|
|
},
|
|
|
|
))
|
2016-07-15 22:06:39 +05:30
|
|
|
|
2016-12-06 23:28:31 +05:30
|
|
|
m.Use(templates.Renderer())
|
|
|
|
models.InitMailRender(templates.Mailer())
|
2015-03-18 16:07:44 +05:30
|
|
|
|
2016-12-22 23:42:23 +05:30
|
|
|
localeNames, err := options.Dir("locale")
|
|
|
|
|
2015-03-18 16:07:44 +05:30
|
|
|
if err != nil {
|
2017-01-30 01:43:57 +05:30
|
|
|
log.Fatal(4, "Failed to list locale files: %v", err)
|
2015-03-18 16:07:44 +05:30
|
|
|
}
|
2016-12-22 23:42:23 +05:30
|
|
|
|
2015-03-18 16:07:44 +05:30
|
|
|
localFiles := make(map[string][]byte)
|
2016-12-22 23:42:23 +05:30
|
|
|
|
2015-03-18 16:07:44 +05:30
|
|
|
for _, name := range localeNames {
|
2016-12-22 23:42:23 +05:30
|
|
|
localFiles[name], err = options.Locale(name)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(4, "Failed to load %s locale file. %v", name, err)
|
|
|
|
}
|
2015-03-18 16:07:44 +05:30
|
|
|
}
|
2016-12-22 23:42:23 +05:30
|
|
|
|
2014-08-07 02:51:24 +05:30
|
|
|
m.Use(i18n.I18n(i18n.Options{
|
2016-12-22 23:42:23 +05:30
|
|
|
SubURL: setting.AppSubURL,
|
|
|
|
Files: localFiles,
|
|
|
|
Langs: setting.Langs,
|
|
|
|
Names: setting.Names,
|
|
|
|
DefaultLang: "en-US",
|
|
|
|
Redirect: true,
|
2014-07-26 09:54:27 +05:30
|
|
|
}))
|
2014-08-01 02:55:34 +05:30
|
|
|
m.Use(cache.Cacher(cache.Options{
|
2014-12-31 14:38:57 +05:30
|
|
|
Adapter: setting.CacheAdapter,
|
|
|
|
AdapterConfig: setting.CacheConn,
|
2016-08-11 18:29:11 +05:30
|
|
|
Interval: setting.CacheInterval,
|
2014-08-01 02:55:34 +05:30
|
|
|
}))
|
2014-09-20 05:41:34 +05:30
|
|
|
m.Use(captcha.Captchaer(captcha.Options{
|
2016-11-27 15:44:25 +05:30
|
|
|
SubURL: setting.AppSubURL,
|
2014-09-20 05:41:34 +05:30
|
|
|
}))
|
2014-12-28 18:10:35 +05:30
|
|
|
m.Use(session.Sessioner(setting.SessionConfig))
|
2014-12-21 09:21:16 +05:30
|
|
|
m.Use(csrf.Csrfer(csrf.Options{
|
2014-09-21 21:52:50 +05:30
|
|
|
Secret: setting.SecretKey,
|
2016-03-13 07:26:03 +05:30
|
|
|
Cookie: setting.CSRFCookieName,
|
2014-09-21 21:52:50 +05:30
|
|
|
SetCookie: true,
|
|
|
|
Header: "X-Csrf-Token",
|
2016-11-27 15:44:25 +05:30
|
|
|
CookiePath: setting.AppSubURL,
|
2014-08-01 02:55:34 +05:30
|
|
|
}))
|
2014-08-07 02:51:24 +05:30
|
|
|
m.Use(toolbox.Toolboxer(m, toolbox.Options{
|
|
|
|
HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{
|
2016-11-14 21:33:37 +05:30
|
|
|
{
|
2014-08-07 02:51:24 +05:30
|
|
|
Desc: "Database connection",
|
|
|
|
Func: models.Ping,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}))
|
2016-03-11 22:26:52 +05:30
|
|
|
m.Use(context.Contexter())
|
2014-07-26 09:54:27 +05:30
|
|
|
return m
|
2014-03-19 15:01:38 +05:30
|
|
|
}
|
|
|
|
|
2016-05-13 00:02:28 +05:30
|
|
|
func runWeb(ctx *cli.Context) error {
|
2015-02-05 15:42:37 +05:30
|
|
|
if ctx.IsSet("config") {
|
|
|
|
setting.CustomConf = ctx.String("config")
|
|
|
|
}
|
2017-01-09 17:24:57 +05:30
|
|
|
|
|
|
|
if ctx.IsSet("pid") {
|
|
|
|
setting.CustomPID = ctx.String("pid")
|
|
|
|
}
|
|
|
|
|
2014-03-30 03:20:51 +05:30
|
|
|
routers.GlobalInit()
|
2014-02-19 15:20:53 +05:30
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
m := newMacaron()
|
2014-03-15 16:31:50 +05:30
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
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})
|
2014-03-22 23:14:02 +05:30
|
|
|
|
2014-05-05 12:12:52 +05:30
|
|
|
bindIgnErr := binding.BindIgnErr
|
2014-04-11 00:07:43 +05:30
|
|
|
|
2016-12-31 00:19:54 +05:30
|
|
|
m.Use(user.GetNotificationCount)
|
|
|
|
|
2016-03-06 04:38:42 +05:30
|
|
|
// FIXME: not all routes need go through same middlewares.
|
|
|
|
// Especially some AJAX requests, we can reduce middleware number to improve performance.
|
2014-02-19 15:20:53 +05:30
|
|
|
// Routers.
|
2014-03-24 21:28:46 +05:30
|
|
|
m.Get("/", ignSignIn, routers.Home)
|
2016-03-12 02:03:12 +05:30
|
|
|
m.Group("/explore", func() {
|
2016-03-12 03:42:37 +05:30
|
|
|
m.Get("", func(ctx *context.Context) {
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/explore/repos")
|
2016-03-12 03:42:37 +05:30
|
|
|
})
|
2016-03-12 02:03:12 +05:30
|
|
|
m.Get("/repos", routers.ExploreRepos)
|
|
|
|
m.Get("/users", routers.ExploreUsers)
|
2016-09-01 18:38:05 +05:30
|
|
|
m.Get("/organizations", routers.ExploreOrganizations)
|
2016-03-12 02:03:12 +05:30
|
|
|
}, ignSignIn)
|
2015-09-03 01:48:09 +05:30
|
|
|
m.Combo("/install", routers.InstallInit).Get(routers.Install).
|
2015-02-01 23:11:03 +05:30
|
|
|
Post(bindIgnErr(auth.InstallForm{}), routers.InstallPost)
|
2015-09-24 23:50:07 +05:30
|
|
|
m.Get("/^:type(issues|pulls)$", reqSignIn, user.Issues)
|
2014-03-29 19:31:52 +05:30
|
|
|
|
2015-08-19 00:19:44 +05:30
|
|
|
// ***** START: User *****
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/user", func() {
|
|
|
|
m.Get("/login", user.SignIn)
|
|
|
|
m.Post("/login", bindIgnErr(auth.SignInForm{}), user.SignInPost)
|
|
|
|
m.Get("/sign_up", user.SignUp)
|
|
|
|
m.Post("/sign_up", bindIgnErr(auth.RegisterForm{}), user.SignUpPost)
|
|
|
|
m.Get("/reset_password", user.ResetPasswd)
|
|
|
|
m.Post("/reset_password", user.ResetPasswdPost)
|
2017-02-22 12:44:37 +05:30
|
|
|
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)
|
2017-01-16 07:44:29 +05:30
|
|
|
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)
|
|
|
|
})
|
2014-03-23 01:30:46 +05:30
|
|
|
}, reqSignOut)
|
2015-08-19 00:19:44 +05:30
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/user/settings", func() {
|
|
|
|
m.Get("", user.Settings)
|
|
|
|
m.Post("", bindIgnErr(auth.UpdateProfileForm{}), user.SettingsPost)
|
2016-08-07 22:57:38 +05:30
|
|
|
m.Combo("/avatar").Get(user.SettingsAvatar).
|
|
|
|
Post(binding.MultipartForm(auth.AvatarForm{}), user.SettingsAvatarPost)
|
2016-03-05 11:21:51 +05:30
|
|
|
m.Post("/avatar/delete", user.SettingsDeleteAvatar)
|
2015-09-10 21:10:34 +05:30
|
|
|
m.Combo("/email").Get(user.SettingsEmails).
|
|
|
|
Post(bindIgnErr(auth.AddEmailForm{}), user.SettingsEmailPost)
|
|
|
|
m.Post("/email/delete", user.DeleteEmail)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Get("/password", user.SettingsPassword)
|
|
|
|
m.Post("/password", bindIgnErr(auth.ChangePasswordForm{}), user.SettingsPasswordPost)
|
2015-08-20 14:41:29 +05:30
|
|
|
m.Combo("/ssh").Get(user.SettingsSSHKeys).
|
|
|
|
Post(bindIgnErr(auth.AddSSHKeyForm{}), user.SettingsSSHKeysPost)
|
|
|
|
m.Post("/ssh/delete", user.DeleteSSHKey)
|
2015-08-19 01:06:16 +05:30
|
|
|
m.Combo("/applications").Get(user.SettingsApplications).
|
|
|
|
Post(bindIgnErr(auth.NewAccessTokenForm{}), user.SettingsApplicationsPost)
|
|
|
|
m.Post("/applications/delete", user.SettingsDeleteApplication)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Route("/delete", "GET,POST", user.SettingsDelete)
|
2017-02-22 12:44:37 +05:30
|
|
|
m.Combo("/account_link").Get(user.SettingsAccountLinks).Post(user.SettingsDeleteAccountLink)
|
2017-01-16 07:44:29 +05:30
|
|
|
m.Group("/two_factor", func() {
|
|
|
|
m.Get("", user.SettingsTwoFactor)
|
|
|
|
m.Post("/regenerate_scratch", user.SettingsTwoFactorRegenerateScratch)
|
|
|
|
m.Post("/disable", user.SettingsTwoFactorDisable)
|
|
|
|
m.Get("/enroll", user.SettingsTwoFactorEnroll)
|
|
|
|
m.Post("/enroll", bindIgnErr(auth.TwoFactorAuthForm{}), user.SettingsTwoFactorEnrollPost)
|
|
|
|
})
|
2016-03-11 22:26:52 +05:30
|
|
|
}, reqSignIn, func(ctx *context.Context) {
|
2015-08-19 00:19:44 +05:30
|
|
|
ctx.Data["PageIsUserSettings"] = true
|
|
|
|
})
|
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/user", func() {
|
2014-07-26 09:54:27 +05:30
|
|
|
// r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Any("/activate", user.Activate)
|
2014-12-17 21:12:54 +05:30
|
|
|
m.Any("/activate_email", user.ActivateEmail)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Get("/email2user", user.Email2User)
|
|
|
|
m.Get("/forget_password", user.ForgotPasswd)
|
|
|
|
m.Post("/forget_password", user.ForgotPasswdPost)
|
|
|
|
m.Get("/logout", user.SignOut)
|
2014-03-23 01:30:46 +05:30
|
|
|
})
|
2015-08-19 00:19:44 +05:30
|
|
|
// ***** END: User *****
|
2014-03-10 14:24:52 +05:30
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
adminReq := context.Toggle(&context.ToggleOptions{SignInRequired: true, AdminRequired: true})
|
2014-03-22 23:14:02 +05:30
|
|
|
|
2015-08-26 19:15:51 +05:30
|
|
|
// ***** START: Admin *****
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/admin", func() {
|
2014-08-29 18:20:43 +05:30
|
|
|
m.Get("", adminReq, admin.Dashboard)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Get("/config", admin.Config)
|
2016-02-25 10:29:17 +05:30
|
|
|
m.Post("/config/test_mail", admin.SendTestMail)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Get("/monitor", admin.Monitor)
|
|
|
|
|
|
|
|
m.Group("/users", func() {
|
|
|
|
m.Get("", admin.Users)
|
2016-11-27 11:33:59 +05:30
|
|
|
m.Combo("/new").Get(admin.NewUser).Post(bindIgnErr(auth.AdminCreateUserForm{}), admin.NewUserPost)
|
2015-12-12 05:54:57 +05:30
|
|
|
m.Combo("/:userid").Get(admin.EditUser).Post(bindIgnErr(auth.AdminEditUserForm{}), admin.EditUserPost)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Post("/:userid/delete", admin.DeleteUser)
|
2014-08-29 18:20:43 +05:30
|
|
|
})
|
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/orgs", func() {
|
|
|
|
m.Get("", admin.Organizations)
|
2014-08-29 18:20:43 +05:30
|
|
|
})
|
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/repos", func() {
|
2015-12-06 04:09:29 +05:30
|
|
|
m.Get("", admin.Repos)
|
|
|
|
m.Post("/delete", admin.DeleteRepo)
|
2014-08-29 18:20:43 +05:30
|
|
|
})
|
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/auths", func() {
|
|
|
|
m.Get("", admin.Authentications)
|
2015-12-12 05:54:57 +05:30
|
|
|
m.Combo("/new").Get(admin.NewAuthSource).Post(bindIgnErr(auth.AuthenticationForm{}), admin.NewAuthSourcePost)
|
2015-09-11 21:33:08 +05:30
|
|
|
m.Combo("/:authid").Get(admin.EditAuthSource).
|
|
|
|
Post(bindIgnErr(auth.AuthenticationForm{}), admin.EditAuthSourcePost)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Post("/:authid/delete", admin.DeleteAuthSource)
|
2014-08-29 18:20:43 +05:30
|
|
|
})
|
2014-10-09 03:59:18 +05:30
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/notices", func() {
|
|
|
|
m.Get("", admin.Notices)
|
2015-12-05 11:39:14 +05:30
|
|
|
m.Post("/delete", admin.DeleteNotices)
|
2015-12-02 10:03:08 +05:30
|
|
|
m.Get("/empty", admin.EmptyNotices)
|
2014-10-09 03:59:18 +05:30
|
|
|
})
|
2014-05-03 08:18:14 +05:30
|
|
|
}, adminReq)
|
2015-08-26 19:15:51 +05:30
|
|
|
// ***** END: Admin *****
|
2014-05-03 08:18:14 +05:30
|
|
|
|
2015-08-11 15:24:00 +05:30
|
|
|
m.Group("", func() {
|
2015-12-21 17:54:11 +05:30
|
|
|
m.Group("/:username", func() {
|
|
|
|
m.Get("", user.Profile)
|
|
|
|
m.Get("/followers", user.Followers)
|
|
|
|
m.Get("/following", user.Following)
|
|
|
|
})
|
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
m.Get("/attachments/:uuid", func(ctx *context.Context) {
|
2015-08-11 20:54:40 +05:30
|
|
|
attach, err := models.GetAttachmentByUUID(ctx.Params(":uuid"))
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrAttachmentNotExist(err) {
|
|
|
|
ctx.Error(404)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "GetAttachmentByUUID", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-12 02:19:51 +05:30
|
|
|
fr, err := os.Open(attach.LocalPath())
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "Open", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer fr.Close()
|
|
|
|
|
2016-11-26 17:38:31 +05:30
|
|
|
if err = repo.ServeData(ctx, attach.Name, fr); err != nil {
|
2015-08-12 02:19:51 +05:30
|
|
|
ctx.Handle(500, "ServeData", err)
|
|
|
|
return
|
|
|
|
}
|
2015-08-11 20:54:40 +05:30
|
|
|
})
|
2017-01-15 20:27:00 +05:30
|
|
|
m.Post("/attachments", repo.UploadAttachment)
|
2015-08-11 15:24:00 +05:30
|
|
|
}, ignSignIn)
|
2014-07-12 10:25:19 +05:30
|
|
|
|
2015-12-21 17:54:11 +05:30
|
|
|
m.Group("/:username", func() {
|
|
|
|
m.Get("/action/:action", user.Action)
|
|
|
|
}, reqSignIn)
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
if macaron.Env == macaron.DEV {
|
2014-08-01 02:55:34 +05:30
|
|
|
m.Get("/template/*", dev.TemplatePreview)
|
2014-03-27 21:07:33 +05:30
|
|
|
}
|
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
reqRepoAdmin := context.RequireRepoAdmin()
|
|
|
|
reqRepoWriter := context.RequireRepoWriter()
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2015-08-26 19:15:51 +05:30
|
|
|
// ***** START: Organization *****
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/org", func() {
|
2017-02-14 17:46:00 +05:30
|
|
|
m.Group("", func() {
|
|
|
|
m.Get("/create", org.Create)
|
|
|
|
m.Post("/create", bindIgnErr(auth.CreateOrgForm{}), org.CreatePost)
|
|
|
|
}, func(ctx *context.Context) {
|
|
|
|
if !ctx.User.CanCreateOrganization() {
|
|
|
|
ctx.NotFound()
|
|
|
|
}
|
|
|
|
})
|
2014-10-25 04:13:17 +05:30
|
|
|
|
|
|
|
m.Group("/:org", func() {
|
|
|
|
m.Get("/dashboard", user.Dashboard)
|
2015-09-24 23:50:07 +05:30
|
|
|
m.Get("/^:type(issues|pulls)$", user.Issues)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Get("/members", org.Members)
|
|
|
|
m.Get("/members/action/:action", org.MembersAction)
|
|
|
|
|
|
|
|
m.Get("/teams", org.Teams)
|
2016-03-11 22:26:52 +05:30
|
|
|
}, context.OrgAssignment(true))
|
2016-01-31 18:58:42 +05:30
|
|
|
|
|
|
|
m.Group("/:org", func() {
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Get("/teams/:team", org.TeamMembers)
|
|
|
|
m.Get("/teams/:team/repositories", org.TeamRepositories)
|
2015-11-22 12:02:09 +05:30
|
|
|
m.Route("/teams/:team/action/:action", "GET,POST", org.TeamsAction)
|
|
|
|
m.Route("/teams/:team/action/repo/:action", "GET,POST", org.TeamsRepoAction)
|
2016-03-11 22:26:52 +05:30
|
|
|
}, context.OrgAssignment(true, false, true))
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
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() {
|
2015-08-26 19:15:51 +05:30
|
|
|
m.Combo("").Get(org.Settings).
|
|
|
|
Post(bindIgnErr(auth.UpdateOrgSettingForm{}), org.SettingsPost)
|
2016-08-07 22:57:38 +05:30
|
|
|
m.Post("/avatar", binding.MultipartForm(auth.AvatarForm{}), org.SettingsAvatar)
|
2016-03-06 22:06:30 +05:30
|
|
|
m.Post("/avatar/delete", org.SettingsDeleteAvatar)
|
2015-08-26 19:15:51 +05:30
|
|
|
|
|
|
|
m.Group("/hooks", func() {
|
|
|
|
m.Get("", org.Webhooks)
|
|
|
|
m.Post("/delete", org.DeleteWebhook)
|
2015-08-26 22:00:06 +05:30
|
|
|
m.Get("/:type/new", repo.WebhooksNew)
|
|
|
|
m.Post("/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
|
|
|
|
m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
|
2015-08-26 22:34:23 +05:30
|
|
|
m.Get("/:id", repo.WebHooksEdit)
|
|
|
|
m.Post("/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
|
|
|
|
m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
|
2015-08-26 19:15:51 +05:30
|
|
|
})
|
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Route("/delete", "GET,POST", org.SettingsDelete)
|
2014-08-14 11:42:21 +05:30
|
|
|
})
|
2014-08-15 15:59:41 +05:30
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Route("/invitations/new", "GET,POST", org.Invitation)
|
2016-03-11 22:26:52 +05:30
|
|
|
}, context.OrgAssignment(true, true))
|
2014-07-26 11:58:04 +05:30
|
|
|
}, reqSignIn)
|
2015-08-26 19:15:51 +05:30
|
|
|
// ***** END: Organization *****
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2015-08-26 19:15:51 +05:30
|
|
|
// ***** START: Repository *****
|
2014-10-25 04:13:17 +05:30
|
|
|
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)
|
2015-08-08 14:40:34 +05:30
|
|
|
m.Combo("/fork/:repoid").Get(repo.Fork).
|
|
|
|
Post(bindIgnErr(auth.CreateRepoForm{}), repo.ForkPost)
|
2014-07-27 09:23:16 +05:30
|
|
|
}, reqSignIn)
|
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/:username/:reponame", func() {
|
|
|
|
m.Group("/settings", func() {
|
2015-08-26 19:15:51 +05:30
|
|
|
m.Combo("").Get(repo.Settings).
|
|
|
|
Post(bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost)
|
2016-03-06 04:38:42 +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)
|
|
|
|
})
|
2017-02-21 20:32:10 +05:30
|
|
|
m.Group("/branches", func() {
|
|
|
|
m.Combo("").Get(repo.ProtectedBranch).Post(repo.ProtectedBranchPost)
|
|
|
|
m.Post("/can_push", repo.ChangeProtectedBranch)
|
|
|
|
m.Post("/delete", repo.DeleteProtectedBranch)
|
|
|
|
})
|
2015-08-26 19:15:51 +05:30
|
|
|
|
|
|
|
m.Group("/hooks", func() {
|
|
|
|
m.Get("", repo.Webhooks)
|
|
|
|
m.Post("/delete", repo.DeleteWebhook)
|
2015-08-26 22:00:06 +05:30
|
|
|
m.Get("/:type/new", repo.WebhooksNew)
|
|
|
|
m.Post("/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
|
|
|
|
m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
|
2015-08-26 22:34:23 +05:30
|
|
|
m.Get("/:id", repo.WebHooksEdit)
|
2015-12-05 23:54:13 +05:30
|
|
|
m.Post("/:id/test", repo.TestWebhook)
|
2015-08-26 22:34:23 +05:30
|
|
|
m.Post("/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
|
|
|
|
m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
|
|
|
|
|
|
|
|
m.Group("/git", func() {
|
|
|
|
m.Get("", repo.GitHooks)
|
|
|
|
m.Combo("/:name").Get(repo.GitHooksEdit).
|
|
|
|
Post(repo.GitHooksEditPost)
|
2016-03-11 22:26:52 +05:30
|
|
|
}, context.GitHookService())
|
2015-08-26 19:15:51 +05:30
|
|
|
})
|
2015-08-26 22:00:06 +05:30
|
|
|
|
2015-08-06 20:18:11 +05:30
|
|
|
m.Group("/keys", func() {
|
2015-08-26 19:15:51 +05:30
|
|
|
m.Combo("").Get(repo.DeployKeys).
|
|
|
|
Post(bindIgnErr(auth.AddSSHKeyForm{}), repo.DeployKeysPost)
|
2015-08-06 20:18:11 +05:30
|
|
|
m.Post("/delete", repo.DeleteDeployKey)
|
|
|
|
})
|
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
}, func(ctx *context.Context) {
|
2015-11-16 21:46:52 +05:30
|
|
|
ctx.Data["PageIsSettings"] = true
|
2017-02-04 21:23:46 +05:30
|
|
|
}, context.UnitTypes())
|
2016-03-11 22:26:52 +05:30
|
|
|
}, reqSignIn, context.RepoAssignment(), reqRepoAdmin, context.RepoRef())
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
m.Get("/:username/:reponame/action/:action", reqSignIn, context.RepoAssignment(), repo.Action)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/:username/:reponame", func() {
|
2016-08-09 22:09:55 +05:30
|
|
|
// 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.
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/issues", func() {
|
2016-08-09 22:09:55 +05:30
|
|
|
m.Combo("/new", repo.MustEnableIssues).Get(context.RepoRef(), repo.NewIssue).
|
2015-08-09 12:53:02 +05:30
|
|
|
Post(bindIgnErr(auth.CreateIssueForm{}), repo.NewIssuePost)
|
2015-08-13 13:37:11 +05:30
|
|
|
|
|
|
|
m.Group("/:index", func() {
|
|
|
|
m.Post("/label", repo.UpdateIssueLabel)
|
|
|
|
m.Post("/milestone", repo.UpdateIssueMilestone)
|
2015-08-14 22:12:43 +05:30
|
|
|
m.Post("/assignee", repo.UpdateIssueAssignee)
|
2016-03-06 07:15:23 +05:30
|
|
|
}, reqRepoWriter)
|
2015-08-20 02:01:28 +05:30
|
|
|
|
|
|
|
m.Group("/:index", func() {
|
|
|
|
m.Post("/title", repo.UpdateIssueTitle)
|
|
|
|
m.Post("/content", repo.UpdateIssueContent)
|
2016-08-11 18:52:56 +05:30
|
|
|
m.Combo("/comments").Post(bindIgnErr(auth.CreateCommentForm{}), repo.NewComment)
|
2015-08-20 02:01:28 +05:30
|
|
|
})
|
2016-08-09 22:09:55 +05:30
|
|
|
})
|
2016-07-26 00:18:17 +05:30
|
|
|
m.Group("/comments/:id", func() {
|
|
|
|
m.Post("", repo.UpdateCommentContent)
|
|
|
|
m.Post("/delete", repo.DeleteComment)
|
|
|
|
})
|
2015-07-24 14:12:47 +05:30
|
|
|
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)
|
2016-08-30 07:32:49 +05:30
|
|
|
m.Post("/initialize", bindIgnErr(auth.InitializeLabelsForm{}), repo.InitializeLabels)
|
2016-08-30 18:00:47 +05:30
|
|
|
}, reqRepoWriter, context.RepoRef())
|
2015-07-24 14:12:47 +05:30
|
|
|
m.Group("/milestones", func() {
|
2015-12-03 07:26:26 +05:30
|
|
|
m.Combo("/new").Get(repo.NewMilestone).
|
|
|
|
Post(bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
|
2015-08-06 20:55:35 +05:30
|
|
|
m.Get("/:id/edit", repo.EditMilestone)
|
|
|
|
m.Post("/:id/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.EditMilestonePost)
|
|
|
|
m.Get("/:id/:action", repo.ChangeMilestonStatus)
|
2015-08-05 17:53:08 +05:30
|
|
|
m.Post("/delete", repo.DeleteMilestone)
|
2016-08-30 18:00:47 +05:30
|
|
|
}, reqRepoWriter, context.RepoRef())
|
2014-12-11 03:07:54 +05:30
|
|
|
m.Group("/releases", func() {
|
|
|
|
m.Get("/new", repo.NewRelease)
|
|
|
|
m.Post("/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost)
|
2015-11-20 13:08:41 +05:30
|
|
|
m.Post("/delete", repo.DeleteRelease)
|
2016-03-11 22:26:52 +05:30
|
|
|
}, reqRepoWriter, context.RepoRef())
|
2016-09-03 15:30:59 +05:30
|
|
|
m.Group("/releases", func() {
|
|
|
|
m.Get("/edit/*", repo.EditRelease)
|
|
|
|
m.Post("/edit/*", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost)
|
|
|
|
}, reqRepoWriter, func(ctx *context.Context) {
|
|
|
|
var err error
|
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(ctx.Repo.Repository.DefaultBranch)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetBranchCommit", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.CommitsCount, err = ctx.Repo.Commit.CommitsCount()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "CommitsCount", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["CommitsCount"] = ctx.Repo.CommitsCount
|
|
|
|
})
|
|
|
|
|
2016-11-05 21:28:53 +05:30
|
|
|
m.Combo("/compare/*", repo.MustAllowPulls, repo.SetEditorconfigIfExists).
|
|
|
|
Get(repo.CompareAndPullRequest).
|
2015-09-02 04:37:02 +05:30
|
|
|
Post(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost)
|
2016-08-11 18:18:08 +05:30
|
|
|
|
|
|
|
m.Group("", func() {
|
|
|
|
m.Combo("/_edit/*").Get(repo.EditFile).
|
|
|
|
Post(bindIgnErr(auth.EditRepoFileForm{}), repo.EditFilePost)
|
|
|
|
m.Combo("/_new/*").Get(repo.NewFile).
|
|
|
|
Post(bindIgnErr(auth.EditRepoFileForm{}), repo.NewFilePost)
|
2016-08-15 12:08:35 +05:30
|
|
|
m.Post("/_preview/*", bindIgnErr(auth.EditPreviewDiffForm{}), repo.DiffPreviewPost)
|
2016-08-28 14:11:44 +05:30
|
|
|
m.Combo("/_delete/*").Get(repo.DeleteFile).
|
|
|
|
Post(bindIgnErr(auth.DeleteRepoFileForm{}), repo.DeleteFilePost)
|
2016-08-30 17:37:50 +05:30
|
|
|
|
|
|
|
m.Group("", func() {
|
|
|
|
m.Combo("/_upload/*").Get(repo.UploadFile).
|
|
|
|
Post(bindIgnErr(auth.UploadRepoFileForm{}), repo.UploadFilePost)
|
|
|
|
m.Post("/upload-file", repo.UploadFileToServer)
|
|
|
|
m.Post("/upload-remove", bindIgnErr(auth.RemoveUploadFileForm{}), repo.RemoveUploadFileFromServer)
|
|
|
|
}, func(ctx *context.Context) {
|
|
|
|
if !setting.Repository.Upload.Enabled {
|
|
|
|
ctx.Handle(404, "", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
2016-08-15 12:08:35 +05:30
|
|
|
}, reqRepoWriter, context.RepoRef(), func(ctx *context.Context) {
|
2016-08-28 17:26:41 +05:30
|
|
|
if !ctx.Repo.Repository.CanEnableEditor() || ctx.Repo.IsViewCommit {
|
2016-08-15 12:08:35 +05:30
|
|
|
ctx.Handle(404, "", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
2017-02-04 21:23:46 +05:30
|
|
|
}, reqSignIn, context.RepoAssignment(), repo.MustBeNotBare, context.UnitTypes())
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/:username/:reponame", func() {
|
2015-11-16 20:44:12 +05:30
|
|
|
m.Group("", func() {
|
|
|
|
m.Get("/releases", repo.Releases)
|
|
|
|
m.Get("/^:type(issues|pulls)$", repo.RetrieveLabels, repo.Issues)
|
2015-12-04 01:01:31 +05:30
|
|
|
m.Get("/^:type(issues|pulls)$/:index", repo.ViewIssue)
|
2015-11-16 20:44:12 +05:30
|
|
|
m.Get("/labels/", repo.RetrieveLabels, repo.Labels)
|
|
|
|
m.Get("/milestones", repo.Milestones)
|
2016-03-11 22:26:52 +05:30
|
|
|
}, context.RepoRef())
|
2015-11-16 20:44:12 +05:30
|
|
|
|
2015-11-26 06:40:25 +05:30
|
|
|
// m.Get("/branches", repo.Branches)
|
2016-12-25 20:57:25 +05:30
|
|
|
m.Post("/branches/:name/delete", reqSignIn, reqRepoWriter, repo.DeleteBranchPost)
|
2015-11-26 06:40:25 +05:30
|
|
|
|
|
|
|
m.Group("/wiki", func() {
|
|
|
|
m.Get("/?:page", repo.Wiki)
|
2015-11-27 12:20:38 +05:30
|
|
|
m.Get("/_pages", repo.WikiPages)
|
2015-11-26 06:40:25 +05:30
|
|
|
|
|
|
|
m.Group("", func() {
|
2015-11-27 04:03:45 +05:30
|
|
|
m.Combo("/_new").Get(repo.NewWiki).
|
|
|
|
Post(bindIgnErr(auth.NewWikiForm{}), repo.NewWikiPost)
|
2015-11-27 12:20:38 +05:30
|
|
|
m.Combo("/:page/_edit").Get(repo.EditWiki).
|
|
|
|
Post(bindIgnErr(auth.NewWikiForm{}), repo.EditWikiPost)
|
2016-03-05 00:02:17 +05:30
|
|
|
m.Post("/:page/delete", repo.DeleteWikiPagePost)
|
2016-03-06 07:15:23 +05:30
|
|
|
}, reqSignIn, reqRepoWriter)
|
2016-03-11 22:26:52 +05:30
|
|
|
}, repo.MustEnableWiki, context.RepoRef())
|
2015-11-26 06:40:25 +05:30
|
|
|
|
2017-02-14 06:43:59 +05:30
|
|
|
m.Group("/wiki", func() {
|
|
|
|
m.Get("/raw/*", repo.WikiRaw)
|
|
|
|
m.Get("/*", repo.WikiRaw)
|
|
|
|
}, repo.MustEnableWiki)
|
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Get("/archive/*", repo.Download)
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2015-09-02 13:38:05 +05:30
|
|
|
m.Group("/pulls/:index", func() {
|
2016-03-11 22:26:52 +05:30
|
|
|
m.Get("/commits", context.RepoRef(), repo.ViewPullCommits)
|
2016-11-13 08:24:04 +05:30
|
|
|
m.Get("/files", context.RepoRef(), repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.ViewPullFiles)
|
2016-03-06 07:15:23 +05:30
|
|
|
m.Post("/merge", reqRepoWriter, repo.MergePullRequest)
|
2016-02-20 01:18:32 +05:30
|
|
|
}, repo.MustAllowPulls)
|
2015-09-02 13:38:05 +05:30
|
|
|
|
2014-11-07 08:36:41 +05:30
|
|
|
m.Group("", func() {
|
2016-11-05 21:28:53 +05:30
|
|
|
m.Get("/src/*", repo.SetEditorconfigIfExists, repo.Home)
|
2014-11-07 08:36:41 +05:30
|
|
|
m.Get("/raw/*", repo.SingleDownload)
|
|
|
|
m.Get("/commits/*", repo.RefCommits)
|
2016-12-29 05:14:32 +05:30
|
|
|
m.Get("/graph", repo.Graph)
|
2016-11-13 08:24:04 +05:30
|
|
|
m.Get("/commit/:sha([a-f0-9]{7,40})$", repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.Diff)
|
2015-10-02 14:18:31 +05:30
|
|
|
m.Get("/forks", repo.Forks)
|
2016-03-11 22:26:52 +05:30
|
|
|
}, context.RepoRef())
|
2016-11-03 14:02:55 +05:30
|
|
|
m.Get("/commit/:sha([a-f0-9]{7,40})\\.:ext(patch|diff)", repo.RawDiff)
|
2014-11-08 01:16:13 +05:30
|
|
|
|
2016-11-13 08:24:04 +05:30
|
|
|
m.Get("/compare/:before([a-z0-9]{40})\\.\\.\\.:after([a-z0-9]{40})", repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.CompareDiff)
|
2017-02-04 21:23:46 +05:30
|
|
|
}, ignSignIn, context.RepoAssignment(), repo.MustBeNotBare, context.UnitTypes())
|
2016-01-07 08:37:17 +05:30
|
|
|
m.Group("/:username/:reponame", func() {
|
|
|
|
m.Get("/stars", repo.Stars)
|
|
|
|
m.Get("/watchers", repo.Watchers)
|
2017-02-08 19:43:48 +05:30
|
|
|
}, ignSignIn, context.RepoAssignment(), context.RepoRef(), context.UnitTypes())
|
2014-03-23 01:30:46 +05:30
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/:username", func() {
|
2015-07-31 11:55:12 +05:30
|
|
|
m.Group("/:reponame", func() {
|
2016-11-05 21:28:53 +05:30
|
|
|
m.Get("", repo.SetEditorconfigIfExists, repo.Home)
|
|
|
|
m.Get("\\.git$", repo.SetEditorconfigIfExists, repo.Home)
|
2017-02-04 21:23:46 +05:30
|
|
|
}, ignSignIn, context.RepoAssignment(true), context.RepoRef(), context.UnitTypes())
|
2015-07-31 11:55:12 +05:30
|
|
|
|
2015-08-07 22:34:12 +05:30
|
|
|
m.Group("/:reponame", func() {
|
2016-12-26 06:46:37 +05:30
|
|
|
m.Group("/info/lfs", func() {
|
|
|
|
m.Post("/objects/batch", lfs.BatchHandler)
|
|
|
|
m.Get("/objects/:oid/:filename", lfs.ObjectOidHandler)
|
|
|
|
m.Any("/objects/:oid", lfs.ObjectOidHandler)
|
|
|
|
m.Post("/objects", lfs.PostHandler)
|
|
|
|
}, ignSignInAndCsrf)
|
2015-10-24 13:06:47 +05:30
|
|
|
m.Any("/*", ignSignInAndCsrf, repo.HTTP)
|
|
|
|
m.Head("/tasks/trigger", repo.TriggerTask)
|
2015-08-07 22:34:12 +05:30
|
|
|
})
|
2014-09-15 19:39:17 +05:30
|
|
|
})
|
2015-08-26 19:15:51 +05:30
|
|
|
// ***** END: Repository *****
|
2014-03-21 22:18:26 +05:30
|
|
|
|
2017-01-12 09:57:09 +05:30
|
|
|
m.Group("/notifications", func() {
|
|
|
|
m.Get("", user.Notifications)
|
|
|
|
m.Post("/status", user.NotificationStatusPost)
|
|
|
|
}, reqSignIn)
|
2016-12-31 00:19:54 +05:30
|
|
|
|
2016-03-14 04:19:16 +05:30
|
|
|
m.Group("/api", func() {
|
|
|
|
apiv1.RegisterRoutes(m)
|
|
|
|
}, ignSignIn)
|
|
|
|
|
2014-09-22 05:09:10 +05:30
|
|
|
// robots.txt
|
2016-03-11 22:26:52 +05:30
|
|
|
m.Get("/robots.txt", func(ctx *context.Context) {
|
2014-09-22 05:09:10 +05:30
|
|
|
if setting.HasRobotsTxt {
|
2015-03-18 10:59:54 +05:30
|
|
|
ctx.ServeFileContent(path.Join(setting.CustomPath, "robots.txt"))
|
2014-09-22 05:09:10 +05:30
|
|
|
} else {
|
|
|
|
ctx.Error(404)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2014-03-23 15:57:01 +05:30
|
|
|
// Not found handler.
|
2014-03-23 11:18:01 +05:30
|
|
|
m.NotFound(routers.NotFound)
|
|
|
|
|
2015-02-01 23:11:03 +05:30
|
|
|
// Flag for port number in case first time run conflict.
|
|
|
|
if ctx.IsSet("port") {
|
2016-11-27 15:44:25 +05:30
|
|
|
setting.AppURL = strings.Replace(setting.AppURL, setting.HTTPPort, ctx.String("port"), 1)
|
2016-08-12 03:25:10 +05:30
|
|
|
setting.HTTPPort = ctx.String("port")
|
2015-02-01 23:11:03 +05:30
|
|
|
}
|
|
|
|
|
2016-08-12 03:25:10 +05:30
|
|
|
var listenAddr string
|
2016-11-27 15:44:25 +05:30
|
|
|
if setting.Protocol == setting.UnixSocket {
|
2016-08-12 03:25:10 +05:30
|
|
|
listenAddr = fmt.Sprintf("%s", setting.HTTPAddr)
|
|
|
|
} else {
|
|
|
|
listenAddr = fmt.Sprintf("%s:%s", setting.HTTPAddr, setting.HTTPPort)
|
2016-08-12 03:16:33 +05:30
|
|
|
}
|
2016-11-27 15:44:25 +05:30
|
|
|
log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubURL)
|
2016-08-12 03:25:10 +05:30
|
|
|
|
2016-12-26 06:46:37 +05:30
|
|
|
if setting.LFS.StartServer {
|
|
|
|
log.Info("LFS server enabled")
|
|
|
|
}
|
|
|
|
|
2017-02-05 18:36:25 +05:30
|
|
|
if setting.EnablePprof {
|
|
|
|
go func() {
|
|
|
|
log.Info("%v", http.ListenAndServe("localhost:6060", nil))
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2016-08-12 03:25:10 +05:30
|
|
|
var err error
|
2014-05-26 05:41:25 +05:30
|
|
|
switch setting.Protocol {
|
|
|
|
case setting.HTTP:
|
2017-02-22 12:44:37 +05:30
|
|
|
err = runHTTP(listenAddr, context2.ClearHandler(m))
|
2014-05-26 05:41:25 +05:30
|
|
|
case setting.HTTPS:
|
2017-02-22 12:44:37 +05:30
|
|
|
err = runHTTPS(listenAddr, setting.CertFile, setting.KeyFile, context2.ClearHandler(m))
|
2014-11-04 07:16:53 +05:30
|
|
|
case setting.FCGI:
|
2017-02-22 12:44:37 +05:30
|
|
|
err = fcgi.Serve(nil, context2.ClearHandler(m))
|
2016-11-27 15:44:25 +05:30
|
|
|
case setting.UnixSocket:
|
2017-02-05 17:57:37 +05:30
|
|
|
if err := os.Remove(listenAddr); err != nil && !os.IsNotExist(err) {
|
2017-01-30 01:43:57 +05:30
|
|
|
log.Fatal(4, "Failed to remove unix socket directory %s: %v", listenAddr, err)
|
2016-12-01 05:26:15 +05:30
|
|
|
}
|
2016-08-12 03:25:10 +05:30
|
|
|
var listener *net.UnixListener
|
2016-11-04 18:45:55 +05:30
|
|
|
listener, err = net.ListenUnix("unix", &net.UnixAddr{Name: listenAddr, Net: "unix"})
|
2016-08-12 03:16:33 +05:30
|
|
|
if err != nil {
|
2016-08-12 03:25:10 +05:30
|
|
|
break // Handle error after switch
|
2016-08-12 03:16:33 +05:30
|
|
|
}
|
2016-08-12 03:25:10 +05:30
|
|
|
|
|
|
|
// FIXME: add proper implementation of signal capture on all protocols
|
2016-08-12 03:16:33 +05:30
|
|
|
// execute this on SIGTERM or SIGINT: listener.Close()
|
2016-08-12 03:25:10 +05:30
|
|
|
if err = os.Chmod(listenAddr, os.FileMode(setting.UnixSocketPermission)); err != nil {
|
2016-08-12 03:16:33 +05:30
|
|
|
log.Fatal(4, "Failed to set permission of unix socket: %v", err)
|
|
|
|
}
|
2017-02-22 12:44:37 +05:30
|
|
|
err = http.Serve(listener, context2.ClearHandler(m))
|
2014-05-26 05:41:25 +05:30
|
|
|
default:
|
2014-07-26 09:54:27 +05:30
|
|
|
log.Fatal(4, "Invalid protocol: %s", setting.Protocol)
|
2014-05-26 05:41:25 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2017-01-30 01:43:57 +05:30
|
|
|
log.Fatal(4, "Failed to start server: %v", err)
|
2014-03-18 19:28:58 +05:30
|
|
|
}
|
2016-05-13 00:02:28 +05:30
|
|
|
|
|
|
|
return nil
|
2014-02-19 15:20:53 +05:30
|
|
|
}
|