2014-02-19 09:50:53 +00: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 19:49:08 +00:00
|
|
|
"html/template"
|
2014-02-19 09:50:53 +00:00
|
|
|
"net/http"
|
2014-03-18 05:33:53 +00:00
|
|
|
"strings"
|
2014-02-19 09:50:53 +00:00
|
|
|
|
|
|
|
"github.com/codegangsta/cli"
|
|
|
|
"github.com/codegangsta/martini"
|
|
|
|
|
2014-03-06 07:21:44 +00:00
|
|
|
"github.com/gogits/binding"
|
|
|
|
|
2014-03-21 05:48:10 +00:00
|
|
|
"github.com/gogits/gogs/models"
|
2014-03-06 07:21:44 +00:00
|
|
|
"github.com/gogits/gogs/modules/auth"
|
2014-03-23 10:13:23 +00:00
|
|
|
"github.com/gogits/gogs/modules/avatar"
|
2014-03-06 07:21:44 +00:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-03-07 22:22:15 +00:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-03-21 05:48:10 +00:00
|
|
|
"github.com/gogits/gogs/modules/mailer"
|
2014-03-15 11:01:50 +00:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-02-19 09:50:53 +00:00
|
|
|
"github.com/gogits/gogs/routers"
|
2014-03-20 11:50:26 +00:00
|
|
|
"github.com/gogits/gogs/routers/admin"
|
2014-03-19 16:50:44 +00:00
|
|
|
"github.com/gogits/gogs/routers/dev"
|
2014-02-20 02:45:43 +00:00
|
|
|
"github.com/gogits/gogs/routers/repo"
|
2014-02-19 09:50:53 +00:00
|
|
|
"github.com/gogits/gogs/routers/user"
|
|
|
|
)
|
|
|
|
|
|
|
|
var CmdWeb = cli.Command{
|
|
|
|
Name: "web",
|
2014-03-24 11:36:38 +00:00
|
|
|
Usage: "Gogs web server",
|
2014-02-19 09:50:53 +00:00
|
|
|
Description: `
|
2014-03-24 11:36:38 +00: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 09:50:53 +00:00
|
|
|
Action: runWeb,
|
2014-03-13 06:09:36 +00:00
|
|
|
Flags: []cli.Flag{},
|
2014-02-19 09:50:53 +00:00
|
|
|
}
|
|
|
|
|
2014-03-21 05:48:10 +00:00
|
|
|
// globalInit is for global configuration reload-able.
|
|
|
|
func globalInit() {
|
|
|
|
base.NewConfigContext()
|
|
|
|
mailer.NewMailerContext()
|
|
|
|
models.LoadModelsConfig()
|
|
|
|
models.LoadRepoConfig()
|
|
|
|
models.NewRepoContext()
|
|
|
|
models.NewEngine()
|
|
|
|
}
|
|
|
|
|
2014-03-18 05:33:53 +00:00
|
|
|
// Check run mode(Default of martini is Dev).
|
|
|
|
func checkRunMode() {
|
|
|
|
switch base.Cfg.MustValue("", "RUN_MODE") {
|
|
|
|
case "prod":
|
|
|
|
martini.Env = martini.Prod
|
|
|
|
case "test":
|
|
|
|
martini.Env = martini.Test
|
|
|
|
}
|
|
|
|
log.Info("Run Mode: %s", strings.Title(martini.Env))
|
|
|
|
}
|
|
|
|
|
2014-03-19 09:31:38 +00: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 09:50:53 +00:00
|
|
|
func runWeb(*cli.Context) {
|
2014-03-21 05:48:10 +00:00
|
|
|
globalInit()
|
2014-03-19 17:24:46 +00:00
|
|
|
base.NewServices()
|
2014-03-18 05:33:53 +00:00
|
|
|
checkRunMode()
|
2014-03-19 08:48:45 +00:00
|
|
|
log.Info("%s %s", base.AppName, base.AppVer)
|
2014-02-19 09:50:53 +00:00
|
|
|
|
2014-03-19 09:31:38 +00:00
|
|
|
m := newMartini()
|
2014-02-19 09:50:53 +00:00
|
|
|
|
2014-03-07 22:08:21 +00:00
|
|
|
// Middlewares.
|
2014-03-19 13:57:55 +00:00
|
|
|
m.Use(middleware.Renderer(middleware.RenderOptions{Funcs: []template.FuncMap{base.TemplateFuncs}}))
|
2014-02-19 09:50:53 +00:00
|
|
|
|
2014-03-15 11:01:50 +00:00
|
|
|
m.Use(middleware.InitContext())
|
|
|
|
|
2014-03-22 17:44:02 +00:00
|
|
|
reqSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true})
|
|
|
|
ignSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: base.Service.RequireSignInView})
|
|
|
|
reqSignOut := middleware.Toggle(&middleware.ToggleOptions{SignOutRequire: true})
|
|
|
|
|
2014-02-19 09:50:53 +00:00
|
|
|
// Routers.
|
2014-03-24 15:58:46 +00:00
|
|
|
m.Get("/", ignSignIn, routers.Home)
|
2014-03-25 16:12:27 +00:00
|
|
|
m.Get("/install", routers.Install)
|
2014-03-18 13:58:58 +00:00
|
|
|
m.Get("/issues", reqSignIn, user.Issues)
|
|
|
|
m.Get("/pulls", reqSignIn, user.Pulls)
|
|
|
|
m.Get("/stars", reqSignIn, user.Stars)
|
2014-03-22 20:00:46 +00:00
|
|
|
m.Get("/help", routers.Help)
|
|
|
|
|
2014-03-26 13:26:31 +00:00
|
|
|
avt := avatar.CacheServer("public/img/avatar/", "public/img/avatar_default.jpg")
|
|
|
|
m.Get("/avatar/:hash", avt.ServeHTTP)
|
2014-03-23 14:40:35 +00:00
|
|
|
|
2014-03-22 20:00:46 +00:00
|
|
|
m.Group("/user", func(r martini.Router) {
|
|
|
|
r.Any("/login", binding.BindIgnErr(auth.LogInForm{}), user.SignIn)
|
2014-03-23 07:21:34 +00:00
|
|
|
r.Any("/sign_up", binding.BindIgnErr(auth.RegisterForm{}), user.SignUp)
|
2014-03-22 20:00:46 +00:00
|
|
|
}, reqSignOut)
|
|
|
|
m.Group("/user", func(r martini.Router) {
|
|
|
|
r.Any("/logout", user.SignOut)
|
|
|
|
r.Any("/delete", user.Delete)
|
|
|
|
r.Any("/setting", binding.BindIgnErr(auth.UpdateProfileForm{}), user.Setting)
|
|
|
|
}, reqSignIn)
|
|
|
|
m.Group("/user", func(r martini.Router) {
|
|
|
|
r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
|
|
|
|
r.Get("/activate", user.Activate)
|
|
|
|
})
|
|
|
|
|
|
|
|
m.Group("/user/setting", func(r martini.Router) {
|
|
|
|
r.Any("/password", binding.BindIgnErr(auth.UpdatePasswdForm{}), user.SettingPassword)
|
|
|
|
r.Any("/ssh", binding.BindIgnErr(auth.AddSSHKeyForm{}), user.SettingSSHKeys)
|
|
|
|
r.Any("/notification", user.SettingNotification)
|
|
|
|
r.Any("/security", user.SettingSecurity)
|
|
|
|
}, reqSignIn)
|
2014-03-10 08:54:52 +00:00
|
|
|
|
2014-03-18 13:58:58 +00:00
|
|
|
m.Get("/user/:username", ignSignIn, user.Profile)
|
2014-03-07 22:08:21 +00:00
|
|
|
|
2014-03-18 13:58:58 +00:00
|
|
|
m.Any("/repo/create", reqSignIn, binding.BindIgnErr(auth.CreateRepoForm{}), repo.Create)
|
2014-03-13 06:08:49 +00:00
|
|
|
|
2014-03-22 17:44:02 +00:00
|
|
|
adminReq := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true, AdminRequire: true})
|
|
|
|
|
|
|
|
m.Get("/admin", adminReq, admin.Dashboard)
|
2014-03-22 20:00:46 +00: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) {
|
|
|
|
r.Any("/new", binding.BindIgnErr(auth.RegisterForm{}), admin.NewUser)
|
|
|
|
r.Any("/:userid", binding.BindIgnErr(auth.AdminEditUserForm{}), admin.EditUser)
|
|
|
|
r.Any("/:userid/delete", admin.DeleteUser)
|
|
|
|
}, adminReq)
|
|
|
|
|
2014-03-27 15:37:33 +00:00
|
|
|
if martini.Env == martini.Dev {
|
|
|
|
m.Get("/template/**", dev.TemplatePreview)
|
|
|
|
}
|
|
|
|
|
2014-03-22 20:00:46 +00:00
|
|
|
m.Group("/:username/:reponame", func(r martini.Router) {
|
|
|
|
r.Post("/settings", repo.SettingPost)
|
|
|
|
r.Get("/settings", repo.Setting)
|
|
|
|
r.Get("/action/:action", repo.Action)
|
2014-03-25 16:12:27 +00:00
|
|
|
r.Any("/issues/new", binding.BindIgnErr(auth.CreateIssueForm{}), repo.CreateIssue)
|
|
|
|
r.Post("/issues/:index", binding.BindIgnErr(auth.CreateIssueForm{}), repo.UpdateIssue)
|
2014-03-26 16:31:01 +00:00
|
|
|
r.Post("/comment/:action", repo.Comment)
|
2014-03-22 20:00:46 +00:00
|
|
|
}, reqSignIn, middleware.RepoAssignment(true))
|
|
|
|
m.Group("/:username/:reponame", func(r martini.Router) {
|
|
|
|
r.Get("/commits/:branchname", repo.Commits)
|
|
|
|
r.Get("/issues", repo.Issues)
|
2014-03-23 23:09:11 +00:00
|
|
|
r.Get("/issues/:index", repo.ViewIssue)
|
2014-03-22 20:00:46 +00:00
|
|
|
r.Get("/pulls", repo.Pulls)
|
|
|
|
r.Get("/branches", repo.Branches)
|
|
|
|
r.Get("/src/:branchname", repo.Single)
|
|
|
|
r.Get("/src/:branchname/**", repo.Single)
|
2014-03-24 15:56:32 +00:00
|
|
|
r.Get("/raw/:branchname/**", repo.SingleDownload)
|
2014-03-22 20:00:46 +00:00
|
|
|
r.Get("/commits/:branchname", repo.Commits)
|
|
|
|
r.Get("/commits/:branchname", repo.Commits)
|
|
|
|
}, ignSignIn, middleware.RepoAssignment(true))
|
|
|
|
|
2014-03-24 13:27:19 +00:00
|
|
|
m.Get("/:username/:reponame/commit/:commitid/**", ignSignIn, middleware.RepoAssignment(true), repo.Diff)
|
|
|
|
m.Get("/:username/:reponame/commit/:commitid", ignSignIn, middleware.RepoAssignment(true), repo.Diff)
|
2014-03-22 20:00:46 +00:00
|
|
|
|
|
|
|
m.Group("/:username", func(r martini.Router) {
|
2014-03-24 15:56:32 +00:00
|
|
|
r.Get("/:reponame", middleware.RepoAssignment(true), repo.Single)
|
2014-03-22 20:00:46 +00:00
|
|
|
r.Get("/:reponame", middleware.RepoAssignment(true), repo.Single)
|
|
|
|
r.Any("/:reponame/**", repo.Http)
|
|
|
|
}, ignSignIn)
|
2014-03-21 16:48:26 +00:00
|
|
|
|
2014-03-23 10:27:01 +00:00
|
|
|
// Not found handler.
|
2014-03-23 05:48:01 +00:00
|
|
|
m.NotFound(routers.NotFound)
|
|
|
|
|
2014-02-19 09:50:53 +00:00
|
|
|
listenAddr := fmt.Sprintf("%s:%s",
|
2014-03-07 22:22:15 +00:00
|
|
|
base.Cfg.MustValue("server", "HTTP_ADDR"),
|
|
|
|
base.Cfg.MustValue("server", "HTTP_PORT", "3000"))
|
2014-02-19 09:50:53 +00:00
|
|
|
log.Info("Listen: %s", listenAddr)
|
2014-03-18 13:58:58 +00:00
|
|
|
if err := http.ListenAndServe(listenAddr, m); err != nil {
|
|
|
|
log.Critical(err.Error())
|
|
|
|
}
|
2014-02-19 09:50:53 +00:00
|
|
|
}
|