gitea/cmd/web.go

403 lines
14 KiB
Go
Raw Normal View History

2014-02-19 10:50:53 +01: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-02 03:21:46 +02:00
package cmd
2014-02-19 10:50:53 +01:00
import (
"fmt"
2014-02-19 20:49:08 +01:00
"html/template"
"io/ioutil"
2014-02-19 10:50:53 +01:00
"net/http"
2014-04-16 02:01:20 +02:00
"os"
2014-05-26 02:11:25 +02:00
"path"
2014-02-19 10:50:53 +01:00
2014-07-26 06:24:27 +02:00
"github.com/Unknwon/macaron"
2014-02-19 10:50:53 +01:00
"github.com/codegangsta/cli"
"github.com/macaron-contrib/cache"
"github.com/macaron-contrib/captcha"
"github.com/macaron-contrib/csrf"
2014-07-26 06:24:27 +02:00
"github.com/macaron-contrib/i18n"
"github.com/macaron-contrib/session"
2014-08-06 23:21:24 +02:00
"github.com/macaron-contrib/toolbox"
2014-02-19 10:50:53 +01:00
2014-08-06 23:21:24 +02:00
"github.com/gogits/gogs/models"
2014-03-06 08:21:44 +01:00
"github.com/gogits/gogs/modules/auth"
2014-05-05 19:08:01 +02:00
"github.com/gogits/gogs/modules/auth/apiv1"
2014-03-23 11:13:23 +01:00
"github.com/gogits/gogs/modules/avatar"
2014-03-06 08:21:44 +01:00
"github.com/gogits/gogs/modules/base"
2014-03-07 23:22:15 +01:00
"github.com/gogits/gogs/modules/log"
"github.com/gogits/gogs/modules/middleware"
2014-05-05 08:42:52 +02:00
"github.com/gogits/gogs/modules/middleware/binding"
2014-05-26 02:11:25 +02:00
"github.com/gogits/gogs/modules/setting"
2014-02-19 10:50:53 +01:00
"github.com/gogits/gogs/routers"
2014-03-20 12:50:26 +01:00
"github.com/gogits/gogs/routers/admin"
2014-03-29 15:01:52 +01:00
"github.com/gogits/gogs/routers/api/v1"
2014-03-19 17:50:44 +01:00
"github.com/gogits/gogs/routers/dev"
"github.com/gogits/gogs/routers/org"
2014-02-20 03:45:43 +01:00
"github.com/gogits/gogs/routers/repo"
2014-02-19 10:50:53 +01:00
"github.com/gogits/gogs/routers/user"
)
var CmdWeb = cli.Command{
Name: "web",
2014-05-02 03:21:46 +02:00
Usage: "Start Gogs web server",
Description: `Gogs web server is the only thing you need to run,
2014-03-24 12:36:38 +01:00
and it takes care of all the other things for you`,
2014-02-19 10:50:53 +01:00
Action: runWeb,
2014-03-13 07:09:36 +01:00
Flags: []cli.Flag{},
2014-02-19 10:50:53 +01:00
}
// checkVersion checks if binary matches the version of templates files.
2014-05-26 02:57:01 +02:00
func checkVersion() {
2014-09-28 07:38:25 +02:00
// Templates.
2014-07-26 06:24:27 +02:00
data, err := ioutil.ReadFile(path.Join(setting.StaticRootPath, "templates/.VERSION"))
2014-05-26 02:57:01 +02:00
if err != nil {
2014-07-26 06:24:27 +02:00
log.Fatal(4, "Fail to read 'templates/.VERSION': %v", err)
2014-05-26 02:57:01 +02:00
}
if string(data) != setting.AppVer {
2014-07-26 06:24:27 +02:00
log.Fatal(4, "Binary and template file version does not match, did you forget to recompile?")
2014-05-26 02:57:01 +02:00
}
2014-09-28 07:38:25 +02:00
// Macaron.
if macaron.Version() != "0.1.8.0927" {
log.Fatal(4, "Macaron version does not match, did you forget to update?(github.com/Unknwon/macaron)")
}
2014-05-26 02:57:01 +02:00
}
2014-07-26 06:24:27 +02:00
// newMacaron initializes Macaron instance.
func newMacaron() *macaron.Macaron {
m := macaron.New()
m.Use(macaron.Logger())
m.Use(macaron.Recovery())
2014-09-15 23:23:58 +02:00
m.Use(macaron.Static(
path.Join(setting.StaticRootPath, "public"),
2014-07-26 06:24:27 +02:00
macaron.StaticOptions{
SkipLogging: !setting.DisableRouterLog,
},
))
2014-09-08 01:39:26 +02:00
// if setting.EnableGzip {
// m.Use(macaron.Gzip())
// }
2014-07-26 06:24:27 +02:00
m.Use(macaron.Renderer(macaron.RenderOptions{
Directory: path.Join(setting.StaticRootPath, "templates"),
Funcs: []template.FuncMap{base.TemplateFuncs},
IndentJSON: macaron.Env != macaron.PROD,
}))
2014-08-06 23:21:24 +02:00
m.Use(i18n.I18n(i18n.Options{
2014-09-20 02:11:34 +02:00
SubURL: setting.AppSubUrl,
2014-07-26 06:24:27 +02:00
Langs: setting.Langs,
Names: setting.Names,
Redirect: true,
}))
m.Use(cache.Cacher(cache.Options{
Adapter: setting.CacheAdapter,
Interval: setting.CacheInternal,
Conn: setting.CacheConn,
}))
2014-09-20 02:11:34 +02:00
m.Use(captcha.Captchaer(captcha.Options{
SubURL: setting.AppSubUrl,
}))
2014-07-26 06:24:27 +02:00
m.Use(session.Sessioner(session.Options{
Provider: setting.SessionProvider,
Config: *setting.SessionConfig,
}))
m.Use(csrf.Generate(csrf.Options{
2014-09-21 18:22:50 +02:00
Secret: setting.SecretKey,
SetCookie: true,
Header: "X-Csrf-Token",
CookiePath: setting.AppSubUrl,
}))
2014-08-06 23:21:24 +02:00
m.Use(toolbox.Toolboxer(m, toolbox.Options{
HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{
&toolbox.HealthCheckFuncDesc{
Desc: "Database connection",
Func: models.Ping,
},
},
}))
2014-08-07 12:40:05 +02:00
m.Use(middleware.Contexter())
2014-07-26 06:24:27 +02:00
return m
2014-03-19 10:31:38 +01:00
}
2014-02-19 10:50:53 +01:00
func runWeb(*cli.Context) {
routers.GlobalInit()
2014-05-30 12:34:24 +02:00
checkVersion()
2014-02-19 10:50:53 +01:00
2014-07-26 06:24:27 +02:00
m := newMacaron()
2014-03-22 18:44:02 +01:00
reqSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true})
2014-05-26 02:11:25 +02:00
ignSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: setting.Service.RequireSignInView})
2014-04-16 10:12:31 +02:00
ignSignInAndCsrf := middleware.Toggle(&middleware.ToggleOptions{DisableCsrf: true})
2014-03-22 18:44:02 +01:00
reqSignOut := middleware.Toggle(&middleware.ToggleOptions{SignOutRequire: true})
2014-05-05 08:42:52 +02:00
bindIgnErr := binding.BindIgnErr
2014-04-10 20:37:43 +02:00
2014-02-19 10:50:53 +01:00
// Routers.
2014-03-24 16:58:46 +01:00
m.Get("/", ignSignIn, routers.Home)
2014-09-15 16:09:17 +02:00
m.Get("/explore", ignSignIn, routers.Explore)
m.Get("/install", bindIgnErr(auth.InstallForm{}), routers.Install)
m.Post("/install", bindIgnErr(auth.InstallForm{}), routers.InstallPost)
2014-07-26 06:24:27 +02:00
m.Group("", func(r *macaron.Router) {
2014-06-06 04:07:35 +02:00
r.Get("/pulls", user.Pulls)
r.Get("/issues", user.Issues)
2014-06-06 04:07:35 +02:00
}, reqSignIn)
2014-03-29 15:01:52 +01:00
2014-07-26 06:24:27 +02:00
// API routers.
m.Group("/api", func(_ *macaron.Router) {
m.Group("/v1", func(r *macaron.Router) {
2014-05-22 03:37:13 +02:00
// Miscellaneous.
r.Post("/markdown", bindIgnErr(apiv1.MarkdownForm{}), v1.Markdown)
r.Post("/markdown/raw", v1.MarkdownRaw)
// Users.
2014-08-29 11:31:53 +02:00
m.Group("/users", func(r *macaron.Router) {
r.Get("/search", v1.SearchUsers)
})
2014-07-12 06:55:19 +02:00
// Repositories.
2014-08-29 11:31:53 +02:00
m.Group("/repos", func(r *macaron.Router) {
r.Get("/search", v1.SearchRepos)
r.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), v1.Migrate)
})
2014-05-22 03:37:13 +02:00
r.Any("/*", func(ctx *middleware.Context) {
2014-05-22 03:37:13 +02:00
ctx.JSON(404, &base.ApiJsonErr{"Not Found", v1.DOC_URL})
})
2014-05-05 19:08:01 +02:00
})
2014-03-29 15:01:52 +01:00
})
2014-03-22 21:00:46 +01:00
2014-07-26 06:24:27 +02:00
// User routers.
m.Group("/user", func(r *macaron.Router) {
2014-05-05 22:21:43 +02:00
r.Get("/login", user.SignIn)
2014-07-26 06:24:27 +02:00
r.Post("/login", bindIgnErr(auth.SignInForm{}), user.SignInPost)
2014-04-12 17:19:17 +02:00
r.Get("/login/:name", user.SocialSignIn)
2014-04-10 22:36:50 +02:00
r.Get("/sign_up", user.SignUp)
r.Post("/sign_up", bindIgnErr(auth.RegisterForm{}), user.SignUpPost)
r.Get("/reset_password", user.ResetPasswd)
r.Post("/reset_password", user.ResetPasswdPost)
2014-03-22 21:00:46 +01:00
}, reqSignOut)
2014-08-14 08:12:21 +02:00
m.Group("/user/settings", func(r *macaron.Router) {
r.Get("", user.Settings)
r.Post("", bindIgnErr(auth.UpdateProfileForm{}), user.SettingsPost)
r.Get("/password", user.SettingsPassword)
r.Post("/password", bindIgnErr(auth.ChangePasswordForm{}), user.SettingsPasswordPost)
r.Get("/ssh", user.SettingsSSHKeys)
r.Post("/ssh", bindIgnErr(auth.AddSSHKeyForm{}), user.SettingsSSHKeysPost)
r.Get("/social", user.SettingsSocial)
r.Route("/delete", "GET,POST", user.SettingsDelete)
2014-03-22 21:00:46 +01:00
}, reqSignIn)
2014-07-26 06:24:27 +02:00
m.Group("/user", func(r *macaron.Router) {
// r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
2014-04-18 18:12:10 +02:00
r.Any("/activate", user.Activate)
2014-04-13 02:35:35 +02:00
r.Get("/email2user", user.Email2User)
2014-04-11 00:09:57 +02:00
r.Get("/forget_password", user.ForgotPasswd)
r.Post("/forget_password", user.ForgotPasswdPost)
2014-04-19 03:14:35 +02:00
r.Get("/logout", user.SignOut)
2014-03-22 21:00:46 +01:00
})
2014-03-10 09:54:52 +01:00
2014-09-25 22:36:19 +02:00
// FIXME: Legacy
m.Get("/user/:username", ignSignIn, user.Profile)
2014-07-26 06:24:27 +02: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-22 18:44:02 +01:00
adminReq := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true, AdminRequire: true})
2014-07-26 06:24:27 +02:00
m.Group("/admin", func(r *macaron.Router) {
2014-08-29 14:50:43 +02:00
m.Get("", adminReq, admin.Dashboard)
2014-06-13 19:01:52 +02:00
r.Get("/config", admin.Config)
r.Get("/monitor", admin.Monitor)
2014-03-22 21:00:46 +01:00
2014-08-29 14:50:43 +02:00
m.Group("/users", func(r *macaron.Router) {
r.Get("", admin.Users)
r.Get("/new", admin.NewUser)
r.Post("/new", bindIgnErr(auth.RegisterForm{}), admin.NewUserPost)
r.Get("/:userid", admin.EditUser)
r.Post("/:userid", bindIgnErr(auth.AdminEditUserForm{}), admin.EditUserPost)
r.Post("/:userid/delete", admin.DeleteUser)
})
m.Group("/orgs", func(r *macaron.Router) {
r.Get("", admin.Organizations)
})
m.Group("/repos", func(r *macaron.Router) {
r.Get("", admin.Repositories)
})
m.Group("/auths", func(r *macaron.Router) {
r.Get("", admin.Authentications)
r.Get("/new", admin.NewAuthSource)
r.Post("/new", bindIgnErr(auth.AuthenticationForm{}), admin.NewAuthSourcePost)
r.Get("/:authid", admin.EditAuthSource)
r.Post("/:authid", bindIgnErr(auth.AuthenticationForm{}), admin.EditAuthSourcePost)
r.Post("/:authid/delete", admin.DeleteAuthSource)
})
2014-05-03 04:48:14 +02:00
}, adminReq)
2014-07-12 06:55:19 +02:00
m.Get("/:username", ignSignIn, user.Profile)
2014-07-26 06:24:27 +02:00
if macaron.Env == macaron.DEV {
m.Get("/template/*", dev.TemplatePreview)
2014-03-27 16:37:33 +01:00
}
reqTrueOwner := middleware.RequireTrueOwner()
// Organization routers.
m.Group("/org", func(r *macaron.Router) {
r.Get("/create", org.Create)
r.Post("/create", bindIgnErr(auth.CreateOrgForm{}), org.CreatePost)
2014-08-14 08:12:21 +02:00
m.Group("/:org", func(r *macaron.Router) {
r.Get("/dashboard", user.Dashboard)
r.Get("/members", org.Members)
r.Get("/members/action/:action", org.MembersAction)
2014-08-14 08:12:21 +02:00
r.Get("/teams", org.Teams)
r.Get("/teams/:team", org.TeamMembers)
2014-08-26 12:11:15 +02:00
r.Get("/teams/:team/repositories", org.TeamRepositories)
r.Get("/teams/:team/action/:action", org.TeamsAction)
2014-08-26 12:11:15 +02:00
r.Get("/teams/:team/action/repo/:action", org.TeamsRepoAction)
2014-08-14 08:12:21 +02:00
}, middleware.OrgAssignment(true, true))
2014-08-14 08:12:21 +02:00
m.Group("/:org", func(r *macaron.Router) {
r.Get("/teams/new", org.NewTeam)
r.Post("/teams/new", bindIgnErr(auth.CreateTeamForm{}), org.NewTeamPost)
r.Get("/teams/:team/edit", org.EditTeam)
r.Post("/teams/:team/edit", bindIgnErr(auth.CreateTeamForm{}), org.EditTeamPost)
r.Post("/teams/:team/delete", org.DeleteTeam)
2014-08-14 08:12:21 +02:00
m.Group("/settings", func(r *macaron.Router) {
r.Get("", org.Settings)
r.Post("", bindIgnErr(auth.UpdateOrgSettingForm{}), org.SettingsPost)
2014-09-04 13:17:00 +02:00
r.Get("/hooks", org.SettingsHooks)
r.Get("/hooks/new", repo.WebHooksNew)
r.Post("/hooks/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
r.Post("/hooks/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
r.Get("/hooks/:id", repo.WebHooksEdit)
r.Post("/hooks/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
r.Post("/hooks/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
2014-08-14 08:12:21 +02:00
r.Route("/delete", "GET,POST", org.SettingsDelete)
})
r.Route("/invitations/new", "GET,POST", org.Invitation)
}, middleware.OrgAssignment(true, true, true))
}, reqSignIn)
2014-08-27 10:39:36 +02:00
m.Group("/org", func(r *macaron.Router) {
r.Get("/:org", org.Home)
}, middleware.OrgAssignment(true))
// Repository routers.
m.Group("/repo", func(r *macaron.Router) {
r.Get("/create", repo.Create)
r.Post("/create", bindIgnErr(auth.CreateRepoForm{}), repo.CreatePost)
r.Get("/migrate", repo.Migrate)
r.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), repo.MigratePost)
}, reqSignIn)
m.Group("/:username/:reponame", func(r *macaron.Router) {
2014-08-02 19:47:33 +02:00
r.Get("/settings", repo.Settings)
r.Post("/settings", bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost)
m.Group("/settings", func(r *macaron.Router) {
2014-08-07 12:40:05 +02:00
r.Route("/collaboration", "GET,POST", repo.SettingsCollaboration)
2014-08-09 19:29:51 +02:00
r.Get("/hooks", repo.Webhooks)
2014-08-10 00:40:10 +02:00
r.Get("/hooks/new", repo.WebHooksNew)
2014-08-24 14:59:47 +02:00
r.Post("/hooks/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
r.Post("/hooks/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
r.Get("/hooks/:id", repo.WebHooksEdit)
2014-08-24 14:59:47 +02:00
r.Post("/hooks/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
r.Post("/hooks/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
})
}, reqSignIn, middleware.RepoAssignment(true), reqTrueOwner)
m.Group("/:username/:reponame", func(r *macaron.Router) {
2014-08-11 05:11:18 +02:00
r.Get("/action/:action", repo.Action)
m.Group("/issues", func(r *macaron.Router) {
r.Get("/new", repo.CreateIssue)
r.Post("/new", bindIgnErr(auth.CreateIssueForm{}), repo.CreateIssuePost)
r.Post("/:index", bindIgnErr(auth.CreateIssueForm{}), repo.UpdateIssue)
r.Post("/:index/label", repo.UpdateIssueLabel)
r.Post("/:index/milestone", repo.UpdateIssueMilestone)
r.Post("/:index/assignee", repo.UpdateAssignee)
r.Get("/:index/attachment/:id", repo.IssueGetAttachment)
r.Post("/labels/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel)
r.Post("/labels/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel)
r.Post("/labels/delete", repo.DeleteLabel)
r.Get("/milestones", repo.Milestones)
r.Get("/milestones/new", repo.NewMilestone)
r.Post("/milestones/new", bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
r.Get("/milestones/:index/edit", repo.UpdateMilestone)
r.Post("/milestones/:index/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.UpdateMilestonePost)
r.Get("/milestones/:index/:action", repo.UpdateMilestone)
})
r.Post("/comment/:action", repo.Comment)
r.Get("/releases/new", repo.NewRelease)
r.Get("/releases/edit/:tagname", repo.EditRelease)
}, reqSignIn, middleware.RepoAssignment(true))
m.Group("/:username/:reponame", func(r *macaron.Router) {
r.Post("/releases/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost)
r.Post("/releases/edit/:tagname", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost)
}, reqSignIn, middleware.RepoAssignment(true, true))
m.Group("/:username/:reponame", func(r *macaron.Router) {
r.Get("/issues", repo.Issues)
r.Get("/issues/:index", repo.ViewIssue)
r.Get("/pulls", repo.Pulls)
r.Get("/branches", repo.Branches)
2014-09-24 23:43:33 +02:00
r.Get("/archive/*", repo.Download)
r.Get("/issues2/",repo.Issues2)
}, ignSignIn, middleware.RepoAssignment(true))
2014-07-26 06:24:27 +02:00
m.Group("/:username/:reponame", func(r *macaron.Router) {
r.Get("/src/:branchname", repo.Home)
r.Get("/src/:branchname/*", repo.Home)
r.Get("/raw/:branchname/*", repo.SingleDownload)
r.Get("/commits/:branchname", repo.Commits)
r.Get("/commits/:branchname/search", repo.SearchCommits)
r.Get("/commits/:branchname/*", repo.FileHistory)
r.Get("/commit/:branchname", repo.Diff)
r.Get("/commit/:branchname/*", repo.Diff)
r.Get("/releases", repo.Releases)
2014-08-26 14:20:18 +02:00
r.Get("/compare/:before([a-z0-9]+)...:after([a-z0-9]+)", repo.CompareDiff)
2014-03-30 07:30:17 +02:00
}, ignSignIn, middleware.RepoAssignment(true, true))
2014-03-22 21:00:46 +01:00
2014-07-26 06:24:27 +02:00
m.Group("/:username", func(r *macaron.Router) {
2014-09-15 16:09:17 +02:00
r.Get("/:reponame", ignSignIn, middleware.RepoAssignment(true, true, true), repo.Home)
r.Any("/:reponame/*", ignSignInAndCsrf, repo.Http)
})
2014-03-21 17:48:26 +01:00
2014-09-22 01:39:10 +02:00
// 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 11:27:01 +01:00
// Not found handler.
2014-03-23 06:48:01 +01:00
m.NotFound(routers.NotFound)
2014-05-26 02:11:25 +02:00
var err error
listenAddr := fmt.Sprintf("%s:%s", setting.HttpAddr, setting.HttpPort)
2014-09-20 02:11:34 +02:00
log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubUrl)
2014-05-26 02:11:25 +02:00
switch setting.Protocol {
case setting.HTTP:
err = http.ListenAndServe(listenAddr, m)
case setting.HTTPS:
err = http.ListenAndServeTLS(listenAddr, setting.CertFile, setting.KeyFile, m)
default:
2014-07-26 06:24:27 +02:00
log.Fatal(4, "Invalid protocol: %s", setting.Protocol)
2014-05-26 02:11:25 +02:00
}
if err != nil {
2014-07-26 06:24:27 +02:00
log.Fatal(4, "Fail to start server: %v", err)
2014-03-18 14:58:58 +01:00
}
2014-02-19 10:50:53 +01:00
}