mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 17:23:36 +01:00
513 lines
17 KiB
Go
513 lines
17 KiB
Go
// 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 cmd
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"fmt"
|
|
"html/template"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/http/fcgi"
|
|
"os"
|
|
"path"
|
|
"strings"
|
|
|
|
"github.com/Unknwon/macaron"
|
|
"github.com/codegangsta/cli"
|
|
"github.com/macaron-contrib/binding"
|
|
"github.com/macaron-contrib/cache"
|
|
"github.com/macaron-contrib/captcha"
|
|
"github.com/macaron-contrib/csrf"
|
|
"github.com/macaron-contrib/i18n"
|
|
"github.com/macaron-contrib/oauth2"
|
|
"github.com/macaron-contrib/session"
|
|
"github.com/macaron-contrib/toolbox"
|
|
"gopkg.in/ini.v1"
|
|
|
|
api "github.com/gogits/go-gogs-client"
|
|
|
|
"github.com/gogits/gogs/models"
|
|
"github.com/gogits/gogs/modules/auth"
|
|
"github.com/gogits/gogs/modules/auth/apiv1"
|
|
"github.com/gogits/gogs/modules/avatar"
|
|
"github.com/gogits/gogs/modules/base"
|
|
"github.com/gogits/gogs/modules/bindata"
|
|
"github.com/gogits/gogs/modules/git"
|
|
"github.com/gogits/gogs/modules/log"
|
|
"github.com/gogits/gogs/modules/middleware"
|
|
"github.com/gogits/gogs/modules/setting"
|
|
"github.com/gogits/gogs/routers"
|
|
"github.com/gogits/gogs/routers/admin"
|
|
"github.com/gogits/gogs/routers/api/v1"
|
|
"github.com/gogits/gogs/routers/dev"
|
|
"github.com/gogits/gogs/routers/org"
|
|
"github.com/gogits/gogs/routers/repo"
|
|
"github.com/gogits/gogs/routers/user"
|
|
)
|
|
|
|
var CmdWeb = cli.Command{
|
|
Name: "web",
|
|
Usage: "Start Gogs web server",
|
|
Description: `Gogs web server is the only thing you need to run,
|
|
and it takes care of all the other things for you`,
|
|
Action: runWeb,
|
|
Flags: []cli.Flag{
|
|
cli.StringFlag{"port, p", "3000", "Temporary port number to prevent conflict", ""},
|
|
cli.StringFlag{"config, c", "custom/conf/app.ini", "Custom configuration file path", ""},
|
|
},
|
|
}
|
|
|
|
type VerChecker struct {
|
|
ImportPath string
|
|
Version func() string
|
|
Expected string
|
|
}
|
|
|
|
// checkVersion checks if binary matches the version of templates files.
|
|
func checkVersion() {
|
|
// Templates.
|
|
data, err := ioutil.ReadFile(setting.StaticRootPath + "/templates/.VERSION")
|
|
if err != nil {
|
|
log.Fatal(4, "Fail to read 'templates/.VERSION': %v", err)
|
|
}
|
|
if string(data) != setting.AppVer {
|
|
log.Fatal(4, "Binary and template file version does not match, did you forget to recompile?")
|
|
}
|
|
|
|
// Check dependency version.
|
|
checkers := []VerChecker{
|
|
{"github.com/Unknwon/macaron", macaron.Version, "0.5.4"},
|
|
{"github.com/macaron-contrib/binding", binding.Version, "0.1.0"},
|
|
{"github.com/macaron-contrib/cache", cache.Version, "0.0.7"},
|
|
{"github.com/macaron-contrib/csrf", csrf.Version, "0.0.3"},
|
|
{"github.com/macaron-contrib/i18n", i18n.Version, "0.0.7"},
|
|
{"github.com/macaron-contrib/session", session.Version, "0.1.6"},
|
|
{"gopkg.in/ini.v1", ini.Version, "1.3.4"},
|
|
}
|
|
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)
|
|
}
|
|
}
|
|
}
|
|
|
|
// newMacaron initializes Macaron instance.
|
|
func newMacaron() *macaron.Macaron {
|
|
m := macaron.New()
|
|
if !setting.DisableRouterLog {
|
|
m.Use(macaron.Logger())
|
|
}
|
|
m.Use(macaron.Recovery())
|
|
if setting.EnableGzip {
|
|
m.Use(macaron.Gziper())
|
|
}
|
|
if setting.Protocol == setting.FCGI {
|
|
m.SetURLPrefix(setting.AppSubUrl)
|
|
}
|
|
m.Use(macaron.Static(
|
|
path.Join(setting.StaticRootPath, "public"),
|
|
macaron.StaticOptions{
|
|
SkipLogging: setting.DisableRouterLog,
|
|
},
|
|
))
|
|
m.Use(macaron.Static(
|
|
setting.AvatarUploadPath,
|
|
macaron.StaticOptions{
|
|
Prefix: "avatars",
|
|
SkipLogging: setting.DisableRouterLog,
|
|
},
|
|
))
|
|
m.Use(macaron.Renderer(macaron.RenderOptions{
|
|
Directory: path.Join(setting.StaticRootPath, "templates"),
|
|
Funcs: []template.FuncMap{base.TemplateFuncs},
|
|
IndentJSON: macaron.Env != macaron.PROD,
|
|
}))
|
|
|
|
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)
|
|
}
|
|
m.Use(i18n.I18n(i18n.Options{
|
|
SubURL: setting.AppSubUrl,
|
|
Files: localFiles,
|
|
CustomDirectory: path.Join(setting.CustomPath, "conf/locale"),
|
|
Langs: setting.Langs,
|
|
Names: setting.Names,
|
|
Redirect: true,
|
|
}))
|
|
m.Use(cache.Cacher(cache.Options{
|
|
Adapter: setting.CacheAdapter,
|
|
AdapterConfig: setting.CacheConn,
|
|
Interval: setting.CacheInternal,
|
|
}))
|
|
m.Use(captcha.Captchaer(captcha.Options{
|
|
SubURL: setting.AppSubUrl,
|
|
}))
|
|
m.Use(session.Sessioner(setting.SessionConfig))
|
|
m.Use(csrf.Csrfer(csrf.Options{
|
|
Secret: setting.SecretKey,
|
|
SetCookie: true,
|
|
Header: "X-Csrf-Token",
|
|
CookiePath: setting.AppSubUrl,
|
|
}))
|
|
m.Use(toolbox.Toolboxer(m, toolbox.Options{
|
|
HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{
|
|
&toolbox.HealthCheckFuncDesc{
|
|
Desc: "Database connection",
|
|
Func: models.Ping,
|
|
},
|
|
},
|
|
}))
|
|
|
|
// OAuth 2.
|
|
if setting.OauthService != nil {
|
|
for _, info := range setting.OauthService.OauthInfos {
|
|
m.Use(oauth2.NewOAuth2Provider(info.Options, info.AuthUrl, info.TokenUrl))
|
|
}
|
|
}
|
|
m.Use(middleware.Contexter())
|
|
return m
|
|
}
|
|
|
|
func runWeb(ctx *cli.Context) {
|
|
if ctx.IsSet("config") {
|
|
setting.CustomConf = ctx.String("config")
|
|
}
|
|
routers.GlobalInit()
|
|
checkVersion()
|
|
|
|
m := newMacaron()
|
|
|
|
reqSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true})
|
|
ignSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: setting.Service.RequireSignInView})
|
|
ignSignInAndCsrf := middleware.Toggle(&middleware.ToggleOptions{DisableCsrf: true})
|
|
reqSignOut := middleware.Toggle(&middleware.ToggleOptions{SignOutRequire: true})
|
|
|
|
bind := binding.Bind
|
|
bindIgnErr := binding.BindIgnErr
|
|
|
|
// Routers.
|
|
m.Get("/", ignSignIn, routers.Home)
|
|
m.Get("/explore", ignSignIn, routers.Explore)
|
|
m.Combo("/install", routers.InstallInit).
|
|
Get(routers.Install).
|
|
Post(bindIgnErr(auth.InstallForm{}), routers.InstallPost)
|
|
m.Group("", func() {
|
|
m.Get("/pulls", user.Pulls)
|
|
m.Get("/issues", user.Issues)
|
|
}, reqSignIn)
|
|
|
|
// API.
|
|
// FIXME: custom form error response.
|
|
m.Group("/api", func() {
|
|
m.Group("/v1", func() {
|
|
// Miscellaneous.
|
|
m.Post("/markdown", bindIgnErr(apiv1.MarkdownForm{}), v1.Markdown)
|
|
m.Post("/markdown/raw", v1.MarkdownRaw)
|
|
|
|
// Users.
|
|
m.Group("/users", func() {
|
|
m.Get("/search", v1.SearchUsers)
|
|
|
|
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())
|
|
})
|
|
})
|
|
|
|
// Repositories.
|
|
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)
|
|
m.Group("/repos", func() {
|
|
m.Get("/search", v1.SearchRepos)
|
|
m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), v1.MigrateRepo)
|
|
|
|
m.Group("/:username/:reponame", func() {
|
|
m.Combo("/hooks").Get(v1.ListRepoHooks).Post(bind(api.CreateHookOption{}), v1.CreateRepoHook)
|
|
m.Patch("/hooks/:id:int", bind(api.EditHookOption{}), v1.EditRepoHook)
|
|
m.Get("/raw/*", middleware.RepoRef(), v1.GetRepoRawFile)
|
|
}, middleware.ApiRepoAssignment(), middleware.ApiReqToken())
|
|
})
|
|
|
|
m.Any("/*", func(ctx *middleware.Context) {
|
|
ctx.HandleAPI(404, "Page not found")
|
|
})
|
|
})
|
|
}, ignSignIn)
|
|
|
|
// User.
|
|
m.Group("/user", func() {
|
|
m.Get("/login", user.SignIn)
|
|
m.Post("/login", bindIgnErr(auth.SignInForm{}), user.SignInPost)
|
|
m.Get("/info/:name", user.SocialSignIn)
|
|
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)
|
|
}, reqSignOut)
|
|
m.Group("/user/settings", func() {
|
|
m.Get("", user.Settings)
|
|
m.Post("", bindIgnErr(auth.UpdateProfileForm{}), user.SettingsPost)
|
|
m.Post("/avatar", binding.MultipartForm(auth.UploadAvatarForm{}), user.SettingsAvatar)
|
|
m.Get("/email", user.SettingsEmails)
|
|
m.Post("/email", bindIgnErr(auth.AddEmailForm{}), user.SettingsEmailPost)
|
|
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)
|
|
m.Combo("/applications").Get(user.SettingsApplications).Post(bindIgnErr(auth.NewAccessTokenForm{}), user.SettingsApplicationsPost)
|
|
m.Route("/delete", "GET,POST", user.SettingsDelete)
|
|
}, reqSignIn)
|
|
m.Group("/user", func() {
|
|
// r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
|
|
m.Any("/activate", user.Activate)
|
|
m.Any("/activate_email", user.ActivateEmail)
|
|
m.Get("/email2user", user.Email2User)
|
|
m.Get("/forget_password", user.ForgotPasswd)
|
|
m.Post("/forget_password", user.ForgotPasswdPost)
|
|
m.Get("/logout", user.SignOut)
|
|
})
|
|
|
|
// 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)
|
|
|
|
adminReq := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true, AdminRequire: true})
|
|
|
|
m.Group("/admin", func() {
|
|
m.Get("", adminReq, admin.Dashboard)
|
|
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)
|
|
})
|
|
|
|
m.Group("/orgs", func() {
|
|
m.Get("", admin.Organizations)
|
|
})
|
|
|
|
m.Group("/repos", func() {
|
|
m.Get("", admin.Repositories)
|
|
})
|
|
|
|
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)
|
|
})
|
|
|
|
m.Group("/notices", func() {
|
|
m.Get("", admin.Notices)
|
|
m.Get("/:id:int/delete", admin.DeleteNotice)
|
|
})
|
|
}, adminReq)
|
|
|
|
m.Get("/:username", ignSignIn, user.Profile)
|
|
|
|
if macaron.Env == macaron.DEV {
|
|
m.Get("/template/*", dev.TemplatePreview)
|
|
}
|
|
|
|
reqRepoAdmin := middleware.RequireRepoAdmin()
|
|
|
|
// Organization.
|
|
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)
|
|
}, middleware.OrgAssignment(true, true))
|
|
|
|
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)
|
|
})
|
|
|
|
m.Route("/invitations/new", "GET,POST", org.Invitation)
|
|
}, middleware.OrgAssignment(true, true, true))
|
|
}, reqSignIn)
|
|
m.Group("/org", func() {
|
|
m.Get("/:org", org.Home)
|
|
}, ignSignIn, middleware.OrgAssignment(true))
|
|
|
|
// Repository.
|
|
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)
|
|
m.Get("/fork", repo.Fork)
|
|
m.Post("/fork", bindIgnErr(auth.CreateRepoForm{}), repo.ForkPost)
|
|
}, reqSignIn)
|
|
|
|
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)
|
|
}, middleware.GitHookService())
|
|
})
|
|
}, reqSignIn, middleware.RepoAssignment(true), reqRepoAdmin)
|
|
|
|
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.Group("/labels", func() {
|
|
m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel)
|
|
m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel)
|
|
m.Post("/delete", repo.DeleteLabel)
|
|
}, reqRepoAdmin)
|
|
m.Group("/milestones", func() {
|
|
m.Get("/new", repo.NewMilestone)
|
|
m.Post("/new", bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
|
|
m.Get("/:index/edit", repo.MilestoneActions)
|
|
m.Post("/:index/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.UpdateMilestonePost)
|
|
m.Get("/:index/:action", repo.MilestoneActions)
|
|
}, reqRepoAdmin)
|
|
|
|
m.Post("/comment/:action", repo.Comment)
|
|
|
|
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)
|
|
}, reqRepoAdmin, middleware.RepoRef())
|
|
}, reqSignIn, middleware.RepoAssignment(true))
|
|
|
|
m.Group("/:username/:reponame", func() {
|
|
m.Get("/releases", middleware.RepoRef(), repo.Releases)
|
|
m.Get("/issues", repo.RetrieveLabels, repo.Issues)
|
|
m.Get("/issues/:index", repo.ViewIssue)
|
|
m.Get("/labels/", repo.RetrieveLabels, repo.Labels)
|
|
m.Get("/milestones", repo.Milestones)
|
|
m.Get("/pulls", repo.Pulls)
|
|
m.Get("/branches", repo.Branches)
|
|
m.Get("/archive/*", repo.Download)
|
|
m.Get("/pulls2/", repo.PullRequest2)
|
|
m.Head("/hooks/trigger", repo.TriggerHook)
|
|
|
|
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())
|
|
|
|
m.Get("/compare/:before([a-z0-9]+)...:after([a-z0-9]+)", repo.CompareDiff)
|
|
}, ignSignIn, middleware.RepoAssignment(true))
|
|
|
|
m.Group("/:username", func() {
|
|
m.Group("/:reponame", func() {
|
|
m.Get("", repo.Home)
|
|
m.Get(".git", repo.Home)
|
|
}, ignSignIn, middleware.RepoAssignment(true, true), middleware.RepoRef())
|
|
|
|
m.Any("/:reponame/*", ignSignInAndCsrf, repo.Http)
|
|
})
|
|
|
|
// robots.txt
|
|
m.Get("/robots.txt", func(ctx *middleware.Context) {
|
|
if setting.HasRobotsTxt {
|
|
ctx.ServeFileContent(path.Join(setting.CustomPath, "robots.txt"))
|
|
} else {
|
|
ctx.Error(404)
|
|
}
|
|
})
|
|
|
|
// Not found handler.
|
|
m.NotFound(routers.NotFound)
|
|
|
|
// 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")
|
|
}
|
|
|
|
var err error
|
|
listenAddr := fmt.Sprintf("%s:%s", setting.HttpAddr, setting.HttpPort)
|
|
log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubUrl)
|
|
switch setting.Protocol {
|
|
case setting.HTTP:
|
|
err = http.ListenAndServe(listenAddr, m)
|
|
case setting.HTTPS:
|
|
server := &http.Server{Addr: listenAddr, TLSConfig: &tls.Config{MinVersion: tls.VersionTLS10}, Handler: m}
|
|
err = server.ListenAndServeTLS(setting.CertFile, setting.KeyFile)
|
|
case setting.FCGI:
|
|
err = fcgi.Serve(nil, m)
|
|
default:
|
|
log.Fatal(4, "Invalid protocol: %s", setting.Protocol)
|
|
}
|
|
|
|
if err != nil {
|
|
log.Fatal(4, "Fail to start server: %v", err)
|
|
}
|
|
}
|