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 17KB

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