web.go 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734
  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. "io/ioutil"
  9. "net"
  10. "net/http"
  11. "net/http/fcgi"
  12. "os"
  13. "path"
  14. "strings"
  15. "github.com/Unknwon/com"
  16. "github.com/go-macaron/binding"
  17. "github.com/go-macaron/cache"
  18. "github.com/go-macaron/captcha"
  19. "github.com/go-macaron/csrf"
  20. "github.com/go-macaron/gzip"
  21. "github.com/go-macaron/i18n"
  22. "github.com/go-macaron/session"
  23. "github.com/go-macaron/toolbox"
  24. "github.com/mcuadros/go-version"
  25. "github.com/urfave/cli"
  26. log "gopkg.in/clog.v1"
  27. "gopkg.in/macaron.v1"
  28. "github.com/gogs/gogs/models"
  29. "github.com/gogs/gogs/pkg/bindata"
  30. "github.com/gogs/gogs/pkg/context"
  31. "github.com/gogs/gogs/pkg/form"
  32. "github.com/gogs/gogs/pkg/mailer"
  33. "github.com/gogs/gogs/pkg/setting"
  34. "github.com/gogs/gogs/pkg/template"
  35. "github.com/gogs/gogs/routes"
  36. "github.com/gogs/gogs/routes/admin"
  37. apiv1 "github.com/gogs/gogs/routes/api/v1"
  38. "github.com/gogs/gogs/routes/dev"
  39. "github.com/gogs/gogs/routes/org"
  40. "github.com/gogs/gogs/routes/repo"
  41. "github.com/gogs/gogs/routes/user"
  42. )
  43. var Web = cli.Command{
  44. Name: "web",
  45. Usage: "Start web server",
  46. Description: `Gogs web server is the only thing you need to run,
  47. and it takes care of all the other things for you`,
  48. Action: runWeb,
  49. Flags: []cli.Flag{
  50. stringFlag("port, p", "3000", "Temporary port number to prevent conflict"),
  51. stringFlag("config, c", "custom/conf/app.ini", "Custom configuration file path"),
  52. },
  53. }
  54. // checkVersion checks if binary matches the version of templates files.
  55. func checkVersion() {
  56. // Templates.
  57. data, err := ioutil.ReadFile(setting.StaticRootPath + "/templates/.VERSION")
  58. if err != nil {
  59. log.Fatal(2, "Fail to read 'templates/.VERSION': %v", err)
  60. }
  61. tplVer := string(data)
  62. if tplVer != setting.AppVer {
  63. if version.Compare(tplVer, setting.AppVer, ">") {
  64. log.Fatal(2, "Binary version is lower than template file version, did you forget to recompile Gogs?")
  65. } else {
  66. log.Fatal(2, "Binary version is higher than template file version, did you forget to update template files?")
  67. }
  68. }
  69. }
  70. // newMacaron initializes Macaron instance.
  71. func newMacaron() *macaron.Macaron {
  72. m := macaron.New()
  73. if !setting.DisableRouterLog {
  74. m.Use(macaron.Logger())
  75. }
  76. m.Use(macaron.Recovery())
  77. if setting.EnableGzip {
  78. m.Use(gzip.Gziper())
  79. }
  80. if setting.Protocol == setting.SCHEME_FCGI {
  81. m.SetURLPrefix(setting.AppSubURL)
  82. }
  83. m.Use(macaron.Static(
  84. path.Join(setting.StaticRootPath, "public"),
  85. macaron.StaticOptions{
  86. SkipLogging: setting.DisableRouterLog,
  87. },
  88. ))
  89. m.Use(macaron.Static(
  90. setting.AvatarUploadPath,
  91. macaron.StaticOptions{
  92. Prefix: "avatars",
  93. SkipLogging: setting.DisableRouterLog,
  94. },
  95. ))
  96. funcMap := template.NewFuncMap()
  97. m.Use(macaron.Renderer(macaron.RenderOptions{
  98. Directory: path.Join(setting.StaticRootPath, "templates"),
  99. AppendDirectories: []string{path.Join(setting.CustomPath, "templates")},
  100. Funcs: funcMap,
  101. IndentJSON: macaron.Env != macaron.PROD,
  102. }))
  103. mailer.InitMailRender(path.Join(setting.StaticRootPath, "templates/mail"),
  104. path.Join(setting.CustomPath, "templates/mail"), funcMap)
  105. localeNames, err := bindata.AssetDir("conf/locale")
  106. if err != nil {
  107. log.Fatal(4, "Fail to list locale files: %v", err)
  108. }
  109. localFiles := make(map[string][]byte)
  110. for _, name := range localeNames {
  111. localFiles[name] = bindata.MustAsset("conf/locale/" + name)
  112. }
  113. m.Use(i18n.I18n(i18n.Options{
  114. SubURL: setting.AppSubURL,
  115. Files: localFiles,
  116. CustomDirectory: path.Join(setting.CustomPath, "conf/locale"),
  117. Langs: setting.Langs,
  118. Names: setting.Names,
  119. DefaultLang: "en-US",
  120. Redirect: true,
  121. }))
  122. m.Use(cache.Cacher(cache.Options{
  123. Adapter: setting.CacheAdapter,
  124. AdapterConfig: setting.CacheConn,
  125. Interval: setting.CacheInterval,
  126. }))
  127. m.Use(captcha.Captchaer(captcha.Options{
  128. SubURL: setting.AppSubURL,
  129. }))
  130. m.Use(session.Sessioner(setting.SessionConfig))
  131. m.Use(csrf.Csrfer(csrf.Options{
  132. Secret: setting.SecretKey,
  133. Cookie: setting.CSRFCookieName,
  134. SetCookie: true,
  135. Header: "X-Csrf-Token",
  136. CookiePath: setting.AppSubURL,
  137. }))
  138. m.Use(toolbox.Toolboxer(m, toolbox.Options{
  139. HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{
  140. &toolbox.HealthCheckFuncDesc{
  141. Desc: "Database connection",
  142. Func: models.Ping,
  143. },
  144. },
  145. }))
  146. m.Use(context.Contexter())
  147. return m
  148. }
  149. func runWeb(c *cli.Context) error {
  150. if c.IsSet("config") {
  151. setting.CustomConf = c.String("config")
  152. }
  153. routes.GlobalInit()
  154. checkVersion()
  155. m := newMacaron()
  156. reqSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: true})
  157. ignSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: setting.Service.RequireSignInView})
  158. ignSignInAndCsrf := context.Toggle(&context.ToggleOptions{DisableCSRF: true})
  159. reqSignOut := context.Toggle(&context.ToggleOptions{SignOutRequired: true})
  160. bindIgnErr := binding.BindIgnErr
  161. m.SetAutoHead(true)
  162. // FIXME: not all routes need go through same middlewares.
  163. // Especially some AJAX requests, we can reduce middleware number to improve performance.
  164. // Routers.
  165. m.Get("/", ignSignIn, routes.Home)
  166. m.Group("/explore", func() {
  167. m.Get("", func(c *context.Context) {
  168. c.Redirect(setting.AppSubURL + "/explore/repos")
  169. })
  170. m.Get("/repos", routes.ExploreRepos)
  171. m.Get("/users", routes.ExploreUsers)
  172. m.Get("/organizations", routes.ExploreOrganizations)
  173. }, ignSignIn)
  174. m.Combo("/install", routes.InstallInit).Get(routes.Install).
  175. Post(bindIgnErr(form.Install{}), routes.InstallPost)
  176. m.Get("/^:type(issues|pulls)$", reqSignIn, user.Issues)
  177. // ***** START: User *****
  178. m.Group("/user", func() {
  179. m.Group("/login", func() {
  180. m.Combo("").Get(user.Login).
  181. Post(bindIgnErr(form.SignIn{}), user.LoginPost)
  182. m.Combo("/two_factor").Get(user.LoginTwoFactor).Post(user.LoginTwoFactorPost)
  183. m.Combo("/two_factor_recovery_code").Get(user.LoginTwoFactorRecoveryCode).Post(user.LoginTwoFactorRecoveryCodePost)
  184. })
  185. m.Get("/sign_up", user.SignUp)
  186. m.Post("/sign_up", bindIgnErr(form.Register{}), user.SignUpPost)
  187. m.Get("/reset_password", user.ResetPasswd)
  188. m.Post("/reset_password", user.ResetPasswdPost)
  189. }, reqSignOut)
  190. m.Group("/user/settings", func() {
  191. m.Get("", user.Settings)
  192. m.Post("", bindIgnErr(form.UpdateProfile{}), user.SettingsPost)
  193. m.Combo("/avatar").Get(user.SettingsAvatar).
  194. Post(binding.MultipartForm(form.Avatar{}), user.SettingsAvatarPost)
  195. m.Post("/avatar/delete", user.SettingsDeleteAvatar)
  196. m.Combo("/email").Get(user.SettingsEmails).
  197. Post(bindIgnErr(form.AddEmail{}), user.SettingsEmailPost)
  198. m.Post("/email/delete", user.DeleteEmail)
  199. m.Get("/password", user.SettingsPassword)
  200. m.Post("/password", bindIgnErr(form.ChangePassword{}), user.SettingsPasswordPost)
  201. m.Combo("/ssh").Get(user.SettingsSSHKeys).
  202. Post(bindIgnErr(form.AddSSHKey{}), user.SettingsSSHKeysPost)
  203. m.Post("/ssh/delete", user.DeleteSSHKey)
  204. m.Group("/security", func() {
  205. m.Get("", user.SettingsSecurity)
  206. m.Combo("/two_factor_enable").Get(user.SettingsTwoFactorEnable).
  207. Post(user.SettingsTwoFactorEnablePost)
  208. m.Combo("/two_factor_recovery_codes").Get(user.SettingsTwoFactorRecoveryCodes).
  209. Post(user.SettingsTwoFactorRecoveryCodesPost)
  210. m.Post("/two_factor_disable", user.SettingsTwoFactorDisable)
  211. })
  212. m.Group("/repositories", func() {
  213. m.Get("", user.SettingsRepos)
  214. m.Post("/leave", user.SettingsLeaveRepo)
  215. })
  216. m.Group("/organizations", func() {
  217. m.Get("", user.SettingsOrganizations)
  218. m.Post("/leave", user.SettingsLeaveOrganization)
  219. })
  220. m.Combo("/applications").Get(user.SettingsApplications).
  221. Post(bindIgnErr(form.NewAccessToken{}), user.SettingsApplicationsPost)
  222. m.Post("/applications/delete", user.SettingsDeleteApplication)
  223. m.Route("/delete", "GET,POST", user.SettingsDelete)
  224. }, reqSignIn, func(c *context.Context) {
  225. c.Data["PageIsUserSettings"] = true
  226. })
  227. m.Group("/user", func() {
  228. m.Any("/activate", user.Activate)
  229. m.Any("/activate_email", user.ActivateEmail)
  230. m.Get("/email2user", user.Email2User)
  231. m.Get("/forget_password", user.ForgotPasswd)
  232. m.Post("/forget_password", user.ForgotPasswdPost)
  233. m.Get("/logout", user.SignOut)
  234. })
  235. // ***** END: User *****
  236. adminReq := context.Toggle(&context.ToggleOptions{SignInRequired: true, AdminRequired: true})
  237. // ***** START: Admin *****
  238. m.Group("/admin", func() {
  239. m.Get("", adminReq, admin.Dashboard)
  240. m.Get("/config", admin.Config)
  241. m.Post("/config/test_mail", admin.SendTestMail)
  242. m.Get("/monitor", admin.Monitor)
  243. m.Group("/users", func() {
  244. m.Get("", admin.Users)
  245. m.Combo("/new").Get(admin.NewUser).Post(bindIgnErr(form.AdminCrateUser{}), admin.NewUserPost)
  246. m.Combo("/:userid").Get(admin.EditUser).Post(bindIgnErr(form.AdminEditUser{}), admin.EditUserPost)
  247. m.Post("/:userid/delete", admin.DeleteUser)
  248. })
  249. m.Group("/orgs", func() {
  250. m.Get("", admin.Organizations)
  251. })
  252. m.Group("/repos", func() {
  253. m.Get("", admin.Repos)
  254. m.Post("/delete", admin.DeleteRepo)
  255. })
  256. m.Group("/auths", func() {
  257. m.Get("", admin.Authentications)
  258. m.Combo("/new").Get(admin.NewAuthSource).Post(bindIgnErr(form.Authentication{}), admin.NewAuthSourcePost)
  259. m.Combo("/:authid").Get(admin.EditAuthSource).
  260. Post(bindIgnErr(form.Authentication{}), admin.EditAuthSourcePost)
  261. m.Post("/:authid/delete", admin.DeleteAuthSource)
  262. })
  263. m.Group("/notices", func() {
  264. m.Get("", admin.Notices)
  265. m.Post("/delete", admin.DeleteNotices)
  266. m.Get("/empty", admin.EmptyNotices)
  267. })
  268. }, adminReq)
  269. // ***** END: Admin *****
  270. m.Group("", func() {
  271. m.Group("/:username", func() {
  272. m.Get("", user.Profile)
  273. m.Get("/followers", user.Followers)
  274. m.Get("/following", user.Following)
  275. m.Get("/stars", user.Stars)
  276. })
  277. m.Get("/attachments/:uuid", func(c *context.Context) {
  278. attach, err := models.GetAttachmentByUUID(c.Params(":uuid"))
  279. if err != nil {
  280. c.NotFoundOrServerError("GetAttachmentByUUID", models.IsErrAttachmentNotExist, err)
  281. return
  282. } else if !com.IsFile(attach.LocalPath()) {
  283. c.NotFound()
  284. return
  285. }
  286. fr, err := os.Open(attach.LocalPath())
  287. if err != nil {
  288. c.Handle(500, "Open", err)
  289. return
  290. }
  291. defer fr.Close()
  292. c.Header().Set("Cache-Control", "public,max-age=86400")
  293. fmt.Println("attach.Name:", attach.Name)
  294. c.Header().Set("Content-Disposition", fmt.Sprintf(`inline; filename="%s"`, attach.Name))
  295. if err = repo.ServeData(c, attach.Name, fr); err != nil {
  296. c.Handle(500, "ServeData", err)
  297. return
  298. }
  299. })
  300. m.Post("/issues/attachments", repo.UploadIssueAttachment)
  301. m.Post("/releases/attachments", repo.UploadReleaseAttachment)
  302. }, ignSignIn)
  303. m.Group("/:username", func() {
  304. m.Get("/action/:action", user.Action)
  305. }, reqSignIn)
  306. if macaron.Env == macaron.DEV {
  307. m.Get("/template/*", dev.TemplatePreview)
  308. }
  309. reqRepoAdmin := context.RequireRepoAdmin()
  310. reqRepoWriter := context.RequireRepoWriter()
  311. // ***** START: Organization *****
  312. m.Group("/org", func() {
  313. m.Group("", func() {
  314. m.Get("/create", org.Create)
  315. m.Post("/create", bindIgnErr(form.CreateOrg{}), org.CreatePost)
  316. }, func(c *context.Context) {
  317. if !c.User.CanCreateOrganization() {
  318. c.NotFound()
  319. }
  320. })
  321. m.Group("/:org", func() {
  322. m.Get("/dashboard", user.Dashboard)
  323. m.Get("/^:type(issues|pulls)$", user.Issues)
  324. m.Get("/members", org.Members)
  325. m.Get("/members/action/:action", org.MembersAction)
  326. m.Get("/teams", org.Teams)
  327. }, context.OrgAssignment(true))
  328. m.Group("/:org", func() {
  329. m.Get("/teams/:team", org.TeamMembers)
  330. m.Get("/teams/:team/repositories", org.TeamRepositories)
  331. m.Route("/teams/:team/action/:action", "GET,POST", org.TeamsAction)
  332. m.Route("/teams/:team/action/repo/:action", "GET,POST", org.TeamsRepoAction)
  333. }, context.OrgAssignment(true, false, true))
  334. m.Group("/:org", func() {
  335. m.Get("/teams/new", org.NewTeam)
  336. m.Post("/teams/new", bindIgnErr(form.CreateTeam{}), org.NewTeamPost)
  337. m.Get("/teams/:team/edit", org.EditTeam)
  338. m.Post("/teams/:team/edit", bindIgnErr(form.CreateTeam{}), org.EditTeamPost)
  339. m.Post("/teams/:team/delete", org.DeleteTeam)
  340. m.Group("/settings", func() {
  341. m.Combo("").Get(org.Settings).
  342. Post(bindIgnErr(form.UpdateOrgSetting{}), org.SettingsPost)
  343. m.Post("/avatar", binding.MultipartForm(form.Avatar{}), org.SettingsAvatar)
  344. m.Post("/avatar/delete", org.SettingsDeleteAvatar)
  345. m.Group("/hooks", func() {
  346. m.Get("", org.Webhooks)
  347. m.Post("/delete", org.DeleteWebhook)
  348. m.Get("/:type/new", repo.WebhooksNew)
  349. m.Post("/gogs/new", bindIgnErr(form.NewWebhook{}), repo.WebHooksNewPost)
  350. m.Post("/slack/new", bindIgnErr(form.NewSlackHook{}), repo.SlackHooksNewPost)
  351. m.Post("/discord/new", bindIgnErr(form.NewDiscordHook{}), repo.DiscordHooksNewPost)
  352. m.Post("/dingtalk/new", bindIgnErr(form.NewDingtalkHook{}), repo.DingtalkHooksNewPost)
  353. m.Get("/:id", repo.WebHooksEdit)
  354. m.Post("/gogs/:id", bindIgnErr(form.NewWebhook{}), repo.WebHooksEditPost)
  355. m.Post("/slack/:id", bindIgnErr(form.NewSlackHook{}), repo.SlackHooksEditPost)
  356. m.Post("/discord/:id", bindIgnErr(form.NewDiscordHook{}), repo.DiscordHooksEditPost)
  357. m.Post("/dingtalk/:id", bindIgnErr(form.NewDingtalkHook{}), repo.DingtalkHooksEditPost)
  358. })
  359. m.Route("/delete", "GET,POST", org.SettingsDelete)
  360. })
  361. m.Route("/invitations/new", "GET,POST", org.Invitation)
  362. }, context.OrgAssignment(true, true))
  363. }, reqSignIn)
  364. // ***** END: Organization *****
  365. // ***** START: Repository *****
  366. m.Group("/repo", func() {
  367. m.Get("/create", repo.Create)
  368. m.Post("/create", bindIgnErr(form.CreateRepo{}), repo.CreatePost)
  369. m.Get("/migrate", repo.Migrate)
  370. m.Post("/migrate", bindIgnErr(form.MigrateRepo{}), repo.MigratePost)
  371. m.Combo("/fork/:repoid").Get(repo.Fork).
  372. Post(bindIgnErr(form.CreateRepo{}), repo.ForkPost)
  373. }, reqSignIn)
  374. m.Group("/:username/:reponame", func() {
  375. m.Group("/settings", func() {
  376. m.Combo("").Get(repo.Settings).
  377. Post(bindIgnErr(form.RepoSetting{}), repo.SettingsPost)
  378. m.Group("/collaboration", func() {
  379. m.Combo("").Get(repo.SettingsCollaboration).Post(repo.SettingsCollaborationPost)
  380. m.Post("/access_mode", repo.ChangeCollaborationAccessMode)
  381. m.Post("/delete", repo.DeleteCollaboration)
  382. })
  383. m.Group("/branches", func() {
  384. m.Get("", repo.SettingsBranches)
  385. m.Post("/default_branch", repo.UpdateDefaultBranch)
  386. m.Combo("/*").Get(repo.SettingsProtectedBranch).
  387. Post(bindIgnErr(form.ProtectBranch{}), repo.SettingsProtectedBranchPost)
  388. }, func(c *context.Context) {
  389. if c.Repo.Repository.IsMirror {
  390. c.NotFound()
  391. return
  392. }
  393. })
  394. m.Group("/hooks", func() {
  395. m.Get("", repo.Webhooks)
  396. m.Post("/delete", repo.DeleteWebhook)
  397. m.Get("/:type/new", repo.WebhooksNew)
  398. m.Post("/gogs/new", bindIgnErr(form.NewWebhook{}), repo.WebHooksNewPost)
  399. m.Post("/slack/new", bindIgnErr(form.NewSlackHook{}), repo.SlackHooksNewPost)
  400. m.Post("/discord/new", bindIgnErr(form.NewDiscordHook{}), repo.DiscordHooksNewPost)
  401. m.Post("/dingtalk/new", bindIgnErr(form.NewDingtalkHook{}), repo.DingtalkHooksNewPost)
  402. m.Post("/gogs/:id", bindIgnErr(form.NewWebhook{}), repo.WebHooksEditPost)
  403. m.Post("/slack/:id", bindIgnErr(form.NewSlackHook{}), repo.SlackHooksEditPost)
  404. m.Post("/discord/:id", bindIgnErr(form.NewDiscordHook{}), repo.DiscordHooksEditPost)
  405. m.Post("/dingtalk/:id", bindIgnErr(form.NewDingtalkHook{}), repo.DingtalkHooksEditPost)
  406. m.Group("/:id", func() {
  407. m.Get("", repo.WebHooksEdit)
  408. m.Post("/test", repo.TestWebhook)
  409. m.Post("/redelivery", repo.RedeliveryWebhook)
  410. })
  411. m.Group("/git", func() {
  412. m.Get("", repo.SettingsGitHooks)
  413. m.Combo("/:name").Get(repo.SettingsGitHooksEdit).
  414. Post(repo.SettingsGitHooksEditPost)
  415. }, context.GitHookService())
  416. })
  417. m.Group("/keys", func() {
  418. m.Combo("").Get(repo.SettingsDeployKeys).
  419. Post(bindIgnErr(form.AddSSHKey{}), repo.SettingsDeployKeysPost)
  420. m.Post("/delete", repo.DeleteDeployKey)
  421. })
  422. }, func(c *context.Context) {
  423. c.Data["PageIsSettings"] = true
  424. })
  425. }, reqSignIn, context.RepoAssignment(), reqRepoAdmin, context.RepoRef())
  426. m.Get("/:username/:reponame/action/:action", reqSignIn, context.RepoAssignment(), repo.Action)
  427. m.Group("/:username/:reponame", func() {
  428. m.Get("/issues", repo.RetrieveLabels, repo.Issues)
  429. m.Get("/issues/:index", repo.ViewIssue)
  430. m.Get("/labels/", repo.RetrieveLabels, repo.Labels)
  431. m.Get("/milestones", repo.Milestones)
  432. }, ignSignIn, context.RepoAssignment(true))
  433. m.Group("/:username/:reponame", func() {
  434. // FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest.
  435. // So they can apply their own enable/disable logic on routers.
  436. m.Group("/issues", func() {
  437. m.Combo("/new", repo.MustEnableIssues).Get(context.RepoRef(), repo.NewIssue).
  438. Post(bindIgnErr(form.NewIssue{}), repo.NewIssuePost)
  439. m.Group("/:index", func() {
  440. m.Post("/title", repo.UpdateIssueTitle)
  441. m.Post("/content", repo.UpdateIssueContent)
  442. m.Combo("/comments").Post(bindIgnErr(form.CreateComment{}), repo.NewComment)
  443. })
  444. })
  445. m.Group("/comments/:id", func() {
  446. m.Post("", repo.UpdateCommentContent)
  447. m.Post("/delete", repo.DeleteComment)
  448. })
  449. }, reqSignIn, context.RepoAssignment(true))
  450. m.Group("/:username/:reponame", func() {
  451. m.Group("/wiki", func() {
  452. m.Get("/?:page", repo.Wiki)
  453. m.Get("/_pages", repo.WikiPages)
  454. }, repo.MustEnableWiki, context.RepoRef())
  455. }, ignSignIn, context.RepoAssignment(false, true))
  456. m.Group("/:username/:reponame", func() {
  457. // FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest.
  458. // So they can apply their own enable/disable logic on routers.
  459. m.Group("/issues", func() {
  460. m.Group("/:index", func() {
  461. m.Post("/label", repo.UpdateIssueLabel)
  462. m.Post("/milestone", repo.UpdateIssueMilestone)
  463. m.Post("/assignee", repo.UpdateIssueAssignee)
  464. }, reqRepoWriter)
  465. })
  466. m.Group("/labels", func() {
  467. m.Post("/new", bindIgnErr(form.CreateLabel{}), repo.NewLabel)
  468. m.Post("/edit", bindIgnErr(form.CreateLabel{}), repo.UpdateLabel)
  469. m.Post("/delete", repo.DeleteLabel)
  470. m.Post("/initialize", bindIgnErr(form.InitializeLabels{}), repo.InitializeLabels)
  471. }, reqRepoWriter, context.RepoRef())
  472. m.Group("/milestones", func() {
  473. m.Combo("/new").Get(repo.NewMilestone).
  474. Post(bindIgnErr(form.CreateMilestone{}), repo.NewMilestonePost)
  475. m.Get("/:id/edit", repo.EditMilestone)
  476. m.Post("/:id/edit", bindIgnErr(form.CreateMilestone{}), repo.EditMilestonePost)
  477. m.Get("/:id/:action", repo.ChangeMilestonStatus)
  478. m.Post("/delete", repo.DeleteMilestone)
  479. }, reqRepoWriter, context.RepoRef())
  480. m.Group("/releases", func() {
  481. m.Get("/new", repo.NewRelease)
  482. m.Post("/new", bindIgnErr(form.NewRelease{}), repo.NewReleasePost)
  483. m.Post("/delete", repo.DeleteRelease)
  484. m.Get("/edit/*", repo.EditRelease)
  485. m.Post("/edit/*", bindIgnErr(form.EditRelease{}), repo.EditReleasePost)
  486. }, repo.MustBeNotBare, reqRepoWriter, func(c *context.Context) {
  487. c.Data["PageIsViewFiles"] = true
  488. })
  489. // FIXME: Should use c.Repo.PullRequest to unify template, currently we have inconsistent URL
  490. // for PR in same repository. After select branch on the page, the URL contains redundant head user name.
  491. // e.g. /org1/test-repo/compare/master...org1:develop
  492. // which should be /org1/test-repo/compare/master...develop
  493. m.Combo("/compare/*", repo.MustAllowPulls).Get(repo.CompareAndPullRequest).
  494. Post(bindIgnErr(form.NewIssue{}), repo.CompareAndPullRequestPost)
  495. m.Group("", func() {
  496. m.Combo("/_edit/*").Get(repo.EditFile).
  497. Post(bindIgnErr(form.EditRepoFile{}), repo.EditFilePost)
  498. m.Combo("/_new/*").Get(repo.NewFile).
  499. Post(bindIgnErr(form.EditRepoFile{}), repo.NewFilePost)
  500. m.Post("/_preview/*", bindIgnErr(form.EditPreviewDiff{}), repo.DiffPreviewPost)
  501. m.Combo("/_delete/*").Get(repo.DeleteFile).
  502. Post(bindIgnErr(form.DeleteRepoFile{}), repo.DeleteFilePost)
  503. m.Group("", func() {
  504. m.Combo("/_upload/*").Get(repo.UploadFile).
  505. Post(bindIgnErr(form.UploadRepoFile{}), repo.UploadFilePost)
  506. m.Post("/upload-file", repo.UploadFileToServer)
  507. m.Post("/upload-remove", bindIgnErr(form.RemoveUploadFile{}), repo.RemoveUploadFileFromServer)
  508. }, func(c *context.Context) {
  509. if !setting.Repository.Upload.Enabled {
  510. c.NotFound()
  511. return
  512. }
  513. })
  514. }, repo.MustBeNotBare, reqRepoWriter, context.RepoRef(), func(c *context.Context) {
  515. if !c.Repo.CanEnableEditor() {
  516. c.NotFound()
  517. return
  518. }
  519. c.Data["PageIsViewFiles"] = true
  520. })
  521. }, reqSignIn, context.RepoAssignment())
  522. m.Group("/:username/:reponame", func() {
  523. m.Group("", func() {
  524. m.Get("/releases", repo.MustBeNotBare, repo.Releases)
  525. m.Get("/pulls", repo.RetrieveLabels, repo.Pulls)
  526. m.Get("/pulls/:index", repo.ViewPull)
  527. }, context.RepoRef())
  528. m.Group("/branches", func() {
  529. m.Get("", repo.Branches)
  530. m.Get("/all", repo.AllBranches)
  531. m.Post("/delete/*", reqSignIn, reqRepoWriter, repo.DeleteBranchPost)
  532. }, repo.MustBeNotBare, func(c *context.Context) {
  533. c.Data["PageIsViewFiles"] = true
  534. })
  535. m.Group("/wiki", func() {
  536. m.Group("", func() {
  537. m.Combo("/_new").Get(repo.NewWiki).
  538. Post(bindIgnErr(form.NewWiki{}), repo.NewWikiPost)
  539. m.Combo("/:page/_edit").Get(repo.EditWiki).
  540. Post(bindIgnErr(form.NewWiki{}), repo.EditWikiPost)
  541. m.Post("/:page/delete", repo.DeleteWikiPagePost)
  542. }, reqSignIn, reqRepoWriter)
  543. }, repo.MustEnableWiki, context.RepoRef())
  544. m.Get("/archive/*", repo.MustBeNotBare, repo.Download)
  545. m.Group("/pulls/:index", func() {
  546. m.Get("/commits", context.RepoRef(), repo.ViewPullCommits)
  547. m.Get("/files", context.RepoRef(), repo.ViewPullFiles)
  548. m.Post("/merge", reqRepoWriter, repo.MergePullRequest)
  549. }, repo.MustAllowPulls)
  550. m.Group("", func() {
  551. m.Get("/src/*", repo.Home)
  552. m.Get("/raw/*", repo.SingleDownload)
  553. m.Get("/commits/*", repo.RefCommits)
  554. m.Get("/commit/:sha([a-f0-9]{7,40})$", repo.Diff)
  555. m.Get("/forks", repo.Forks)
  556. }, repo.MustBeNotBare, context.RepoRef())
  557. m.Get("/commit/:sha([a-f0-9]{7,40})\\.:ext(patch|diff)", repo.MustBeNotBare, repo.RawDiff)
  558. m.Get("/compare/:before([a-z0-9]{40})\\.\\.\\.:after([a-z0-9]{40})", repo.MustBeNotBare, context.RepoRef(), repo.CompareDiff)
  559. }, ignSignIn, context.RepoAssignment())
  560. m.Group("/:username/:reponame", func() {
  561. m.Get("/stars", repo.Stars)
  562. m.Get("/watchers", repo.Watchers)
  563. }, ignSignIn, context.RepoAssignment(), context.RepoRef())
  564. m.Group("/:username", func() {
  565. m.Get("/:reponame", ignSignIn, context.RepoAssignment(), context.RepoRef(), repo.Home)
  566. m.Group("/:reponame", func() {
  567. m.Head("/tasks/trigger", repo.TriggerTask)
  568. })
  569. // Use the regexp to match the repository name
  570. // Duplicated routes to enable different ways of accessing same set of URLs,
  571. // e.g. with or without ".git" suffix.
  572. m.Group("/:reponame([\\d\\w-_\\.]+\\.git$)", func() {
  573. m.Get("", ignSignIn, context.RepoAssignment(), context.RepoRef(), repo.Home)
  574. m.Options("/*", ignSignInAndCsrf, repo.HTTPContexter(), repo.HTTP)
  575. m.Route("/*", "GET,POST", ignSignInAndCsrf, repo.HTTPContexter(), repo.HTTP)
  576. })
  577. m.Options("/:reponame/*", ignSignInAndCsrf, repo.HTTPContexter(), repo.HTTP)
  578. m.Route("/:reponame/*", "GET,POST", ignSignInAndCsrf, repo.HTTPContexter(), repo.HTTP)
  579. })
  580. // ***** END: Repository *****
  581. m.Group("/api", func() {
  582. apiv1.RegisterRoutes(m)
  583. }, ignSignIn)
  584. // robots.txt
  585. m.Get("/robots.txt", func(c *context.Context) {
  586. if setting.HasRobotsTxt {
  587. c.ServeFileContent(path.Join(setting.CustomPath, "robots.txt"))
  588. } else {
  589. c.NotFound()
  590. }
  591. })
  592. // Not found handler.
  593. m.NotFound(routes.NotFound)
  594. // Flag for port number in case first time run conflict.
  595. if c.IsSet("port") {
  596. setting.AppURL = strings.Replace(setting.AppURL, setting.HTTPPort, c.String("port"), 1)
  597. setting.HTTPPort = c.String("port")
  598. }
  599. var listenAddr string
  600. if setting.Protocol == setting.SCHEME_UNIX_SOCKET {
  601. listenAddr = fmt.Sprintf("%s", setting.HTTPAddr)
  602. } else {
  603. listenAddr = fmt.Sprintf("%s:%s", setting.HTTPAddr, setting.HTTPPort)
  604. }
  605. log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubURL)
  606. var err error
  607. switch setting.Protocol {
  608. case setting.SCHEME_HTTP:
  609. err = http.ListenAndServe(listenAddr, m)
  610. case setting.SCHEME_HTTPS:
  611. var tlsMinVersion uint16
  612. switch setting.TLSMinVersion {
  613. case "SSL30":
  614. tlsMinVersion = tls.VersionSSL30
  615. case "TLS12":
  616. tlsMinVersion = tls.VersionTLS12
  617. case "TLS11":
  618. tlsMinVersion = tls.VersionTLS11
  619. case "TLS10":
  620. fallthrough
  621. default:
  622. tlsMinVersion = tls.VersionTLS10
  623. }
  624. server := &http.Server{Addr: listenAddr, TLSConfig: &tls.Config{
  625. MinVersion: tlsMinVersion,
  626. CurvePreferences: []tls.CurveID{tls.CurveP521, tls.CurveP384, tls.CurveP256},
  627. PreferServerCipherSuites: true,
  628. CipherSuites: []uint16{
  629. tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
  630. tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, // Required for HTTP/2 support.
  631. tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
  632. tls.TLS_RSA_WITH_AES_256_CBC_SHA,
  633. },
  634. }, Handler: m}
  635. err = server.ListenAndServeTLS(setting.CertFile, setting.KeyFile)
  636. case setting.SCHEME_FCGI:
  637. err = fcgi.Serve(nil, m)
  638. case setting.SCHEME_UNIX_SOCKET:
  639. os.Remove(listenAddr)
  640. var listener *net.UnixListener
  641. listener, err = net.ListenUnix("unix", &net.UnixAddr{listenAddr, "unix"})
  642. if err != nil {
  643. break // Handle error after switch
  644. }
  645. // FIXME: add proper implementation of signal capture on all protocols
  646. // execute this on SIGTERM or SIGINT: listener.Close()
  647. if err = os.Chmod(listenAddr, os.FileMode(setting.UnixSocketPermission)); err != nil {
  648. log.Fatal(4, "Failed to set permission of unix socket: %v", err)
  649. }
  650. err = http.Serve(listener, m)
  651. default:
  652. log.Fatal(4, "Invalid protocol: %s", setting.Protocol)
  653. }
  654. if err != nil {
  655. log.Fatal(4, "Failed to start server: %v", err)
  656. }
  657. return nil
  658. }