You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

web.go 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package cmd
  5. import (
  6. "crypto/tls"
  7. "fmt"
  8. "html/template"
  9. "io/ioutil"
  10. "net/http"
  11. "net/http/fcgi"
  12. "os"
  13. "path"
  14. "strings"
  15. "github.com/Unknwon/macaron"
  16. "github.com/codegangsta/cli"
  17. "github.com/go-xorm/xorm"
  18. "github.com/macaron-contrib/binding"
  19. "github.com/macaron-contrib/cache"
  20. "github.com/macaron-contrib/captcha"
  21. "github.com/macaron-contrib/csrf"
  22. "github.com/macaron-contrib/i18n"
  23. "github.com/macaron-contrib/oauth2"
  24. "github.com/macaron-contrib/session"
  25. "github.com/macaron-contrib/toolbox"
  26. "github.com/mcuadros/go-version"
  27. "gopkg.in/ini.v1"
  28. api "github.com/gogits/go-gogs-client"
  29. "github.com/gogits/gogs/models"
  30. "github.com/gogits/gogs/modules/auth"
  31. "github.com/gogits/gogs/modules/auth/apiv1"
  32. "github.com/gogits/gogs/modules/avatar"
  33. "github.com/gogits/gogs/modules/base"
  34. "github.com/gogits/gogs/modules/bindata"
  35. "github.com/gogits/gogs/modules/log"
  36. "github.com/gogits/gogs/modules/middleware"
  37. "github.com/gogits/gogs/modules/setting"
  38. "github.com/gogits/gogs/routers"
  39. "github.com/gogits/gogs/routers/admin"
  40. "github.com/gogits/gogs/routers/api/v1"
  41. "github.com/gogits/gogs/routers/dev"
  42. "github.com/gogits/gogs/routers/org"
  43. "github.com/gogits/gogs/routers/repo"
  44. "github.com/gogits/gogs/routers/user"
  45. )
  46. var CmdWeb = cli.Command{
  47. Name: "web",
  48. Usage: "Start Gogs web server",
  49. Description: `Gogs web server is the only thing you need to run,
  50. and it takes care of all the other things for you`,
  51. Action: runWeb,
  52. Flags: []cli.Flag{
  53. cli.StringFlag{"port, p", "3000", "Temporary port number to prevent conflict", ""},
  54. cli.StringFlag{"config, c", "custom/conf/app.ini", "Custom configuration file path", ""},
  55. },
  56. }
  57. type VerChecker struct {
  58. ImportPath string
  59. Version func() string
  60. Expected string
  61. }
  62. // checkVersion checks if binary matches the version of templates files.
  63. func checkVersion() {
  64. // Templates.
  65. data, err := ioutil.ReadFile(setting.StaticRootPath + "/templates/.VERSION")
  66. if err != nil {
  67. log.Fatal(4, "Fail to read 'templates/.VERSION': %v", err)
  68. }
  69. if string(data) != setting.AppVer {
  70. log.Fatal(4, "Binary and template file version does not match, did you forget to recompile?")
  71. }
  72. // Check dependency version.
  73. checkers := []VerChecker{
  74. {"github.com/go-xorm/xorm", func() string { return xorm.Version }, "0.4.3.0806"},
  75. {"github.com/Unknwon/macaron", macaron.Version, "0.5.4"},
  76. {"github.com/macaron-contrib/binding", binding.Version, "0.1.0"},
  77. {"github.com/macaron-contrib/cache", cache.Version, "0.0.7"},
  78. {"github.com/macaron-contrib/csrf", csrf.Version, "0.0.3"},
  79. {"github.com/macaron-contrib/i18n", i18n.Version, "0.0.7"},
  80. {"github.com/macaron-contrib/session", session.Version, "0.1.6"},
  81. {"gopkg.in/ini.v1", ini.Version, "1.3.4"},
  82. }
  83. for _, c := range checkers {
  84. if !version.Compare(c.Version(), c.Expected, ">=") {
  85. log.Fatal(4, "Package '%s' version is too old(%s -> %s), did you forget to update?", c.ImportPath, c.Version(), c.Expected)
  86. }
  87. }
  88. }
  89. // newMacaron initializes Macaron instance.
  90. func newMacaron() *macaron.Macaron {
  91. m := macaron.New()
  92. if !setting.DisableRouterLog {
  93. m.Use(macaron.Logger())
  94. }
  95. m.Use(macaron.Recovery())
  96. if setting.EnableGzip {
  97. m.Use(macaron.Gziper())
  98. }
  99. if setting.Protocol == setting.FCGI {
  100. m.SetURLPrefix(setting.AppSubUrl)
  101. }
  102. m.Use(macaron.Static(
  103. path.Join(setting.StaticRootPath, "public"),
  104. macaron.StaticOptions{
  105. SkipLogging: setting.DisableRouterLog,
  106. },
  107. ))
  108. m.Use(macaron.Static(
  109. setting.AvatarUploadPath,
  110. macaron.StaticOptions{
  111. Prefix: "avatars",
  112. SkipLogging: setting.DisableRouterLog,
  113. },
  114. ))
  115. m.Use(macaron.Renderer(macaron.RenderOptions{
  116. Directory: path.Join(setting.StaticRootPath, "templates"),
  117. Funcs: []template.FuncMap{base.TemplateFuncs},
  118. IndentJSON: macaron.Env != macaron.PROD,
  119. }))
  120. localeNames, err := bindata.AssetDir("conf/locale")
  121. if err != nil {
  122. log.Fatal(4, "Fail to list locale files: %v", err)
  123. }
  124. localFiles := make(map[string][]byte)
  125. for _, name := range localeNames {
  126. localFiles[name] = bindata.MustAsset("conf/locale/" + name)
  127. }
  128. m.Use(i18n.I18n(i18n.Options{
  129. SubURL: setting.AppSubUrl,
  130. Files: localFiles,
  131. CustomDirectory: path.Join(setting.CustomPath, "conf/locale"),
  132. Langs: setting.Langs,
  133. Names: setting.Names,
  134. Redirect: true,
  135. }))
  136. m.Use(cache.Cacher(cache.Options{
  137. Adapter: setting.CacheAdapter,
  138. AdapterConfig: setting.CacheConn,
  139. Interval: setting.CacheInternal,
  140. }))
  141. m.Use(captcha.Captchaer(captcha.Options{
  142. SubURL: setting.AppSubUrl,
  143. }))
  144. m.Use(session.Sessioner(setting.SessionConfig))
  145. m.Use(csrf.Csrfer(csrf.Options{
  146. Secret: setting.SecretKey,
  147. SetCookie: true,
  148. Header: "X-Csrf-Token",
  149. CookiePath: setting.AppSubUrl,
  150. }))
  151. m.Use(toolbox.Toolboxer(m, toolbox.Options{
  152. HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{
  153. &toolbox.HealthCheckFuncDesc{
  154. Desc: "Database connection",
  155. Func: models.Ping,
  156. },
  157. },
  158. }))
  159. // OAuth 2.
  160. if setting.OauthService != nil {
  161. for _, info := range setting.OauthService.OauthInfos {
  162. m.Use(oauth2.NewOAuth2Provider(info.Options, info.AuthUrl, info.TokenUrl))
  163. }
  164. }
  165. m.Use(middleware.Contexter())
  166. return m
  167. }
  168. func runWeb(ctx *cli.Context) {
  169. if ctx.IsSet("config") {
  170. setting.CustomConf = ctx.String("config")
  171. }
  172. routers.GlobalInit()
  173. checkVersion()
  174. m := newMacaron()
  175. reqSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true})
  176. ignSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: setting.Service.RequireSignInView})
  177. ignSignInAndCsrf := middleware.Toggle(&middleware.ToggleOptions{DisableCsrf: true})
  178. reqSignOut := middleware.Toggle(&middleware.ToggleOptions{SignOutRequire: true})
  179. bind := binding.Bind
  180. bindIgnErr := binding.BindIgnErr
  181. // Routers.
  182. m.Get("/", ignSignIn, routers.Home)
  183. m.Get("/explore", ignSignIn, routers.Explore)
  184. m.Combo("/install", routers.InstallInit).
  185. Get(routers.Install).
  186. Post(bindIgnErr(auth.InstallForm{}), routers.InstallPost)
  187. m.Group("", func() {
  188. m.Get("/pulls", user.Pulls)
  189. m.Get("/issues", user.Issues)
  190. }, reqSignIn)
  191. // API.
  192. // FIXME: custom form error response.
  193. m.Group("/api", func() {
  194. m.Group("/v1", func() {
  195. // Miscellaneous.
  196. m.Post("/markdown", bindIgnErr(apiv1.MarkdownForm{}), v1.Markdown)
  197. m.Post("/markdown/raw", v1.MarkdownRaw)
  198. // Users.
  199. m.Group("/users", func() {
  200. m.Get("/search", v1.SearchUsers)
  201. m.Group("/:username", func() {
  202. m.Get("", v1.GetUserInfo)
  203. m.Group("/tokens", func() {
  204. m.Combo("").Get(v1.ListAccessTokens).Post(bind(v1.CreateAccessTokenForm{}), v1.CreateAccessToken)
  205. }, middleware.ApiReqBasicAuth())
  206. })
  207. })
  208. // Repositories.
  209. m.Combo("/user/repos", middleware.ApiReqToken()).Get(v1.ListMyRepos).Post(bind(api.CreateRepoOption{}), v1.CreateRepo)
  210. m.Post("/org/:org/repos", middleware.ApiReqToken(), bind(api.CreateRepoOption{}), v1.CreateOrgRepo)
  211. m.Group("/repos", func() {
  212. m.Get("/search", v1.SearchRepos)
  213. m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), v1.MigrateRepo)
  214. m.Group("/:username/:reponame", func() {
  215. m.Combo("/hooks").Get(v1.ListRepoHooks).Post(bind(api.CreateHookOption{}), v1.CreateRepoHook)
  216. m.Patch("/hooks/:id:int", bind(api.EditHookOption{}), v1.EditRepoHook)
  217. m.Get("/raw/*", middleware.RepoRef(), v1.GetRepoRawFile)
  218. }, middleware.ApiRepoAssignment(), middleware.ApiReqToken())
  219. })
  220. m.Any("/*", func(ctx *middleware.Context) {
  221. ctx.HandleAPI(404, "Page not found")
  222. })
  223. })
  224. }, ignSignIn)
  225. // User.
  226. m.Group("/user", func() {
  227. m.Get("/login", user.SignIn)
  228. m.Post("/login", bindIgnErr(auth.SignInForm{}), user.SignInPost)
  229. m.Get("/info/:name", user.SocialSignIn)
  230. m.Get("/sign_up", user.SignUp)
  231. m.Post("/sign_up", bindIgnErr(auth.RegisterForm{}), user.SignUpPost)
  232. m.Get("/reset_password", user.ResetPasswd)
  233. m.Post("/reset_password", user.ResetPasswdPost)
  234. }, reqSignOut)
  235. m.Group("/user/settings", func() {
  236. m.Get("", user.Settings)
  237. m.Post("", bindIgnErr(auth.UpdateProfileForm{}), user.SettingsPost)
  238. m.Post("/avatar", binding.MultipartForm(auth.UploadAvatarForm{}), user.SettingsAvatar)
  239. m.Get("/email", user.SettingsEmails)
  240. m.Post("/email", bindIgnErr(auth.AddEmailForm{}), user.SettingsEmailPost)
  241. m.Get("/password", user.SettingsPassword)
  242. m.Post("/password", bindIgnErr(auth.ChangePasswordForm{}), user.SettingsPasswordPost)
  243. m.Get("/ssh", user.SettingsSSHKeys)
  244. m.Post("/ssh", bindIgnErr(auth.AddSSHKeyForm{}), user.SettingsSSHKeysPost)
  245. m.Get("/social", user.SettingsSocial)
  246. m.Combo("/applications").Get(user.SettingsApplications).Post(bindIgnErr(auth.NewAccessTokenForm{}), user.SettingsApplicationsPost)
  247. m.Route("/delete", "GET,POST", user.SettingsDelete)
  248. }, reqSignIn)
  249. m.Group("/user", func() {
  250. // r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
  251. m.Any("/activate", user.Activate)
  252. m.Any("/activate_email", user.ActivateEmail)
  253. m.Get("/email2user", user.Email2User)
  254. m.Get("/forget_password", user.ForgotPasswd)
  255. m.Post("/forget_password", user.ForgotPasswdPost)
  256. m.Get("/logout", user.SignOut)
  257. })
  258. // Gravatar service.
  259. avt := avatar.CacheServer("public/img/avatar/", "public/img/avatar_default.jpg")
  260. os.MkdirAll("public/img/avatar/", os.ModePerm)
  261. m.Get("/avatar/:hash", avt.ServeHTTP)
  262. adminReq := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true, AdminRequire: true})
  263. m.Group("/admin", func() {
  264. m.Get("", adminReq, admin.Dashboard)
  265. m.Get("/config", admin.Config)
  266. m.Get("/monitor", admin.Monitor)
  267. m.Group("/users", func() {
  268. m.Get("", admin.Users)
  269. m.Get("/new", admin.NewUser)
  270. m.Post("/new", bindIgnErr(auth.RegisterForm{}), admin.NewUserPost)
  271. m.Get("/:userid", admin.EditUser)
  272. m.Post("/:userid", bindIgnErr(auth.AdminEditUserForm{}), admin.EditUserPost)
  273. m.Post("/:userid/delete", admin.DeleteUser)
  274. })
  275. m.Group("/orgs", func() {
  276. m.Get("", admin.Organizations)
  277. })
  278. m.Group("/repos", func() {
  279. m.Get("", admin.Repositories)
  280. })
  281. m.Group("/auths", func() {
  282. m.Get("", admin.Authentications)
  283. m.Get("/new", admin.NewAuthSource)
  284. m.Post("/new", bindIgnErr(auth.AuthenticationForm{}), admin.NewAuthSourcePost)
  285. m.Get("/:authid", admin.EditAuthSource)
  286. m.Post("/:authid", bindIgnErr(auth.AuthenticationForm{}), admin.EditAuthSourcePost)
  287. m.Post("/:authid/delete", admin.DeleteAuthSource)
  288. })
  289. m.Group("/notices", func() {
  290. m.Get("", admin.Notices)
  291. m.Get("/:id:int/delete", admin.DeleteNotice)
  292. })
  293. }, adminReq)
  294. m.Get("/:username", ignSignIn, user.Profile)
  295. if macaron.Env == macaron.DEV {
  296. m.Get("/template/*", dev.TemplatePreview)
  297. }
  298. reqRepoAdmin := middleware.RequireRepoAdmin()
  299. // Organization.
  300. m.Group("/org", func() {
  301. m.Get("/create", org.Create)
  302. m.Post("/create", bindIgnErr(auth.CreateOrgForm{}), org.CreatePost)
  303. m.Group("/:org", func() {
  304. m.Get("/dashboard", user.Dashboard)
  305. m.Get("/members", org.Members)
  306. m.Get("/members/action/:action", org.MembersAction)
  307. m.Get("/teams", org.Teams)
  308. m.Get("/teams/:team", org.TeamMembers)
  309. m.Get("/teams/:team/repositories", org.TeamRepositories)
  310. m.Get("/teams/:team/action/:action", org.TeamsAction)
  311. m.Get("/teams/:team/action/repo/:action", org.TeamsRepoAction)
  312. }, middleware.OrgAssignment(true, true))
  313. m.Group("/:org", func() {
  314. m.Get("/teams/new", org.NewTeam)
  315. m.Post("/teams/new", bindIgnErr(auth.CreateTeamForm{}), org.NewTeamPost)
  316. m.Get("/teams/:team/edit", org.EditTeam)
  317. m.Post("/teams/:team/edit", bindIgnErr(auth.CreateTeamForm{}), org.EditTeamPost)
  318. m.Post("/teams/:team/delete", org.DeleteTeam)
  319. m.Group("/settings", func() {
  320. m.Get("", org.Settings)
  321. m.Post("", bindIgnErr(auth.UpdateOrgSettingForm{}), org.SettingsPost)
  322. m.Get("/hooks", org.SettingsHooks)
  323. m.Get("/hooks/new", repo.WebHooksNew)
  324. m.Post("/hooks/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
  325. m.Post("/hooks/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
  326. m.Get("/hooks/:id", repo.WebHooksEdit)
  327. m.Post("/hooks/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
  328. m.Post("/hooks/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
  329. m.Route("/delete", "GET,POST", org.SettingsDelete)
  330. })
  331. m.Route("/invitations/new", "GET,POST", org.Invitation)
  332. }, middleware.OrgAssignment(true, true, true))
  333. }, reqSignIn)
  334. m.Group("/org", func() {
  335. m.Get("/:org", org.Home)
  336. }, ignSignIn, middleware.OrgAssignment(true))
  337. // Repository.
  338. m.Group("/repo", func() {
  339. m.Get("/create", repo.Create)
  340. m.Post("/create", bindIgnErr(auth.CreateRepoForm{}), repo.CreatePost)
  341. m.Get("/migrate", repo.Migrate)
  342. m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), repo.MigratePost)
  343. m.Get("/fork", repo.Fork)
  344. m.Post("/fork", bindIgnErr(auth.CreateRepoForm{}), repo.ForkPost)
  345. }, reqSignIn)
  346. m.Group("/:username/:reponame", func() {
  347. m.Get("/settings", repo.Settings)
  348. m.Post("/settings", bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost)
  349. m.Group("/settings", func() {
  350. m.Route("/collaboration", "GET,POST", repo.SettingsCollaboration)
  351. m.Get("/hooks", repo.Webhooks)
  352. m.Get("/hooks/new", repo.WebHooksNew)
  353. m.Post("/hooks/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
  354. m.Post("/hooks/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
  355. m.Get("/hooks/:id", repo.WebHooksEdit)
  356. m.Post("/hooks/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
  357. m.Post("/hooks/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
  358. m.Group("/hooks/git", func() {
  359. m.Get("", repo.GitHooks)
  360. m.Get("/:name", repo.GitHooksEdit)
  361. m.Post("/:name", repo.GitHooksEditPost)
  362. }, middleware.GitHookService())
  363. m.Group("/keys", func() {
  364. m.Combo("").Get(repo.SettingsDeployKeys).
  365. Post(bindIgnErr(auth.AddSSHKeyForm{}), repo.SettingsDeployKeysPost)
  366. m.Post("/delete", repo.DeleteDeployKey)
  367. })
  368. })
  369. }, reqSignIn, middleware.RepoAssignment(true), reqRepoAdmin)
  370. m.Group("/:username/:reponame", func() {
  371. m.Get("/action/:action", repo.Action)
  372. m.Group("/issues", func() {
  373. m.Get("/new", repo.CreateIssue)
  374. m.Post("/new", bindIgnErr(auth.CreateIssueForm{}), repo.CreateIssuePost)
  375. m.Post("/:index", bindIgnErr(auth.CreateIssueForm{}), repo.UpdateIssue)
  376. m.Post("/:index/label", repo.UpdateIssueLabel)
  377. m.Post("/:index/milestone", repo.UpdateIssueMilestone)
  378. m.Post("/:index/assignee", repo.UpdateAssignee)
  379. m.Get("/:index/attachment/:id", repo.IssueGetAttachment)
  380. })
  381. m.Group("/labels", func() {
  382. m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel)
  383. m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel)
  384. m.Post("/delete", repo.DeleteLabel)
  385. }, reqRepoAdmin)
  386. m.Group("/milestones", func() {
  387. m.Get("/new", repo.NewMilestone)
  388. m.Post("/new", bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
  389. m.Get("/:id/edit", repo.EditMilestone)
  390. m.Post("/:id/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.EditMilestonePost)
  391. m.Get("/:id/:action", repo.ChangeMilestonStatus)
  392. m.Post("/delete", repo.DeleteMilestone)
  393. }, reqRepoAdmin)
  394. m.Post("/comment/:action", repo.Comment)
  395. m.Group("/releases", func() {
  396. m.Get("/new", repo.NewRelease)
  397. m.Post("/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost)
  398. m.Get("/edit/:tagname", repo.EditRelease)
  399. m.Post("/edit/:tagname", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost)
  400. }, reqRepoAdmin, middleware.RepoRef())
  401. }, reqSignIn, middleware.RepoAssignment(true))
  402. m.Group("/:username/:reponame", func() {
  403. m.Get("/releases", middleware.RepoRef(), repo.Releases)
  404. m.Get("/issues", repo.RetrieveLabels, repo.Issues)
  405. m.Get("/issues/:index", repo.ViewIssue)
  406. m.Get("/labels/", repo.RetrieveLabels, repo.Labels)
  407. m.Get("/milestones", repo.Milestones)
  408. m.Get("/pulls", repo.Pulls)
  409. m.Get("/branches", repo.Branches)
  410. m.Get("/archive/*", repo.Download)
  411. m.Get("/pulls2/", repo.PullRequest2)
  412. m.Group("", func() {
  413. m.Get("/src/*", repo.Home)
  414. m.Get("/raw/*", repo.SingleDownload)
  415. m.Get("/commits/*", repo.RefCommits)
  416. m.Get("/commit/*", repo.Diff)
  417. }, middleware.RepoRef())
  418. m.Get("/compare/:before([a-z0-9]+)...:after([a-z0-9]+)", repo.CompareDiff)
  419. }, ignSignIn, middleware.RepoAssignment(true))
  420. m.Group("/:username", func() {
  421. m.Group("/:reponame", func() {
  422. m.Get("", repo.Home)
  423. m.Get(".git", repo.Home)
  424. }, ignSignIn, middleware.RepoAssignment(true, true), middleware.RepoRef())
  425. m.Group("/:reponame", func() {
  426. m.Any("/*", ignSignInAndCsrf, repo.Http)
  427. m.Head("/hooks/trigger", repo.TriggerHook)
  428. })
  429. })
  430. // robots.txt
  431. m.Get("/robots.txt", func(ctx *middleware.Context) {
  432. if setting.HasRobotsTxt {
  433. ctx.ServeFileContent(path.Join(setting.CustomPath, "robots.txt"))
  434. } else {
  435. ctx.Error(404)
  436. }
  437. })
  438. // Not found handler.
  439. m.NotFound(routers.NotFound)
  440. // Flag for port number in case first time run conflict.
  441. if ctx.IsSet("port") {
  442. setting.AppUrl = strings.Replace(setting.AppUrl, setting.HttpPort, ctx.String("port"), 1)
  443. setting.HttpPort = ctx.String("port")
  444. }
  445. var err error
  446. listenAddr := fmt.Sprintf("%s:%s", setting.HttpAddr, setting.HttpPort)
  447. log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubUrl)
  448. switch setting.Protocol {
  449. case setting.HTTP:
  450. err = http.ListenAndServe(listenAddr, m)
  451. case setting.HTTPS:
  452. server := &http.Server{Addr: listenAddr, TLSConfig: &tls.Config{MinVersion: tls.VersionTLS10}, Handler: m}
  453. err = server.ListenAndServeTLS(setting.CertFile, setting.KeyFile)
  454. case setting.FCGI:
  455. err = fcgi.Serve(nil, m)
  456. default:
  457. log.Fatal(4, "Invalid protocol: %s", setting.Protocol)
  458. }
  459. if err != nil {
  460. log.Fatal(4, "Fail to start server: %v", err)
  461. }
  462. }