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.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-02-19 14:49:08 -05:00
|
|
|
"html/template"
|
2014-02-19 04:50:53 -05:00
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/codegangsta/cli"
|
2014-03-30 12:11:28 -04:00
|
|
|
"github.com/go-martini/martini"
|
2014-04-10 10:12:32 -04:00
|
|
|
|
2014-04-06 13:00:20 -04:00
|
|
|
qlog "github.com/qiniu/log"
|
2014-02-19 04:50:53 -05:00
|
|
|
|
2014-03-06 02:21:44 -05:00
|
|
|
"github.com/gogits/gogs/modules/auth"
|
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"
|
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-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-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-03-24 07:36:38 -04:00
|
|
|
Usage: "Gogs web server",
|
2014-02-19 04:50:53 -05:00
|
|
|
Description: `
|
2014-03-24 07:36:38 -04:00
|
|
|
gogs web server is the only thing you need to run,
|
|
|
|
and it takes care of all the other things for you`,
|
2014-02-19 04:50:53 -05:00
|
|
|
Action: runWeb,
|
2014-03-13 02:09:36 -04:00
|
|
|
Flags: []cli.Flag{},
|
2014-02-19 04:50:53 -05:00
|
|
|
}
|
|
|
|
|
2014-03-19 05:31:38 -04:00
|
|
|
func newMartini() *martini.ClassicMartini {
|
|
|
|
r := martini.NewRouter()
|
|
|
|
m := martini.New()
|
|
|
|
m.Use(middleware.Logger())
|
|
|
|
m.Use(martini.Recovery())
|
|
|
|
m.Use(martini.Static("public"))
|
|
|
|
m.MapTo(r, (*martini.Routes)(nil))
|
|
|
|
m.Action(r.Handle)
|
|
|
|
return &martini.ClassicMartini{m, r}
|
|
|
|
}
|
|
|
|
|
2014-02-19 04:50:53 -05:00
|
|
|
func runWeb(*cli.Context) {
|
2014-03-29 17:50:51 -04:00
|
|
|
routers.GlobalInit()
|
2014-02-19 04:50:53 -05:00
|
|
|
|
2014-03-19 05:31:38 -04:00
|
|
|
m := newMartini()
|
2014-02-19 04:50:53 -05:00
|
|
|
|
2014-03-07 17:08:21 -05:00
|
|
|
// Middlewares.
|
2014-03-19 09:57:55 -04:00
|
|
|
m.Use(middleware.Renderer(middleware.RenderOptions{Funcs: []template.FuncMap{base.TemplateFuncs}}))
|
2014-03-15 07:01:50 -04:00
|
|
|
m.Use(middleware.InitContext())
|
|
|
|
|
2014-03-22 13:44:02 -04:00
|
|
|
reqSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true})
|
|
|
|
ignSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: base.Service.RequireSignInView})
|
2014-04-10 10:12:32 -04:00
|
|
|
ignSignInAndCsrf := middleware.Toggle(&middleware.ToggleOptions{
|
|
|
|
SignInRequire: base.Service.RequireSignInView,
|
|
|
|
DisableCsrf: true,
|
|
|
|
})
|
2014-04-14 01:57:25 -04:00
|
|
|
|
2014-03-22 13:44:02 -04:00
|
|
|
reqSignOut := middleware.Toggle(&middleware.ToggleOptions{SignOutRequire: true})
|
|
|
|
|
2014-04-13 01:57:42 -04:00
|
|
|
bindIgnErr := middleware.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-04-10 16:36:50 -04:00
|
|
|
m.Get("/install", bindIgnErr(auth.InstallForm{}), routers.Install)
|
|
|
|
m.Post("/install", bindIgnErr(auth.InstallForm{}), routers.InstallPost)
|
2014-03-18 09:58:58 -04:00
|
|
|
m.Get("/issues", reqSignIn, user.Issues)
|
|
|
|
m.Get("/pulls", reqSignIn, user.Pulls)
|
|
|
|
m.Get("/stars", reqSignIn, user.Stars)
|
2014-03-22 16:00:46 -04:00
|
|
|
m.Get("/help", routers.Help)
|
2014-03-29 10:01:52 -04:00
|
|
|
|
|
|
|
m.Group("/api/v1", func(r martini.Router) {
|
|
|
|
r.Post("/markdown", v1.Markdown)
|
|
|
|
})
|
2014-03-22 16:00:46 -04:00
|
|
|
|
2014-03-26 09:26:31 -04:00
|
|
|
avt := avatar.CacheServer("public/img/avatar/", "public/img/avatar_default.jpg")
|
|
|
|
m.Get("/avatar/:hash", avt.ServeHTTP)
|
2014-03-23 10:40:35 -04:00
|
|
|
|
2014-03-22 16:00:46 -04:00
|
|
|
m.Group("/user", func(r martini.Router) {
|
2014-04-10 16:36:50 -04:00
|
|
|
r.Get("/login", user.SignIn)
|
|
|
|
r.Post("/login", bindIgnErr(auth.LogInForm{}), user.SignInPost)
|
2014-04-12 11:19:17 -04:00
|
|
|
r.Get("/login/:name", user.SocialSignIn)
|
2014-04-10 16:36:50 -04: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 16:00:46 -04:00
|
|
|
}, reqSignOut)
|
|
|
|
m.Group("/user", func(r martini.Router) {
|
2014-04-10 16:36:50 -04:00
|
|
|
r.Get("/logout", user.SignOut)
|
|
|
|
r.Get("/delete", user.Delete)
|
|
|
|
r.Post("/delete", user.DeletePost)
|
|
|
|
r.Get("/setting", user.Setting)
|
|
|
|
r.Post("/setting", bindIgnErr(auth.UpdateProfileForm{}), user.SettingPost)
|
2014-03-22 16:00:46 -04:00
|
|
|
}, reqSignIn)
|
|
|
|
m.Group("/user", func(r martini.Router) {
|
2014-04-13 01:57:42 -04:00
|
|
|
r.Get("/feeds", middleware.Bind(auth.FeedsForm{}), user.Feeds)
|
2014-03-22 16:00:46 -04:00
|
|
|
r.Get("/activate", user.Activate)
|
2014-04-12 20:35:35 -04:00
|
|
|
r.Get("/email2user", user.Email2User)
|
2014-04-10 18:09:57 -04:00
|
|
|
r.Get("/forget_password", user.ForgotPasswd)
|
|
|
|
r.Post("/forget_password", user.ForgotPasswdPost)
|
2014-03-22 16:00:46 -04:00
|
|
|
})
|
|
|
|
m.Group("/user/setting", func(r martini.Router) {
|
2014-04-13 21:00:12 -04:00
|
|
|
r.Get("/social", user.SettingSocial)
|
2014-04-10 18:09:57 -04:00
|
|
|
r.Get("/password", user.SettingPassword)
|
|
|
|
r.Post("/password", bindIgnErr(auth.UpdatePasswdForm{}), user.SettingPasswordPost)
|
2014-04-10 16:36:50 -04:00
|
|
|
r.Any("/ssh", bindIgnErr(auth.AddSSHKeyForm{}), user.SettingSSHKeys)
|
2014-04-10 18:09:57 -04:00
|
|
|
r.Get("/notification", user.SettingNotification)
|
|
|
|
r.Get("/security", user.SettingSecurity)
|
2014-03-22 16:00:46 -04:00
|
|
|
}, reqSignIn)
|
2014-03-10 04:54:52 -04:00
|
|
|
|
2014-03-18 09:58:58 -04:00
|
|
|
m.Get("/user/:username", ignSignIn, user.Profile)
|
2014-03-07 17:08:21 -05:00
|
|
|
|
2014-04-10 18:09:57 -04:00
|
|
|
m.Group("/repo", func(r martini.Router) {
|
|
|
|
m.Get("/create", repo.Create)
|
|
|
|
m.Post("/create", bindIgnErr(auth.CreateRepoForm{}), repo.CreatePost)
|
2014-04-12 20:35:35 -04:00
|
|
|
m.Get("/migrate", repo.Migrate)
|
|
|
|
m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), repo.MigratePost)
|
2014-04-10 18:09:57 -04:00
|
|
|
}, reqSignIn)
|
2014-03-13 02:08:49 -04:00
|
|
|
|
2014-03-22 13:44:02 -04:00
|
|
|
adminReq := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true, AdminRequire: true})
|
|
|
|
|
|
|
|
m.Get("/admin", adminReq, admin.Dashboard)
|
2014-03-22 16:00:46 -04:00
|
|
|
m.Group("/admin", func(r martini.Router) {
|
|
|
|
r.Get("/users", admin.Users)
|
|
|
|
r.Get("/repos", admin.Repositories)
|
|
|
|
r.Get("/config", admin.Config)
|
|
|
|
}, adminReq)
|
|
|
|
m.Group("/admin/users", func(r martini.Router) {
|
2014-04-10 18:09:57 -04:00
|
|
|
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.Get("/:userid/delete", admin.DeleteUser)
|
2014-03-22 16:00:46 -04:00
|
|
|
}, adminReq)
|
|
|
|
|
2014-03-27 11:37:33 -04:00
|
|
|
if martini.Env == martini.Dev {
|
|
|
|
m.Get("/template/**", dev.TemplatePreview)
|
|
|
|
}
|
|
|
|
|
2014-03-22 16:00:46 -04:00
|
|
|
m.Group("/:username/:reponame", func(r martini.Router) {
|
2014-04-12 20:35:35 -04:00
|
|
|
r.Get("/settings", repo.Setting)
|
|
|
|
r.Post("/settings", repo.SettingPost)
|
2014-03-22 16:00:46 -04:00
|
|
|
r.Get("/action/:action", repo.Action)
|
2014-04-10 18:09:57 -04:00
|
|
|
r.Get("/issues/new", repo.CreateIssue)
|
|
|
|
r.Post("/issues/new", bindIgnErr(auth.CreateIssueForm{}), repo.CreateIssuePost)
|
2014-04-10 16:36:50 -04:00
|
|
|
r.Post("/issues/:index", bindIgnErr(auth.CreateIssueForm{}), repo.UpdateIssue)
|
2014-03-26 12:31:01 -04:00
|
|
|
r.Post("/comment/:action", repo.Comment)
|
2014-04-14 01:57:25 -04:00
|
|
|
r.Get("/releases/new", repo.ReleasesNew)
|
2014-03-22 16:00:46 -04:00
|
|
|
}, reqSignIn, middleware.RepoAssignment(true))
|
2014-03-29 22:06:53 -04:00
|
|
|
|
2014-04-14 01:57:25 -04:00
|
|
|
m.Group("/:username/:reponame", func(r martini.Router) {
|
|
|
|
r.Post("/releases/new", bindIgnErr(auth.NewReleaseForm{}), repo.ReleasesNewPost)
|
|
|
|
}, reqSignIn, middleware.RepoAssignment(true, true))
|
|
|
|
|
2014-03-22 16:00:46 -04:00
|
|
|
m.Group("/:username/:reponame", func(r martini.Router) {
|
|
|
|
r.Get("/issues", repo.Issues)
|
2014-03-23 19:09:11 -04:00
|
|
|
r.Get("/issues/:index", repo.ViewIssue)
|
2014-03-22 16:00:46 -04:00
|
|
|
r.Get("/pulls", repo.Pulls)
|
|
|
|
r.Get("/branches", repo.Branches)
|
2014-03-30 01:30:17 -04:00
|
|
|
}, ignSignIn, middleware.RepoAssignment(true))
|
|
|
|
|
|
|
|
m.Group("/:username/:reponame", func(r martini.Router) {
|
2014-03-22 16:00:46 -04:00
|
|
|
r.Get("/src/:branchname", repo.Single)
|
|
|
|
r.Get("/src/:branchname/**", repo.Single)
|
2014-03-24 11:56:32 -04:00
|
|
|
r.Get("/raw/:branchname/**", repo.SingleDownload)
|
2014-03-22 16:00:46 -04:00
|
|
|
r.Get("/commits/:branchname", repo.Commits)
|
2014-04-11 19:44:13 -04:00
|
|
|
r.Get("/commits/:branchname/search", repo.SearchCommits)
|
2014-03-30 01:30:17 -04:00
|
|
|
r.Get("/commit/:branchname", repo.Diff)
|
|
|
|
r.Get("/commit/:branchname/**", repo.Diff)
|
2014-04-14 01:57:25 -04:00
|
|
|
r.Get("/releases", repo.Releases)
|
2014-04-15 12:27:29 -04:00
|
|
|
r.Get("/archive/:branchname/:reponame.zip", repo.ZipDownload)
|
2014-03-30 01:30:17 -04:00
|
|
|
}, ignSignIn, middleware.RepoAssignment(true, true))
|
2014-03-22 16:00:46 -04:00
|
|
|
|
|
|
|
m.Group("/:username", func(r martini.Router) {
|
2014-03-30 01:30:17 -04:00
|
|
|
r.Get("/:reponame", middleware.RepoAssignment(true, true, true), repo.Single)
|
2014-04-11 21:47:39 -04:00
|
|
|
r.Any("/:reponame/**", repo.Http)
|
2014-04-10 10:12:32 -04:00
|
|
|
}, ignSignInAndCsrf)
|
2014-03-21 12:48:26 -04:00
|
|
|
|
2014-03-23 06:27:01 -04:00
|
|
|
// Not found handler.
|
2014-03-23 01:48:01 -04:00
|
|
|
m.NotFound(routers.NotFound)
|
|
|
|
|
2014-04-05 03:17:57 -04:00
|
|
|
protocol := base.Cfg.MustValue("server", "PROTOCOL", "http")
|
2014-02-19 04:50:53 -05:00
|
|
|
listenAddr := fmt.Sprintf("%s:%s",
|
2014-03-07 17:22:15 -05:00
|
|
|
base.Cfg.MustValue("server", "HTTP_ADDR"),
|
|
|
|
base.Cfg.MustValue("server", "HTTP_PORT", "3000"))
|
2014-04-05 03:17:57 -04:00
|
|
|
|
|
|
|
if protocol == "http" {
|
|
|
|
log.Info("Listen: http://%s", listenAddr)
|
|
|
|
if err := http.ListenAndServe(listenAddr, m); err != nil {
|
2014-04-06 13:00:20 -04:00
|
|
|
qlog.Error(err.Error())
|
2014-04-05 03:17:57 -04:00
|
|
|
}
|
|
|
|
} else if protocol == "https" {
|
|
|
|
log.Info("Listen: https://%s", listenAddr)
|
|
|
|
if err := http.ListenAndServeTLS(listenAddr, base.Cfg.MustValue("server", "CERT_FILE"),
|
|
|
|
base.Cfg.MustValue("server", "KEY_FILE"), m); err != nil {
|
2014-04-06 13:00:20 -04:00
|
|
|
qlog.Error(err.Error())
|
2014-04-05 03:17:57 -04:00
|
|
|
}
|
2014-03-18 09:58:58 -04:00
|
|
|
}
|
2014-02-19 04:50:53 -05:00
|
|
|
}
|