2014-02-19 04:50:53 -05:00
|
|
|
// 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-01 21:21:46 -04:00
|
|
|
package cmd
|
2014-02-19 04:50:53 -05:00
|
|
|
|
|
|
|
import (
|
2014-12-11 05:14:41 -05:00
|
|
|
"crypto/tls"
|
2014-02-19 04:50:53 -05:00
|
|
|
"fmt"
|
2014-02-19 14:49:08 -05:00
|
|
|
"html/template"
|
2014-05-28 00:06:31 -04:00
|
|
|
"io/ioutil"
|
2014-02-19 04:50:53 -05:00
|
|
|
"net/http"
|
2014-11-03 20:46:53 -05:00
|
|
|
"net/http/fcgi"
|
2014-04-15 20:01:20 -04:00
|
|
|
"os"
|
2014-05-25 20:11:25 -04:00
|
|
|
"path"
|
2014-09-29 05:38:46 -04:00
|
|
|
"strings"
|
2014-02-19 04:50:53 -05:00
|
|
|
|
2014-07-26 00:24:27 -04:00
|
|
|
"github.com/Unknwon/macaron"
|
2014-02-19 04:50:53 -05:00
|
|
|
"github.com/codegangsta/cli"
|
2015-08-06 11:03:04 -04:00
|
|
|
"github.com/go-xorm/xorm"
|
2014-10-15 11:19:20 -04:00
|
|
|
"github.com/macaron-contrib/binding"
|
2014-07-31 17:25:34 -04:00
|
|
|
"github.com/macaron-contrib/cache"
|
|
|
|
"github.com/macaron-contrib/captcha"
|
|
|
|
"github.com/macaron-contrib/csrf"
|
2014-07-26 00:24:27 -04:00
|
|
|
"github.com/macaron-contrib/i18n"
|
2014-11-28 21:20:13 -05:00
|
|
|
"github.com/macaron-contrib/oauth2"
|
2014-07-26 00:24:27 -04:00
|
|
|
"github.com/macaron-contrib/session"
|
2014-08-06 17:21:24 -04:00
|
|
|
"github.com/macaron-contrib/toolbox"
|
2015-08-06 11:03:04 -04:00
|
|
|
"github.com/mcuadros/go-version"
|
2015-01-02 07:14:43 -05:00
|
|
|
"gopkg.in/ini.v1"
|
2014-02-19 04:50:53 -05:00
|
|
|
|
2014-12-12 20:30:32 -05:00
|
|
|
api "github.com/gogits/go-gogs-client"
|
|
|
|
|
2014-08-06 17:21:24 -04:00
|
|
|
"github.com/gogits/gogs/models"
|
2014-03-06 02:21:44 -05:00
|
|
|
"github.com/gogits/gogs/modules/auth"
|
2014-05-05 13:08:01 -04:00
|
|
|
"github.com/gogits/gogs/modules/auth/apiv1"
|
2014-03-23 06:13:23 -04:00
|
|
|
"github.com/gogits/gogs/modules/avatar"
|
2014-03-06 02:21:44 -05:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
2015-03-18 06:37:44 -04:00
|
|
|
"github.com/gogits/gogs/modules/bindata"
|
2014-03-07 17:22:15 -05:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-03-15 07:01:50 -04:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-05-25 20:11:25 -04:00
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-02-19 04:50:53 -05:00
|
|
|
"github.com/gogits/gogs/routers"
|
2014-03-20 07:50:26 -04:00
|
|
|
"github.com/gogits/gogs/routers/admin"
|
2014-03-29 10:01:52 -04:00
|
|
|
"github.com/gogits/gogs/routers/api/v1"
|
2014-03-19 12:50:44 -04:00
|
|
|
"github.com/gogits/gogs/routers/dev"
|
2014-07-26 02:28:04 -04:00
|
|
|
"github.com/gogits/gogs/routers/org"
|
2014-02-19 21:45:43 -05:00
|
|
|
"github.com/gogits/gogs/routers/repo"
|
2014-02-19 04:50:53 -05:00
|
|
|
"github.com/gogits/gogs/routers/user"
|
|
|
|
)
|
|
|
|
|
|
|
|
var CmdWeb = cli.Command{
|
|
|
|
Name: "web",
|
2014-05-01 21:21:46 -04:00
|
|
|
Usage: "Start Gogs web server",
|
2014-08-30 09:12:53 -04:00
|
|
|
Description: `Gogs web server is the only thing you need to run,
|
2014-03-24 07:36:38 -04:00
|
|
|
and it takes care of all the other things for you`,
|
2014-02-19 04:50:53 -05:00
|
|
|
Action: runWeb,
|
2015-02-01 12:41:03 -05:00
|
|
|
Flags: []cli.Flag{
|
|
|
|
cli.StringFlag{"port, p", "3000", "Temporary port number to prevent conflict", ""},
|
2015-02-08 21:26:14 -05:00
|
|
|
cli.StringFlag{"config, c", "custom/conf/app.ini", "Custom configuration file path", ""},
|
2015-02-01 12:41:03 -05:00
|
|
|
},
|
2014-02-19 04:50:53 -05:00
|
|
|
}
|
|
|
|
|
2014-12-15 01:49:59 -05:00
|
|
|
type VerChecker struct {
|
|
|
|
ImportPath string
|
|
|
|
Version func() string
|
|
|
|
Expected string
|
|
|
|
}
|
|
|
|
|
2014-08-24 09:09:05 -04:00
|
|
|
// checkVersion checks if binary matches the version of templates files.
|
2014-05-25 20:57:01 -04:00
|
|
|
func checkVersion() {
|
2014-09-28 01:38:25 -04:00
|
|
|
// Templates.
|
2015-08-01 23:36:18 -04:00
|
|
|
data, err := ioutil.ReadFile(setting.StaticRootPath + "/templates/.VERSION")
|
2014-05-25 20:57:01 -04:00
|
|
|
if err != nil {
|
2014-07-26 00:24:27 -04:00
|
|
|
log.Fatal(4, "Fail to read 'templates/.VERSION': %v", err)
|
2014-05-25 20:57:01 -04:00
|
|
|
}
|
|
|
|
if string(data) != setting.AppVer {
|
2014-07-26 00:24:27 -04:00
|
|
|
log.Fatal(4, "Binary and template file version does not match, did you forget to recompile?")
|
2014-05-25 20:57:01 -04:00
|
|
|
}
|
2014-09-28 01:38:25 -04:00
|
|
|
|
2014-10-06 19:12:52 -04:00
|
|
|
// Check dependency version.
|
2014-12-15 01:49:59 -05:00
|
|
|
checkers := []VerChecker{
|
2015-08-06 11:03:04 -04:00
|
|
|
{"github.com/go-xorm/xorm", func() string { return xorm.Version }, "0.4.3.0806"},
|
2015-03-18 01:29:54 -04:00
|
|
|
{"github.com/Unknwon/macaron", macaron.Version, "0.5.4"},
|
2015-07-24 09:02:49 -04:00
|
|
|
{"github.com/macaron-contrib/binding", binding.Version, "0.1.0"},
|
2015-01-17 02:17:53 -05:00
|
|
|
{"github.com/macaron-contrib/cache", cache.Version, "0.0.7"},
|
2015-02-04 19:14:09 -05:00
|
|
|
{"github.com/macaron-contrib/csrf", csrf.Version, "0.0.3"},
|
2015-03-18 06:37:44 -04:00
|
|
|
{"github.com/macaron-contrib/i18n", i18n.Version, "0.0.7"},
|
2015-01-17 02:17:53 -05:00
|
|
|
{"github.com/macaron-contrib/session", session.Version, "0.1.6"},
|
2015-07-28 06:01:27 -04:00
|
|
|
{"gopkg.in/ini.v1", ini.Version, "1.3.4"},
|
2014-10-10 06:15:27 -04:00
|
|
|
}
|
2014-12-15 01:49:59 -05:00
|
|
|
for _, c := range checkers {
|
2015-08-06 11:03:04 -04:00
|
|
|
if !version.Compare(c.Version(), c.Expected, ">=") {
|
|
|
|
log.Fatal(4, "Package '%s' version is too old(%s -> %s), did you forget to update?", c.ImportPath, c.Version(), c.Expected)
|
2014-12-15 01:49:59 -05:00
|
|
|
}
|
2014-09-28 01:38:25 -04:00
|
|
|
}
|
2014-05-25 20:57:01 -04:00
|
|
|
}
|
|
|
|
|
2014-07-26 00:24:27 -04:00
|
|
|
// newMacaron initializes Macaron instance.
|
|
|
|
func newMacaron() *macaron.Macaron {
|
|
|
|
m := macaron.New()
|
2015-07-31 03:03:30 -04:00
|
|
|
if !setting.DisableRouterLog {
|
|
|
|
m.Use(macaron.Logger())
|
|
|
|
}
|
2014-07-26 00:24:27 -04:00
|
|
|
m.Use(macaron.Recovery())
|
2014-10-13 18:04:07 -04:00
|
|
|
if setting.EnableGzip {
|
|
|
|
m.Use(macaron.Gziper())
|
|
|
|
}
|
2014-11-16 00:06:09 -05:00
|
|
|
if setting.Protocol == setting.FCGI {
|
|
|
|
m.SetURLPrefix(setting.AppSubUrl)
|
|
|
|
}
|
2014-09-15 17:23:58 -04:00
|
|
|
m.Use(macaron.Static(
|
|
|
|
path.Join(setting.StaticRootPath, "public"),
|
2014-07-26 00:24:27 -04:00
|
|
|
macaron.StaticOptions{
|
2015-07-31 03:03:30 -04:00
|
|
|
SkipLogging: setting.DisableRouterLog,
|
2014-07-26 00:24:27 -04:00
|
|
|
},
|
|
|
|
))
|
2014-11-21 10:58:08 -05:00
|
|
|
m.Use(macaron.Static(
|
|
|
|
setting.AvatarUploadPath,
|
|
|
|
macaron.StaticOptions{
|
|
|
|
Prefix: "avatars",
|
2015-07-31 03:03:30 -04:00
|
|
|
SkipLogging: setting.DisableRouterLog,
|
2014-11-21 10:58:08 -05:00
|
|
|
},
|
|
|
|
))
|
2014-07-26 00:24:27 -04:00
|
|
|
m.Use(macaron.Renderer(macaron.RenderOptions{
|
|
|
|
Directory: path.Join(setting.StaticRootPath, "templates"),
|
|
|
|
Funcs: []template.FuncMap{base.TemplateFuncs},
|
|
|
|
IndentJSON: macaron.Env != macaron.PROD,
|
|
|
|
}))
|
2015-03-18 06:37:44 -04:00
|
|
|
|
|
|
|
localeNames, err := bindata.AssetDir("conf/locale")
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(4, "Fail to list locale files: %v", err)
|
|
|
|
}
|
|
|
|
localFiles := make(map[string][]byte)
|
|
|
|
for _, name := range localeNames {
|
|
|
|
localFiles[name] = bindata.MustAsset("conf/locale/" + name)
|
|
|
|
}
|
2014-08-06 17:21:24 -04:00
|
|
|
m.Use(i18n.I18n(i18n.Options{
|
2014-10-09 18:35:09 -04:00
|
|
|
SubURL: setting.AppSubUrl,
|
2015-03-18 06:37:44 -04:00
|
|
|
Files: localFiles,
|
2014-10-09 18:35:09 -04:00
|
|
|
CustomDirectory: path.Join(setting.CustomPath, "conf/locale"),
|
|
|
|
Langs: setting.Langs,
|
|
|
|
Names: setting.Names,
|
|
|
|
Redirect: true,
|
2014-07-26 00:24:27 -04:00
|
|
|
}))
|
2014-07-31 17:25:34 -04:00
|
|
|
m.Use(cache.Cacher(cache.Options{
|
2014-12-31 04:08:57 -05:00
|
|
|
Adapter: setting.CacheAdapter,
|
|
|
|
AdapterConfig: setting.CacheConn,
|
|
|
|
Interval: setting.CacheInternal,
|
2014-07-31 17:25:34 -04:00
|
|
|
}))
|
2014-09-19 20:11:34 -04:00
|
|
|
m.Use(captcha.Captchaer(captcha.Options{
|
|
|
|
SubURL: setting.AppSubUrl,
|
|
|
|
}))
|
2014-12-28 07:40:35 -05:00
|
|
|
m.Use(session.Sessioner(setting.SessionConfig))
|
2014-12-20 22:51:16 -05:00
|
|
|
m.Use(csrf.Csrfer(csrf.Options{
|
2014-09-21 12:22:50 -04:00
|
|
|
Secret: setting.SecretKey,
|
|
|
|
SetCookie: true,
|
|
|
|
Header: "X-Csrf-Token",
|
|
|
|
CookiePath: setting.AppSubUrl,
|
2014-07-31 17:25:34 -04:00
|
|
|
}))
|
2014-08-06 17:21:24 -04:00
|
|
|
m.Use(toolbox.Toolboxer(m, toolbox.Options{
|
|
|
|
HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{
|
|
|
|
&toolbox.HealthCheckFuncDesc{
|
|
|
|
Desc: "Database connection",
|
|
|
|
Func: models.Ping,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}))
|
2014-11-28 21:20:13 -05:00
|
|
|
|
|
|
|
// OAuth 2.
|
2014-11-30 10:55:26 -05:00
|
|
|
if setting.OauthService != nil {
|
|
|
|
for _, info := range setting.OauthService.OauthInfos {
|
|
|
|
m.Use(oauth2.NewOAuth2Provider(info.Options, info.AuthUrl, info.TokenUrl))
|
|
|
|
}
|
2014-11-28 21:20:13 -05:00
|
|
|
}
|
2014-08-07 06:40:05 -04:00
|
|
|
m.Use(middleware.Contexter())
|
2014-07-26 00:24:27 -04:00
|
|
|
return m
|
2014-03-19 05:31:38 -04:00
|
|
|
}
|
|
|
|
|
2015-02-01 12:41:03 -05:00
|
|
|
func runWeb(ctx *cli.Context) {
|
2015-02-05 05:12:37 -05:00
|
|
|
if ctx.IsSet("config") {
|
|
|
|
setting.CustomConf = ctx.String("config")
|
|
|
|
}
|
2014-03-29 17:50:51 -04:00
|
|
|
routers.GlobalInit()
|
2015-02-14 17:01:33 -05:00
|
|
|
checkVersion()
|
2014-02-19 04:50:53 -05:00
|
|
|
|
2014-07-26 00:24:27 -04:00
|
|
|
m := newMacaron()
|
2014-03-15 07:01:50 -04:00
|
|
|
|
2014-03-22 13:44:02 -04:00
|
|
|
reqSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true})
|
2014-05-25 20:11:25 -04:00
|
|
|
ignSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: setting.Service.RequireSignInView})
|
2014-04-16 04:12:31 -04:00
|
|
|
ignSignInAndCsrf := middleware.Toggle(&middleware.ToggleOptions{DisableCsrf: true})
|
2014-03-22 13:44:02 -04:00
|
|
|
reqSignOut := middleware.Toggle(&middleware.ToggleOptions{SignOutRequire: true})
|
|
|
|
|
2014-11-13 12:57:00 -05:00
|
|
|
bind := binding.Bind
|
2014-05-05 02:42:52 -04:00
|
|
|
bindIgnErr := binding.BindIgnErr
|
2014-04-10 14:37:43 -04:00
|
|
|
|
2014-02-19 04:50:53 -05:00
|
|
|
// Routers.
|
2014-03-24 11:58:46 -04:00
|
|
|
m.Get("/", ignSignIn, routers.Home)
|
2014-09-15 10:09:17 -04:00
|
|
|
m.Get("/explore", ignSignIn, routers.Explore)
|
2015-02-01 12:41:03 -05:00
|
|
|
m.Combo("/install", routers.InstallInit).
|
|
|
|
Get(routers.Install).
|
|
|
|
Post(bindIgnErr(auth.InstallForm{}), routers.InstallPost)
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("", func() {
|
|
|
|
m.Get("/pulls", user.Pulls)
|
|
|
|
m.Get("/issues", user.Issues)
|
2014-06-05 22:07:35 -04:00
|
|
|
}, reqSignIn)
|
2014-03-29 10:01:52 -04:00
|
|
|
|
2015-08-18 16:58:45 -04:00
|
|
|
// ***** START: API *****
|
2014-11-13 12:57:00 -05:00
|
|
|
// FIXME: custom form error response.
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/api", func() {
|
|
|
|
m.Group("/v1", func() {
|
2014-05-21 21:37:13 -04:00
|
|
|
// Miscellaneous.
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Post("/markdown", bindIgnErr(apiv1.MarkdownForm{}), v1.Markdown)
|
|
|
|
m.Post("/markdown/raw", v1.MarkdownRaw)
|
2014-05-21 21:37:13 -04:00
|
|
|
|
|
|
|
// Users.
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/users", func() {
|
|
|
|
m.Get("/search", v1.SearchUsers)
|
2014-11-18 11:07:16 -05:00
|
|
|
|
|
|
|
m.Group("/:username", func() {
|
|
|
|
m.Get("", v1.GetUserInfo)
|
|
|
|
|
|
|
|
m.Group("/tokens", func() {
|
2015-08-18 17:47:45 -04:00
|
|
|
m.Combo("").Get(v1.ListAccessTokens).
|
|
|
|
Post(bind(v1.CreateAccessTokenForm{}), v1.CreateAccessToken)
|
2014-11-18 11:07:16 -05:00
|
|
|
}, middleware.ApiReqBasicAuth())
|
|
|
|
})
|
2014-08-29 05:31:53 -04:00
|
|
|
})
|
2014-07-12 00:55:19 -04:00
|
|
|
|
|
|
|
// Repositories.
|
2015-08-13 04:07:11 -04:00
|
|
|
m.Combo("/user/repos", middleware.ApiReqToken()).Get(v1.ListMyRepos).
|
|
|
|
Post(bind(api.CreateRepoOption{}), v1.CreateRepo)
|
2014-12-12 20:30:32 -05:00
|
|
|
m.Post("/org/:org/repos", middleware.ApiReqToken(), bind(api.CreateRepoOption{}), v1.CreateOrgRepo)
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/repos", func() {
|
|
|
|
m.Get("/search", v1.SearchRepos)
|
2014-12-12 20:30:32 -05:00
|
|
|
m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), v1.MigrateRepo)
|
2014-11-13 02:32:18 -05:00
|
|
|
|
|
|
|
m.Group("/:username/:reponame", func() {
|
2015-08-13 04:07:11 -04:00
|
|
|
m.Combo("/hooks").Get(v1.ListRepoHooks).
|
|
|
|
Post(bind(api.CreateHookOption{}), v1.CreateRepoHook)
|
2014-12-12 20:30:32 -05:00
|
|
|
m.Patch("/hooks/:id:int", bind(api.EditHookOption{}), v1.EditRepoHook)
|
2014-11-16 21:32:26 -05:00
|
|
|
m.Get("/raw/*", middleware.RepoRef(), v1.GetRepoRawFile)
|
2014-11-13 12:57:00 -05:00
|
|
|
}, middleware.ApiRepoAssignment(), middleware.ApiReqToken())
|
2014-08-29 05:31:53 -04:00
|
|
|
})
|
2014-05-21 21:37:13 -04:00
|
|
|
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Any("/*", func(ctx *middleware.Context) {
|
2015-02-22 09:49:25 -05:00
|
|
|
ctx.HandleAPI(404, "Page not found")
|
2014-05-21 21:37:13 -04:00
|
|
|
})
|
2014-05-05 13:08:01 -04:00
|
|
|
})
|
2015-07-15 07:17:57 -04:00
|
|
|
}, ignSignIn)
|
2015-08-18 16:58:45 -04:00
|
|
|
// ***** END: API *****
|
2014-03-22 16:00:46 -04:00
|
|
|
|
2015-08-18 14:49:44 -04:00
|
|
|
// ***** START: User *****
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/user", func() {
|
|
|
|
m.Get("/login", user.SignIn)
|
|
|
|
m.Post("/login", bindIgnErr(auth.SignInForm{}), user.SignInPost)
|
2014-11-28 21:20:13 -05:00
|
|
|
m.Get("/info/:name", user.SocialSignIn)
|
2014-10-24 18:43:17 -04:00
|
|
|
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)
|
2014-03-22 16:00:46 -04:00
|
|
|
}, reqSignOut)
|
2015-08-18 14:49:44 -04:00
|
|
|
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/user/settings", func() {
|
|
|
|
m.Get("", user.Settings)
|
|
|
|
m.Post("", bindIgnErr(auth.UpdateProfileForm{}), user.SettingsPost)
|
2014-11-21 10:58:08 -05:00
|
|
|
m.Post("/avatar", binding.MultipartForm(auth.UploadAvatarForm{}), user.SettingsAvatar)
|
2014-12-17 10:42:54 -05:00
|
|
|
m.Get("/email", user.SettingsEmails)
|
|
|
|
m.Post("/email", bindIgnErr(auth.AddEmailForm{}), user.SettingsEmailPost)
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Get("/password", user.SettingsPassword)
|
|
|
|
m.Post("/password", bindIgnErr(auth.ChangePasswordForm{}), user.SettingsPasswordPost)
|
|
|
|
m.Get("/ssh", user.SettingsSSHKeys)
|
|
|
|
m.Post("/ssh", bindIgnErr(auth.AddSSHKeyForm{}), user.SettingsSSHKeysPost)
|
|
|
|
m.Get("/social", user.SettingsSocial)
|
2015-08-18 15:36:16 -04:00
|
|
|
m.Combo("/applications").Get(user.SettingsApplications).
|
|
|
|
Post(bindIgnErr(auth.NewAccessTokenForm{}), user.SettingsApplicationsPost)
|
|
|
|
m.Post("/applications/delete", user.SettingsDeleteApplication)
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Route("/delete", "GET,POST", user.SettingsDelete)
|
2015-08-18 14:49:44 -04:00
|
|
|
}, reqSignIn, func(ctx *middleware.Context) {
|
|
|
|
ctx.Data["PageIsUserSettings"] = true
|
|
|
|
ctx.Data["HasOAuthService"] = setting.OauthService != nil
|
|
|
|
})
|
|
|
|
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/user", func() {
|
2014-07-26 00:24:27 -04:00
|
|
|
// r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Any("/activate", user.Activate)
|
2014-12-17 10:42:54 -05:00
|
|
|
m.Any("/activate_email", user.ActivateEmail)
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Get("/email2user", user.Email2User)
|
|
|
|
m.Get("/forget_password", user.ForgotPasswd)
|
|
|
|
m.Post("/forget_password", user.ForgotPasswdPost)
|
|
|
|
m.Get("/logout", user.SignOut)
|
2014-03-22 16:00:46 -04:00
|
|
|
})
|
2015-08-18 14:49:44 -04:00
|
|
|
// ***** END: User *****
|
2014-03-10 04:54:52 -04:00
|
|
|
|
2014-07-31 17:25:34 -04:00
|
|
|
// Gravatar service.
|
|
|
|
avt := avatar.CacheServer("public/img/avatar/", "public/img/avatar_default.jpg")
|
|
|
|
os.MkdirAll("public/img/avatar/", os.ModePerm)
|
|
|
|
m.Get("/avatar/:hash", avt.ServeHTTP)
|
2014-03-07 17:08:21 -05:00
|
|
|
|
2014-03-22 13:44:02 -04:00
|
|
|
adminReq := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true, AdminRequire: true})
|
|
|
|
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/admin", func() {
|
2014-08-29 08:50:43 -04:00
|
|
|
m.Get("", adminReq, admin.Dashboard)
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Get("/config", admin.Config)
|
|
|
|
m.Get("/monitor", admin.Monitor)
|
|
|
|
|
|
|
|
m.Group("/users", func() {
|
|
|
|
m.Get("", admin.Users)
|
|
|
|
m.Get("/new", admin.NewUser)
|
|
|
|
m.Post("/new", bindIgnErr(auth.RegisterForm{}), admin.NewUserPost)
|
|
|
|
m.Get("/:userid", admin.EditUser)
|
|
|
|
m.Post("/:userid", bindIgnErr(auth.AdminEditUserForm{}), admin.EditUserPost)
|
|
|
|
m.Post("/:userid/delete", admin.DeleteUser)
|
2014-08-29 08:50:43 -04:00
|
|
|
})
|
|
|
|
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/orgs", func() {
|
|
|
|
m.Get("", admin.Organizations)
|
2014-08-29 08:50:43 -04:00
|
|
|
})
|
|
|
|
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/repos", func() {
|
|
|
|
m.Get("", admin.Repositories)
|
2014-08-29 08:50:43 -04:00
|
|
|
})
|
|
|
|
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/auths", func() {
|
|
|
|
m.Get("", admin.Authentications)
|
|
|
|
m.Get("/new", admin.NewAuthSource)
|
|
|
|
m.Post("/new", bindIgnErr(auth.AuthenticationForm{}), admin.NewAuthSourcePost)
|
|
|
|
m.Get("/:authid", admin.EditAuthSource)
|
|
|
|
m.Post("/:authid", bindIgnErr(auth.AuthenticationForm{}), admin.EditAuthSourcePost)
|
|
|
|
m.Post("/:authid/delete", admin.DeleteAuthSource)
|
2014-08-29 08:50:43 -04:00
|
|
|
})
|
2014-10-08 18:29:18 -04:00
|
|
|
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/notices", func() {
|
|
|
|
m.Get("", admin.Notices)
|
|
|
|
m.Get("/:id:int/delete", admin.DeleteNotice)
|
2014-10-08 18:29:18 -04:00
|
|
|
})
|
2014-05-02 22:48:14 -04:00
|
|
|
}, adminReq)
|
|
|
|
|
2015-08-11 05:54:00 -04:00
|
|
|
m.Group("", func() {
|
|
|
|
m.Get("/:username", user.Profile)
|
2015-08-11 11:24:40 -04:00
|
|
|
m.Get("/attachments/:uuid", func(ctx *middleware.Context) {
|
|
|
|
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-11 16:49:51 -04:00
|
|
|
fr, err := os.Open(attach.LocalPath())
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "Open", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer fr.Close()
|
|
|
|
|
2015-08-11 16:58:39 -04:00
|
|
|
ctx.Header().Set("Cache-Control", "public,max-age=86400")
|
2015-08-11 11:24:40 -04:00
|
|
|
// Fix #312. Attachments with , in their name are not handled correctly by Google Chrome.
|
|
|
|
// We must put the name in " manually.
|
2015-08-11 16:49:51 -04:00
|
|
|
if err = repo.ServeData(ctx, "\""+attach.Name+"\"", fr); err != nil {
|
|
|
|
ctx.Handle(500, "ServeData", err)
|
|
|
|
return
|
|
|
|
}
|
2015-08-11 11:24:40 -04:00
|
|
|
})
|
|
|
|
m.Post("/issues/attachments", repo.UploadIssueAttachment)
|
2015-08-11 05:54:00 -04:00
|
|
|
}, ignSignIn)
|
2014-07-12 00:55:19 -04:00
|
|
|
|
2014-07-26 00:24:27 -04:00
|
|
|
if macaron.Env == macaron.DEV {
|
2014-07-31 17:25:34 -04:00
|
|
|
m.Get("/template/*", dev.TemplatePreview)
|
2014-03-27 11:37:33 -04:00
|
|
|
}
|
|
|
|
|
2015-08-03 05:42:09 -04:00
|
|
|
reqRepoAdmin := middleware.RequireRepoAdmin()
|
2014-07-26 02:28:04 -04:00
|
|
|
|
2014-11-05 23:30:04 -05:00
|
|
|
// Organization.
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/org", 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("/members", org.Members)
|
|
|
|
m.Get("/members/action/:action", org.MembersAction)
|
|
|
|
|
|
|
|
m.Get("/teams", org.Teams)
|
|
|
|
m.Get("/teams/:team", org.TeamMembers)
|
|
|
|
m.Get("/teams/:team/repositories", org.TeamRepositories)
|
|
|
|
m.Get("/teams/:team/action/:action", org.TeamsAction)
|
|
|
|
m.Get("/teams/:team/action/repo/:action", org.TeamsRepoAction)
|
2014-08-14 02:12:21 -04:00
|
|
|
}, middleware.OrgAssignment(true, true))
|
2014-07-26 02:28:04 -04:00
|
|
|
|
2014-10-24 18:43:17 -04:00
|
|
|
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.Get("", org.Settings)
|
|
|
|
m.Post("", bindIgnErr(auth.UpdateOrgSettingForm{}), org.SettingsPost)
|
|
|
|
m.Get("/hooks", org.SettingsHooks)
|
|
|
|
m.Get("/hooks/new", repo.WebHooksNew)
|
|
|
|
m.Post("/hooks/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
|
|
|
|
m.Post("/hooks/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
|
|
|
|
m.Get("/hooks/:id", repo.WebHooksEdit)
|
|
|
|
m.Post("/hooks/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
|
|
|
|
m.Post("/hooks/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
|
|
|
|
m.Route("/delete", "GET,POST", org.SettingsDelete)
|
2014-08-14 02:12:21 -04:00
|
|
|
})
|
2014-08-15 06:29:41 -04:00
|
|
|
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Route("/invitations/new", "GET,POST", org.Invitation)
|
2014-08-16 04:21:17 -04:00
|
|
|
}, middleware.OrgAssignment(true, true, true))
|
2014-07-26 02:28:04 -04:00
|
|
|
}, reqSignIn)
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/org", func() {
|
|
|
|
m.Get("/:org", org.Home)
|
2015-03-23 17:58:52 -04:00
|
|
|
}, ignSignIn, middleware.OrgAssignment(true))
|
2014-07-26 02:28:04 -04:00
|
|
|
|
2014-11-05 23:30:04 -05:00
|
|
|
// Repository.
|
2014-10-24 18:43:17 -04:00
|
|
|
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 05:10:34 -04:00
|
|
|
m.Combo("/fork/:repoid").Get(repo.Fork).
|
|
|
|
Post(bindIgnErr(auth.CreateRepoForm{}), repo.ForkPost)
|
2014-07-26 23:53:16 -04:00
|
|
|
}, reqSignIn)
|
|
|
|
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/:username/:reponame", func() {
|
|
|
|
m.Get("/settings", repo.Settings)
|
|
|
|
m.Post("/settings", bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost)
|
|
|
|
m.Group("/settings", func() {
|
|
|
|
m.Route("/collaboration", "GET,POST", repo.SettingsCollaboration)
|
|
|
|
m.Get("/hooks", repo.Webhooks)
|
|
|
|
m.Get("/hooks/new", repo.WebHooksNew)
|
|
|
|
m.Post("/hooks/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
|
|
|
|
m.Post("/hooks/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
|
|
|
|
m.Get("/hooks/:id", repo.WebHooksEdit)
|
|
|
|
m.Post("/hooks/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
|
|
|
|
m.Post("/hooks/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
|
|
|
|
|
|
|
|
m.Group("/hooks/git", func() {
|
|
|
|
m.Get("", repo.GitHooks)
|
|
|
|
m.Get("/:name", repo.GitHooksEdit)
|
|
|
|
m.Post("/:name", repo.GitHooksEditPost)
|
2014-10-06 17:50:00 -04:00
|
|
|
}, middleware.GitHookService())
|
2015-08-06 10:48:11 -04:00
|
|
|
|
|
|
|
m.Group("/keys", func() {
|
|
|
|
m.Combo("").Get(repo.SettingsDeployKeys).
|
|
|
|
Post(bindIgnErr(auth.AddSSHKeyForm{}), repo.SettingsDeployKeysPost)
|
|
|
|
m.Post("/delete", repo.DeleteDeployKey)
|
|
|
|
})
|
|
|
|
|
2014-07-26 02:28:04 -04:00
|
|
|
})
|
2015-08-03 05:42:09 -04:00
|
|
|
}, reqSignIn, middleware.RepoAssignment(true), reqRepoAdmin)
|
2014-07-26 02:28:04 -04:00
|
|
|
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/:username/:reponame", func() {
|
|
|
|
m.Get("/action/:action", repo.Action)
|
|
|
|
|
|
|
|
m.Group("/issues", func() {
|
2015-08-09 03:23:02 -04:00
|
|
|
m.Combo("/new").Get(repo.NewIssue).
|
|
|
|
Post(bindIgnErr(auth.CreateIssueForm{}), repo.NewIssuePost)
|
2015-08-13 04:07:11 -04:00
|
|
|
|
2015-08-14 14:48:05 -04:00
|
|
|
m.Combo("/:index/comments").Post(bindIgnErr(auth.CreateCommentForm{}), repo.NewComment)
|
2015-08-13 04:07:11 -04:00
|
|
|
m.Group("/:index", func() {
|
|
|
|
m.Post("", bindIgnErr(auth.CreateIssueForm{}), repo.UpdateIssue)
|
|
|
|
m.Post("/label", repo.UpdateIssueLabel)
|
|
|
|
m.Post("/milestone", repo.UpdateIssueMilestone)
|
2015-08-14 12:42:43 -04:00
|
|
|
m.Post("/assignee", repo.UpdateIssueAssignee)
|
|
|
|
}, reqRepoAdmin)
|
2015-07-24 04:42:47 -04: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)
|
2015-08-03 05:42:09 -04:00
|
|
|
}, reqRepoAdmin)
|
2015-07-24 04:42:47 -04:00
|
|
|
m.Group("/milestones", func() {
|
|
|
|
m.Get("/new", repo.NewMilestone)
|
|
|
|
m.Post("/new", bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
|
2015-08-06 11:25:35 -04:00
|
|
|
m.Get("/:id/edit", repo.EditMilestone)
|
|
|
|
m.Post("/:id/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.EditMilestonePost)
|
|
|
|
m.Get("/:id/:action", repo.ChangeMilestonStatus)
|
2015-08-05 08:23:08 -04:00
|
|
|
m.Post("/delete", repo.DeleteMilestone)
|
2015-08-03 05:42:09 -04:00
|
|
|
}, reqRepoAdmin)
|
2014-07-26 02:28:04 -04:00
|
|
|
|
2014-12-10 16:37:54 -05:00
|
|
|
m.Group("/releases", func() {
|
|
|
|
m.Get("/new", repo.NewRelease)
|
|
|
|
m.Post("/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost)
|
|
|
|
m.Get("/edit/:tagname", repo.EditRelease)
|
|
|
|
m.Post("/edit/:tagname", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost)
|
2015-08-03 05:42:09 -04:00
|
|
|
}, reqRepoAdmin, middleware.RepoRef())
|
2015-08-08 10:43:14 -04:00
|
|
|
|
|
|
|
m.Combo("/compare/*").Get(repo.CompareAndPullRequest)
|
2014-11-06 22:06:41 -05:00
|
|
|
}, reqSignIn, middleware.RepoAssignment(true))
|
2014-07-26 02:28:04 -04:00
|
|
|
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/:username/:reponame", func() {
|
2014-12-10 16:37:54 -05:00
|
|
|
m.Get("/releases", middleware.RepoRef(), repo.Releases)
|
2015-07-24 09:02:49 -04:00
|
|
|
m.Get("/issues", repo.RetrieveLabels, repo.Issues)
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Get("/issues/:index", repo.ViewIssue)
|
2015-07-24 09:02:49 -04:00
|
|
|
m.Get("/labels/", repo.RetrieveLabels, repo.Labels)
|
2015-07-24 04:42:47 -04:00
|
|
|
m.Get("/milestones", repo.Milestones)
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Get("/pulls", repo.Pulls)
|
|
|
|
m.Get("/branches", repo.Branches)
|
|
|
|
m.Get("/archive/*", repo.Download)
|
2014-11-17 10:07:34 -05:00
|
|
|
m.Get("/pulls2/", repo.PullRequest2)
|
2014-07-26 00:24:27 -04:00
|
|
|
|
2014-11-06 22:06:41 -05:00
|
|
|
m.Group("", func() {
|
|
|
|
m.Get("/src/*", repo.Home)
|
|
|
|
m.Get("/raw/*", repo.SingleDownload)
|
|
|
|
m.Get("/commits/*", repo.RefCommits)
|
|
|
|
m.Get("/commit/*", repo.Diff)
|
|
|
|
}, middleware.RepoRef())
|
2014-11-07 14:46:13 -05:00
|
|
|
|
2015-08-08 10:43:14 -04:00
|
|
|
m.Get("/compare/:before([a-z0-9]{40})...:after([a-z0-9]{40})", repo.CompareDiff)
|
2014-11-06 22:06:41 -05:00
|
|
|
}, ignSignIn, middleware.RepoAssignment(true))
|
2014-03-22 16:00:46 -04:00
|
|
|
|
2014-10-24 18:43:17 -04:00
|
|
|
m.Group("/:username", func() {
|
2015-07-31 02:25:12 -04:00
|
|
|
m.Group("/:reponame", func() {
|
|
|
|
m.Get("", repo.Home)
|
|
|
|
m.Get(".git", repo.Home)
|
|
|
|
}, ignSignIn, middleware.RepoAssignment(true, true), middleware.RepoRef())
|
|
|
|
|
2015-08-07 13:04:12 -04:00
|
|
|
m.Group("/:reponame", func() {
|
|
|
|
m.Any("/*", ignSignInAndCsrf, repo.Http)
|
|
|
|
m.Head("/hooks/trigger", repo.TriggerHook)
|
|
|
|
})
|
2014-09-15 10:09:17 -04:00
|
|
|
})
|
2014-03-21 12:48:26 -04:00
|
|
|
|
2014-09-21 19:39:10 -04:00
|
|
|
// robots.txt
|
|
|
|
m.Get("/robots.txt", func(ctx *middleware.Context) {
|
|
|
|
if setting.HasRobotsTxt {
|
2015-03-18 01:29:54 -04:00
|
|
|
ctx.ServeFileContent(path.Join(setting.CustomPath, "robots.txt"))
|
2014-09-21 19:39:10 -04:00
|
|
|
} else {
|
|
|
|
ctx.Error(404)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2014-03-23 06:27:01 -04:00
|
|
|
// Not found handler.
|
2014-03-23 01:48:01 -04:00
|
|
|
m.NotFound(routers.NotFound)
|
|
|
|
|
2015-02-01 12:41:03 -05:00
|
|
|
// Flag for port number in case first time run conflict.
|
|
|
|
if ctx.IsSet("port") {
|
|
|
|
setting.AppUrl = strings.Replace(setting.AppUrl, setting.HttpPort, ctx.String("port"), 1)
|
|
|
|
setting.HttpPort = ctx.String("port")
|
|
|
|
}
|
|
|
|
|
2014-05-25 20:11:25 -04:00
|
|
|
var err error
|
|
|
|
listenAddr := fmt.Sprintf("%s:%s", setting.HttpAddr, setting.HttpPort)
|
2014-09-19 20:11:34 -04:00
|
|
|
log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubUrl)
|
2014-05-25 20:11:25 -04:00
|
|
|
switch setting.Protocol {
|
|
|
|
case setting.HTTP:
|
|
|
|
err = http.ListenAndServe(listenAddr, m)
|
|
|
|
case setting.HTTPS:
|
2014-12-11 18:55:09 -05:00
|
|
|
server := &http.Server{Addr: listenAddr, TLSConfig: &tls.Config{MinVersion: tls.VersionTLS10}, Handler: m}
|
2014-12-11 05:14:41 -05:00
|
|
|
err = server.ListenAndServeTLS(setting.CertFile, setting.KeyFile)
|
2014-11-03 20:46:53 -05:00
|
|
|
case setting.FCGI:
|
|
|
|
err = fcgi.Serve(nil, m)
|
2014-05-25 20:11:25 -04:00
|
|
|
default:
|
2014-07-26 00:24:27 -04:00
|
|
|
log.Fatal(4, "Invalid protocol: %s", setting.Protocol)
|
2014-05-25 20:11:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2014-07-26 00:24:27 -04:00
|
|
|
log.Fatal(4, "Fail to start server: %v", err)
|
2014-03-18 09:58:58 -04:00
|
|
|
}
|
2014-02-19 04:50:53 -05:00
|
|
|
}
|