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 (
|
2014-12-11 15:44:41 +05:30
|
|
|
"crypto/tls"
|
2014-02-19 15:20:53 +05:30
|
|
|
"fmt"
|
2014-02-20 01:19:08 +05:30
|
|
|
"html/template"
|
2014-05-28 09:36:31 +05:30
|
|
|
"io/ioutil"
|
2014-02-19 15:20:53 +05:30
|
|
|
"net/http"
|
2014-11-04 07:16:53 +05:30
|
|
|
"net/http/fcgi"
|
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
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
"github.com/Unknwon/macaron"
|
2014-02-19 15:20:53 +05:30
|
|
|
"github.com/codegangsta/cli"
|
2014-10-15 20:49:20 +05:30
|
|
|
"github.com/macaron-contrib/binding"
|
2014-08-01 02:55:34 +05:30
|
|
|
"github.com/macaron-contrib/cache"
|
|
|
|
"github.com/macaron-contrib/captcha"
|
|
|
|
"github.com/macaron-contrib/csrf"
|
2014-07-26 09:54:27 +05:30
|
|
|
"github.com/macaron-contrib/i18n"
|
2014-11-29 07:50:13 +05:30
|
|
|
"github.com/macaron-contrib/oauth2"
|
2014-07-26 09:54:27 +05:30
|
|
|
"github.com/macaron-contrib/session"
|
2014-08-07 02:51:24 +05:30
|
|
|
"github.com/macaron-contrib/toolbox"
|
2015-01-02 17:44:43 +05:30
|
|
|
"gopkg.in/ini.v1"
|
2014-02-19 15:20:53 +05:30
|
|
|
|
2014-12-13 07:00:32 +05:30
|
|
|
api "github.com/gogits/go-gogs-client"
|
|
|
|
|
2014-08-07 02:51:24 +05:30
|
|
|
"github.com/gogits/gogs/models"
|
2014-03-06 12:51:44 +05:30
|
|
|
"github.com/gogits/gogs/modules/auth"
|
2014-05-05 22:38:01 +05:30
|
|
|
"github.com/gogits/gogs/modules/auth/apiv1"
|
2014-03-23 15:43:23 +05:30
|
|
|
"github.com/gogits/gogs/modules/avatar"
|
2014-03-06 12:51:44 +05:30
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-09-29 15:08:46 +05:30
|
|
|
"github.com/gogits/gogs/modules/git"
|
2014-03-08 03:52:15 +05:30
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-03-15 16:31:50 +05:30
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-05-26 05:41:25 +05:30
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-02-19 15:20:53 +05:30
|
|
|
"github.com/gogits/gogs/routers"
|
2014-03-20 17:20:26 +05:30
|
|
|
"github.com/gogits/gogs/routers/admin"
|
2014-03-29 19:31:52 +05:30
|
|
|
"github.com/gogits/gogs/routers/api/v1"
|
2014-03-19 22:20:44 +05:30
|
|
|
"github.com/gogits/gogs/routers/dev"
|
2014-07-26 11:58:04 +05:30
|
|
|
"github.com/gogits/gogs/routers/org"
|
2014-02-20 08:15:43 +05:30
|
|
|
"github.com/gogits/gogs/routers/repo"
|
2014-02-19 15:20:53 +05:30
|
|
|
"github.com/gogits/gogs/routers/user"
|
|
|
|
)
|
|
|
|
|
|
|
|
var CmdWeb = cli.Command{
|
|
|
|
Name: "web",
|
2014-05-02 06:51:46 +05:30
|
|
|
Usage: "Start Gogs web server",
|
2014-08-30 18:42:53 +05:30
|
|
|
Description: `Gogs 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,
|
2014-03-13 11:39:36 +05:30
|
|
|
Flags: []cli.Flag{},
|
2014-02-19 15:20:53 +05:30
|
|
|
}
|
|
|
|
|
2014-12-15 12:19:59 +05:30
|
|
|
type VerChecker struct {
|
|
|
|
ImportPath string
|
|
|
|
Version func() string
|
|
|
|
Expected string
|
|
|
|
}
|
|
|
|
|
2014-08-24 18:39:05 +05:30
|
|
|
// checkVersion checks if binary matches the version of templates files.
|
2014-05-26 06:27:01 +05:30
|
|
|
func checkVersion() {
|
2014-09-28 11:08:25 +05:30
|
|
|
// Templates.
|
2014-07-26 09:54:27 +05:30
|
|
|
data, err := ioutil.ReadFile(path.Join(setting.StaticRootPath, "templates/.VERSION"))
|
2014-05-26 06:27:01 +05:30
|
|
|
if err != nil {
|
2014-07-26 09:54:27 +05:30
|
|
|
log.Fatal(4, "Fail to read 'templates/.VERSION': %v", err)
|
2014-05-26 06:27:01 +05:30
|
|
|
}
|
|
|
|
if string(data) != setting.AppVer {
|
2014-07-26 09:54:27 +05:30
|
|
|
log.Fatal(4, "Binary and template file version does not match, did you forget to recompile?")
|
2014-05-26 06:27:01 +05:30
|
|
|
}
|
2014-09-28 11:08:25 +05:30
|
|
|
|
2014-10-07 04:42:52 +05:30
|
|
|
// Check dependency version.
|
2014-12-15 12:19:59 +05:30
|
|
|
checkers := []VerChecker{
|
2015-01-17 12:47:53 +05:30
|
|
|
{"github.com/Unknwon/macaron", macaron.Version, "0.5.0"},
|
2014-12-22 14:14:49 +05:30
|
|
|
{"github.com/macaron-contrib/binding", binding.Version, "0.0.4"},
|
2015-01-17 12:47:53 +05:30
|
|
|
{"github.com/macaron-contrib/cache", cache.Version, "0.0.7"},
|
2014-12-22 14:14:49 +05:30
|
|
|
{"github.com/macaron-contrib/csrf", csrf.Version, "0.0.1"},
|
2014-12-29 17:30:07 +05:30
|
|
|
{"github.com/macaron-contrib/i18n", i18n.Version, "0.0.5"},
|
2015-01-17 12:47:53 +05:30
|
|
|
{"github.com/macaron-contrib/session", session.Version, "0.1.6"},
|
2015-01-02 17:44:43 +05:30
|
|
|
{"gopkg.in/ini.v1", ini.Version, "1.0.1"},
|
2014-10-10 15:45:27 +05:30
|
|
|
}
|
2014-12-15 12:19:59 +05:30
|
|
|
for _, c := range checkers {
|
|
|
|
ver := strings.Join(strings.Split(c.Version(), ".")[:3], ".")
|
|
|
|
if git.MustParseVersion(ver).LessThan(git.MustParseVersion(c.Expected)) {
|
|
|
|
log.Fatal(4, "Package '%s' version is too old(%s -> %s), did you forget to update?", c.ImportPath, ver, c.Expected)
|
|
|
|
}
|
2014-09-28 11:08:25 +05:30
|
|
|
}
|
2014-05-26 06:27:01 +05:30
|
|
|
}
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
// newMacaron initializes Macaron instance.
|
|
|
|
func newMacaron() *macaron.Macaron {
|
|
|
|
m := macaron.New()
|
|
|
|
m.Use(macaron.Logger())
|
|
|
|
m.Use(macaron.Recovery())
|
2014-10-14 03:34:07 +05:30
|
|
|
if setting.EnableGzip {
|
|
|
|
m.Use(macaron.Gziper())
|
|
|
|
}
|
2014-11-16 10:36:09 +05:30
|
|
|
if setting.Protocol == setting.FCGI {
|
|
|
|
m.SetURLPrefix(setting.AppSubUrl)
|
|
|
|
}
|
2014-09-16 02:53:58 +05:30
|
|
|
m.Use(macaron.Static(
|
|
|
|
path.Join(setting.StaticRootPath, "public"),
|
2014-07-26 09:54:27 +05:30
|
|
|
macaron.StaticOptions{
|
|
|
|
SkipLogging: !setting.DisableRouterLog,
|
|
|
|
},
|
|
|
|
))
|
2014-11-21 21:28:08 +05:30
|
|
|
m.Use(macaron.Static(
|
|
|
|
setting.AvatarUploadPath,
|
|
|
|
macaron.StaticOptions{
|
|
|
|
Prefix: "avatars",
|
|
|
|
SkipLogging: !setting.DisableRouterLog,
|
|
|
|
},
|
|
|
|
))
|
2014-07-26 09:54:27 +05:30
|
|
|
m.Use(macaron.Renderer(macaron.RenderOptions{
|
|
|
|
Directory: path.Join(setting.StaticRootPath, "templates"),
|
|
|
|
Funcs: []template.FuncMap{base.TemplateFuncs},
|
|
|
|
IndentJSON: macaron.Env != macaron.PROD,
|
|
|
|
}))
|
2014-08-07 02:51:24 +05:30
|
|
|
m.Use(i18n.I18n(i18n.Options{
|
2014-10-10 04:05:09 +05:30
|
|
|
SubURL: setting.AppSubUrl,
|
|
|
|
Directory: path.Join(setting.ConfRootPath, "locale"),
|
|
|
|
CustomDirectory: path.Join(setting.CustomPath, "conf/locale"),
|
|
|
|
Langs: setting.Langs,
|
|
|
|
Names: setting.Names,
|
|
|
|
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,
|
|
|
|
Interval: setting.CacheInternal,
|
2014-08-01 02:55:34 +05:30
|
|
|
}))
|
2014-09-20 05:41:34 +05:30
|
|
|
m.Use(captcha.Captchaer(captcha.Options{
|
|
|
|
SubURL: setting.AppSubUrl,
|
|
|
|
}))
|
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,
|
|
|
|
SetCookie: true,
|
|
|
|
Header: "X-Csrf-Token",
|
|
|
|
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{
|
|
|
|
&toolbox.HealthCheckFuncDesc{
|
|
|
|
Desc: "Database connection",
|
|
|
|
Func: models.Ping,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}))
|
2014-11-29 07:50:13 +05:30
|
|
|
|
|
|
|
// OAuth 2.
|
2014-11-30 21:25:26 +05:30
|
|
|
if setting.OauthService != nil {
|
|
|
|
for _, info := range setting.OauthService.OauthInfos {
|
|
|
|
m.Use(oauth2.NewOAuth2Provider(info.Options, info.AuthUrl, info.TokenUrl))
|
|
|
|
}
|
2014-11-29 07:50:13 +05:30
|
|
|
}
|
2014-08-07 16:10:05 +05:30
|
|
|
m.Use(middleware.Contexter())
|
2014-07-26 09:54:27 +05:30
|
|
|
return m
|
2014-03-19 15:01:38 +05:30
|
|
|
}
|
|
|
|
|
2014-02-19 15:20:53 +05:30
|
|
|
func runWeb(*cli.Context) {
|
2014-03-30 03:20:51 +05:30
|
|
|
routers.GlobalInit()
|
2014-05-30 16:04:24 +05:30
|
|
|
checkVersion()
|
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
|
|
|
|
2014-03-22 23:14:02 +05:30
|
|
|
reqSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true})
|
2014-05-26 05:41:25 +05:30
|
|
|
ignSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: setting.Service.RequireSignInView})
|
2014-04-16 13:42:31 +05:30
|
|
|
ignSignInAndCsrf := middleware.Toggle(&middleware.ToggleOptions{DisableCsrf: true})
|
2014-03-22 23:14:02 +05:30
|
|
|
reqSignOut := middleware.Toggle(&middleware.ToggleOptions{SignOutRequire: true})
|
|
|
|
|
2014-11-13 23:27:00 +05:30
|
|
|
bind := binding.Bind
|
2014-05-05 12:12:52 +05:30
|
|
|
bindIgnErr := binding.BindIgnErr
|
2014-04-11 00:07:43 +05:30
|
|
|
|
2014-02-19 15:20:53 +05:30
|
|
|
// Routers.
|
2014-03-24 21:28:46 +05:30
|
|
|
m.Get("/", ignSignIn, routers.Home)
|
2014-09-15 19:39:17 +05:30
|
|
|
m.Get("/explore", ignSignIn, routers.Explore)
|
2014-11-24 20:24:08 +05:30
|
|
|
// FIXME: when i'm binding form here???
|
2014-07-26 11:58:04 +05:30
|
|
|
m.Get("/install", bindIgnErr(auth.InstallForm{}), routers.Install)
|
|
|
|
m.Post("/install", bindIgnErr(auth.InstallForm{}), routers.InstallPost)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("", func() {
|
|
|
|
m.Get("/pulls", user.Pulls)
|
|
|
|
m.Get("/issues", user.Issues)
|
2014-06-06 07:37:35 +05:30
|
|
|
}, reqSignIn)
|
2014-03-29 19:31:52 +05:30
|
|
|
|
2014-11-13 13:02:18 +05:30
|
|
|
// API.
|
2014-11-13 23:27:00 +05:30
|
|
|
// FIXME: custom form error response.
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/api", func() {
|
|
|
|
m.Group("/v1", func() {
|
2014-05-22 07:07:13 +05:30
|
|
|
// Miscellaneous.
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Post("/markdown", bindIgnErr(apiv1.MarkdownForm{}), v1.Markdown)
|
|
|
|
m.Post("/markdown/raw", v1.MarkdownRaw)
|
2014-05-22 07:07:13 +05:30
|
|
|
|
|
|
|
// Users.
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/users", func() {
|
|
|
|
m.Get("/search", v1.SearchUsers)
|
2014-11-18 21:37:16 +05:30
|
|
|
|
|
|
|
m.Group("/:username", func() {
|
|
|
|
m.Get("", v1.GetUserInfo)
|
|
|
|
|
|
|
|
m.Group("/tokens", func() {
|
|
|
|
m.Combo("").Get(v1.ListAccessTokens).Post(bind(v1.CreateAccessTokenForm{}), v1.CreateAccessToken)
|
|
|
|
}, middleware.ApiReqBasicAuth())
|
|
|
|
})
|
2014-08-29 15:01:53 +05:30
|
|
|
})
|
2014-07-12 10:25:19 +05:30
|
|
|
|
|
|
|
// Repositories.
|
2014-12-13 07:00:32 +05:30
|
|
|
m.Combo("/user/repos", middleware.ApiReqToken()).Get(v1.ListMyRepos).Post(bind(api.CreateRepoOption{}), v1.CreateRepo)
|
|
|
|
m.Post("/org/:org/repos", middleware.ApiReqToken(), bind(api.CreateRepoOption{}), v1.CreateOrgRepo)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/repos", func() {
|
|
|
|
m.Get("/search", v1.SearchRepos)
|
2014-12-13 07:00:32 +05:30
|
|
|
m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), v1.MigrateRepo)
|
2014-11-13 13:02:18 +05:30
|
|
|
|
|
|
|
m.Group("/:username/:reponame", func() {
|
2014-12-13 07:00:32 +05:30
|
|
|
m.Combo("/hooks").Get(v1.ListRepoHooks).Post(bind(api.CreateHookOption{}), v1.CreateRepoHook)
|
|
|
|
m.Patch("/hooks/:id:int", bind(api.EditHookOption{}), v1.EditRepoHook)
|
2014-11-17 08:02:26 +05:30
|
|
|
m.Get("/raw/*", middleware.RepoRef(), v1.GetRepoRawFile)
|
2014-11-13 23:27:00 +05:30
|
|
|
}, middleware.ApiRepoAssignment(), middleware.ApiReqToken())
|
2014-08-29 15:01:53 +05:30
|
|
|
})
|
2014-05-22 07:07:13 +05:30
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Any("/*", func(ctx *middleware.Context) {
|
2014-11-15 03:41:30 +05:30
|
|
|
ctx.JSON(404, &base.ApiJsonErr{"Not Found", base.DOC_URL})
|
2014-05-22 07:07:13 +05:30
|
|
|
})
|
2014-05-05 22:38:01 +05:30
|
|
|
})
|
2014-03-29 19:31:52 +05:30
|
|
|
})
|
2014-03-23 01:30:46 +05:30
|
|
|
|
2014-11-13 13:02:18 +05:30
|
|
|
// 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)
|
2014-11-29 07:50:13 +05:30
|
|
|
m.Get("/info/:name", user.SocialSignIn)
|
2014-10-25 04:13:17 +05:30
|
|
|
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-23 01:30:46 +05:30
|
|
|
}, reqSignOut)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/user/settings", func() {
|
|
|
|
m.Get("", user.Settings)
|
|
|
|
m.Post("", bindIgnErr(auth.UpdateProfileForm{}), user.SettingsPost)
|
2014-11-21 21:28:08 +05:30
|
|
|
m.Post("/avatar", binding.MultipartForm(auth.UploadAvatarForm{}), user.SettingsAvatar)
|
2014-12-17 21:12:54 +05:30
|
|
|
m.Get("/email", user.SettingsEmails)
|
|
|
|
m.Post("/email", bindIgnErr(auth.AddEmailForm{}), user.SettingsEmailPost)
|
2014-10-25 04:13:17 +05:30
|
|
|
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)
|
2014-11-12 17:18:50 +05:30
|
|
|
m.Combo("/applications").Get(user.SettingsApplications).Post(bindIgnErr(auth.NewAccessTokenForm{}), user.SettingsApplicationsPost)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Route("/delete", "GET,POST", user.SettingsDelete)
|
2014-03-23 01:30:46 +05:30
|
|
|
}, reqSignIn)
|
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
|
|
|
})
|
2014-03-10 14:24:52 +05:30
|
|
|
|
2014-08-01 02:55:34 +05:30
|
|
|
// 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-08 03:38:21 +05:30
|
|
|
|
2014-03-22 23:14:02 +05:30
|
|
|
adminReq := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true, AdminRequire: true})
|
|
|
|
|
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)
|
|
|
|
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 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() {
|
|
|
|
m.Get("", admin.Repositories)
|
2014-08-29 18:20:43 +05:30
|
|
|
})
|
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
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 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)
|
|
|
|
m.Get("/:id:int/delete", admin.DeleteNotice)
|
2014-10-09 03:59:18 +05:30
|
|
|
})
|
2014-05-03 08:18:14 +05:30
|
|
|
}, adminReq)
|
|
|
|
|
2014-07-12 10:25:19 +05:30
|
|
|
m.Get("/:username", ignSignIn, user.Profile)
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
reqTrueOwner := middleware.RequireTrueOwner()
|
|
|
|
|
2014-11-06 10:00:04 +05:30
|
|
|
// Organization.
|
2014-10-25 04:13:17 +05:30
|
|
|
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 11:42:21 +05:30
|
|
|
}, middleware.OrgAssignment(true, 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() {
|
|
|
|
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 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)
|
2014-08-16 13:51:17 +05:30
|
|
|
}, middleware.OrgAssignment(true, true, true))
|
2014-07-26 11:58:04 +05:30
|
|
|
}, reqSignIn)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/org", func() {
|
|
|
|
m.Get("/:org", org.Home)
|
2014-08-27 14:09:36 +05:30
|
|
|
}, middleware.OrgAssignment(true))
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2014-11-06 10:00:04 +05:30
|
|
|
// 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)
|
2014-11-06 10:00:04 +05:30
|
|
|
m.Get("/fork", repo.Fork)
|
|
|
|
m.Post("/fork", 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.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-07 03:20:00 +05:30
|
|
|
}, middleware.GitHookService())
|
2014-07-26 11:58:04 +05:30
|
|
|
})
|
|
|
|
}, reqSignIn, middleware.RepoAssignment(true), reqTrueOwner)
|
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/:username/:reponame", func() {
|
|
|
|
m.Get("/action/:action", repo.Action)
|
|
|
|
|
|
|
|
m.Group("/issues", func() {
|
|
|
|
m.Get("/new", repo.CreateIssue)
|
|
|
|
m.Post("/new", bindIgnErr(auth.CreateIssueForm{}), repo.CreateIssuePost)
|
|
|
|
m.Post("/:index", bindIgnErr(auth.CreateIssueForm{}), repo.UpdateIssue)
|
|
|
|
m.Post("/:index/label", repo.UpdateIssueLabel)
|
|
|
|
m.Post("/:index/milestone", repo.UpdateIssueMilestone)
|
|
|
|
m.Post("/:index/assignee", repo.UpdateAssignee)
|
|
|
|
m.Get("/:index/attachment/:id", repo.IssueGetAttachment)
|
|
|
|
m.Post("/labels/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel)
|
|
|
|
m.Post("/labels/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel)
|
|
|
|
m.Post("/labels/delete", repo.DeleteLabel)
|
|
|
|
m.Get("/milestones/new", repo.NewMilestone)
|
|
|
|
m.Post("/milestones/new", bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
|
|
|
|
m.Get("/milestones/:index/edit", repo.UpdateMilestone)
|
|
|
|
m.Post("/milestones/:index/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.UpdateMilestonePost)
|
|
|
|
m.Get("/milestones/:index/:action", repo.UpdateMilestone)
|
2014-07-26 11:58:04 +05:30
|
|
|
})
|
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Post("/comment/:action", repo.Comment)
|
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)
|
|
|
|
m.Get("/edit/:tagname", repo.EditRelease)
|
|
|
|
m.Post("/edit/:tagname", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost)
|
|
|
|
}, middleware.RepoRef())
|
2014-11-07 08:36:41 +05:30
|
|
|
}, reqSignIn, middleware.RepoAssignment(true))
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/:username/:reponame", func() {
|
2014-12-11 03:07:54 +05:30
|
|
|
m.Get("/releases", middleware.RepoRef(), repo.Releases)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Get("/issues", repo.Issues)
|
|
|
|
m.Get("/issues/:index", repo.ViewIssue)
|
2014-11-08 01:16:13 +05:30
|
|
|
m.Get("/issues/milestones", repo.Milestones)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Get("/pulls", repo.Pulls)
|
|
|
|
m.Get("/branches", repo.Branches)
|
|
|
|
m.Get("/archive/*", repo.Download)
|
|
|
|
m.Get("/issues2/", repo.Issues2)
|
2014-11-17 20:37:34 +05:30
|
|
|
m.Get("/pulls2/", repo.PullRequest2)
|
2014-11-18 21:37:16 +05:30
|
|
|
m.Get("/labels2/", repo.Labels2)
|
2014-11-29 07:50:13 +05:30
|
|
|
m.Get("/milestone2/", repo.Milestones2)
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2014-11-07 08:36:41 +05:30
|
|
|
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-08 01:16:13 +05:30
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Get("/compare/:before([a-z0-9]+)...:after([a-z0-9]+)", repo.CompareDiff)
|
2014-11-07 08:36:41 +05:30
|
|
|
}, ignSignIn, middleware.RepoAssignment(true))
|
2014-03-23 01:30:46 +05:30
|
|
|
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Group("/:username", func() {
|
2014-11-07 08:36:41 +05:30
|
|
|
m.Get("/:reponame", ignSignIn, middleware.RepoAssignment(true, true), middleware.RepoRef(), repo.Home)
|
2014-10-25 04:13:17 +05:30
|
|
|
m.Any("/:reponame/*", ignSignInAndCsrf, repo.Http)
|
2014-09-15 19:39:17 +05:30
|
|
|
})
|
2014-03-21 22:18:26 +05:30
|
|
|
|
2014-09-22 05:09:10 +05:30
|
|
|
// robots.txt
|
|
|
|
m.Get("/robots.txt", func(ctx *middleware.Context) {
|
|
|
|
if setting.HasRobotsTxt {
|
|
|
|
ctx.ServeFile(path.Join(setting.CustomPath, "robots.txt"))
|
|
|
|
} 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)
|
|
|
|
|
2014-05-26 05:41:25 +05:30
|
|
|
var err error
|
|
|
|
listenAddr := fmt.Sprintf("%s:%s", setting.HttpAddr, setting.HttpPort)
|
2014-09-20 05:41:34 +05:30
|
|
|
log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubUrl)
|
2014-05-26 05:41:25 +05:30
|
|
|
switch setting.Protocol {
|
|
|
|
case setting.HTTP:
|
|
|
|
err = http.ListenAndServe(listenAddr, m)
|
|
|
|
case setting.HTTPS:
|
2014-12-12 05:25:09 +05:30
|
|
|
server := &http.Server{Addr: listenAddr, TLSConfig: &tls.Config{MinVersion: tls.VersionTLS10}, Handler: m}
|
2014-12-11 15:44:41 +05:30
|
|
|
err = server.ListenAndServeTLS(setting.CertFile, setting.KeyFile)
|
2014-11-04 07:16:53 +05:30
|
|
|
case setting.FCGI:
|
|
|
|
err = fcgi.Serve(nil, 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 {
|
2014-07-26 09:54:27 +05:30
|
|
|
log.Fatal(4, "Fail to start server: %v", err)
|
2014-03-18 19:28:58 +05:30
|
|
|
}
|
2014-02-19 15:20:53 +05:30
|
|
|
}
|