web.go 26 KB

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