您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657
  1. // Copyright 2017 The Gitea 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 routes
  5. import (
  6. "os"
  7. "path"
  8. "code.gitea.io/gitea/models"
  9. "code.gitea.io/gitea/modules/auth"
  10. "code.gitea.io/gitea/modules/context"
  11. "code.gitea.io/gitea/modules/lfs"
  12. "code.gitea.io/gitea/modules/log"
  13. "code.gitea.io/gitea/modules/options"
  14. "code.gitea.io/gitea/modules/public"
  15. "code.gitea.io/gitea/modules/setting"
  16. "code.gitea.io/gitea/modules/templates"
  17. "code.gitea.io/gitea/modules/validation"
  18. "code.gitea.io/gitea/routers"
  19. "code.gitea.io/gitea/routers/admin"
  20. apiv1 "code.gitea.io/gitea/routers/api/v1"
  21. "code.gitea.io/gitea/routers/dev"
  22. "code.gitea.io/gitea/routers/org"
  23. "code.gitea.io/gitea/routers/private"
  24. "code.gitea.io/gitea/routers/repo"
  25. "code.gitea.io/gitea/routers/user"
  26. "github.com/go-macaron/binding"
  27. "github.com/go-macaron/cache"
  28. "github.com/go-macaron/captcha"
  29. "github.com/go-macaron/csrf"
  30. "github.com/go-macaron/gzip"
  31. "github.com/go-macaron/i18n"
  32. "github.com/go-macaron/session"
  33. "github.com/go-macaron/toolbox"
  34. "gopkg.in/macaron.v1"
  35. )
  36. // NewMacaron initializes Macaron instance.
  37. func NewMacaron() *macaron.Macaron {
  38. m := macaron.New()
  39. if !setting.DisableRouterLog {
  40. m.Use(macaron.Logger())
  41. }
  42. m.Use(macaron.Recovery())
  43. if setting.EnableGzip {
  44. m.Use(gzip.Gziper())
  45. }
  46. if setting.Protocol == setting.FCGI {
  47. m.SetURLPrefix(setting.AppSubURL)
  48. }
  49. m.Use(public.Custom(
  50. &public.Options{
  51. SkipLogging: setting.DisableRouterLog,
  52. },
  53. ))
  54. m.Use(public.Static(
  55. &public.Options{
  56. Directory: path.Join(setting.StaticRootPath, "public"),
  57. SkipLogging: setting.DisableRouterLog,
  58. },
  59. ))
  60. m.Use(macaron.Static(
  61. setting.AvatarUploadPath,
  62. macaron.StaticOptions{
  63. Prefix: "avatars",
  64. SkipLogging: setting.DisableRouterLog,
  65. ETag: true,
  66. },
  67. ))
  68. m.Use(templates.Renderer())
  69. models.InitMailRender(templates.Mailer())
  70. localeNames, err := options.Dir("locale")
  71. if err != nil {
  72. log.Fatal(4, "Failed to list locale files: %v", err)
  73. }
  74. localFiles := make(map[string][]byte)
  75. for _, name := range localeNames {
  76. localFiles[name], err = options.Locale(name)
  77. if err != nil {
  78. log.Fatal(4, "Failed to load %s locale file. %v", name, err)
  79. }
  80. }
  81. m.Use(i18n.I18n(i18n.Options{
  82. SubURL: setting.AppSubURL,
  83. Files: localFiles,
  84. Langs: setting.Langs,
  85. Names: setting.Names,
  86. DefaultLang: "en-US",
  87. Redirect: true,
  88. }))
  89. m.Use(cache.Cacher(cache.Options{
  90. Adapter: setting.CacheAdapter,
  91. AdapterConfig: setting.CacheConn,
  92. Interval: setting.CacheInterval,
  93. }))
  94. m.Use(captcha.Captchaer(captcha.Options{
  95. SubURL: setting.AppSubURL,
  96. }))
  97. m.Use(session.Sessioner(setting.SessionConfig))
  98. m.Use(csrf.Csrfer(csrf.Options{
  99. Secret: setting.SecretKey,
  100. Cookie: setting.CSRFCookieName,
  101. SetCookie: true,
  102. Header: "X-Csrf-Token",
  103. CookiePath: setting.AppSubURL,
  104. }))
  105. m.Use(toolbox.Toolboxer(m, toolbox.Options{
  106. HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{
  107. {
  108. Desc: "Database connection",
  109. Func: models.Ping,
  110. },
  111. },
  112. }))
  113. m.Use(context.Contexter())
  114. return m
  115. }
  116. // RegisterRoutes routes routes to Macaron
  117. func RegisterRoutes(m *macaron.Macaron) {
  118. reqSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: true})
  119. ignSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: setting.Service.RequireSignInView})
  120. ignSignInAndCsrf := context.Toggle(&context.ToggleOptions{DisableCSRF: true})
  121. reqSignOut := context.Toggle(&context.ToggleOptions{SignOutRequired: true})
  122. bindIgnErr := binding.BindIgnErr
  123. validation.AddBindingRules()
  124. m.Use(user.GetNotificationCount)
  125. // FIXME: not all routes need go through same middlewares.
  126. // Especially some AJAX requests, we can reduce middleware number to improve performance.
  127. // Routers.
  128. // for health check
  129. m.Head("/", func() string {
  130. return ""
  131. })
  132. m.Get("/", ignSignIn, routers.Home)
  133. m.Get("/swagger", ignSignIn, routers.Swagger)
  134. m.Group("/explore", func() {
  135. m.Get("", func(ctx *context.Context) {
  136. ctx.Redirect(setting.AppSubURL + "/explore/repos")
  137. })
  138. m.Get("/repos", routers.ExploreRepos)
  139. m.Get("/users", routers.ExploreUsers)
  140. m.Get("/organizations", routers.ExploreOrganizations)
  141. }, ignSignIn)
  142. m.Combo("/install", routers.InstallInit).Get(routers.Install).
  143. Post(bindIgnErr(auth.InstallForm{}), routers.InstallPost)
  144. m.Get("/^:type(issues|pulls)$", reqSignIn, user.Issues)
  145. // ***** START: User *****
  146. m.Group("/user", func() {
  147. m.Get("/login", user.SignIn)
  148. m.Post("/login", bindIgnErr(auth.SignInForm{}), user.SignInPost)
  149. if setting.Service.EnableOpenIDSignIn {
  150. m.Combo("/login/openid").
  151. Get(user.SignInOpenID).
  152. Post(bindIgnErr(auth.SignInOpenIDForm{}), user.SignInOpenIDPost)
  153. m.Group("/openid", func() {
  154. m.Combo("/connect").
  155. Get(user.ConnectOpenID).
  156. Post(bindIgnErr(auth.ConnectOpenIDForm{}), user.ConnectOpenIDPost)
  157. m.Combo("/register").
  158. Get(user.RegisterOpenID).
  159. Post(bindIgnErr(auth.SignUpOpenIDForm{}), user.RegisterOpenIDPost)
  160. })
  161. }
  162. m.Get("/sign_up", user.SignUp)
  163. m.Post("/sign_up", bindIgnErr(auth.RegisterForm{}), user.SignUpPost)
  164. m.Get("/reset_password", user.ResetPasswd)
  165. m.Post("/reset_password", user.ResetPasswdPost)
  166. m.Group("/oauth2", func() {
  167. m.Get("/:provider", user.SignInOAuth)
  168. m.Get("/:provider/callback", user.SignInOAuthCallback)
  169. })
  170. m.Get("/link_account", user.LinkAccount)
  171. m.Post("/link_account_signin", bindIgnErr(auth.SignInForm{}), user.LinkAccountPostSignIn)
  172. m.Post("/link_account_signup", bindIgnErr(auth.RegisterForm{}), user.LinkAccountPostRegister)
  173. m.Group("/two_factor", func() {
  174. m.Get("", user.TwoFactor)
  175. m.Post("", bindIgnErr(auth.TwoFactorAuthForm{}), user.TwoFactorPost)
  176. m.Get("/scratch", user.TwoFactorScratch)
  177. m.Post("/scratch", bindIgnErr(auth.TwoFactorScratchAuthForm{}), user.TwoFactorScratchPost)
  178. })
  179. }, reqSignOut)
  180. m.Group("/user/settings", func() {
  181. m.Get("", user.Settings)
  182. m.Post("", bindIgnErr(auth.UpdateProfileForm{}), user.SettingsPost)
  183. m.Combo("/avatar").Get(user.SettingsAvatar).
  184. Post(binding.MultipartForm(auth.AvatarForm{}), user.SettingsAvatarPost)
  185. m.Post("/avatar/delete", user.SettingsDeleteAvatar)
  186. m.Combo("/email").Get(user.SettingsEmails).
  187. Post(bindIgnErr(auth.AddEmailForm{}), user.SettingsEmailPost)
  188. m.Post("/email/delete", user.DeleteEmail)
  189. m.Get("/password", user.SettingsPassword)
  190. m.Post("/password", bindIgnErr(auth.ChangePasswordForm{}), user.SettingsPasswordPost)
  191. if setting.Service.EnableOpenIDSignIn {
  192. m.Group("/openid", func() {
  193. m.Combo("").Get(user.SettingsOpenID).
  194. Post(bindIgnErr(auth.AddOpenIDForm{}), user.SettingsOpenIDPost)
  195. m.Post("/delete", user.DeleteOpenID)
  196. m.Post("/toggle_visibility", user.ToggleOpenIDVisibility)
  197. })
  198. }
  199. m.Combo("/keys").Get(user.SettingsKeys).
  200. Post(bindIgnErr(auth.AddKeyForm{}), user.SettingsKeysPost)
  201. m.Post("/keys/delete", user.DeleteKey)
  202. m.Combo("/applications").Get(user.SettingsApplications).
  203. Post(bindIgnErr(auth.NewAccessTokenForm{}), user.SettingsApplicationsPost)
  204. m.Post("/applications/delete", user.SettingsDeleteApplication)
  205. m.Route("/delete", "GET,POST", user.SettingsDelete)
  206. m.Combo("/account_link").Get(user.SettingsAccountLinks).Post(user.SettingsDeleteAccountLink)
  207. m.Get("/organization", user.SettingsOrganization)
  208. m.Group("/two_factor", func() {
  209. m.Get("", user.SettingsTwoFactor)
  210. m.Post("/regenerate_scratch", user.SettingsTwoFactorRegenerateScratch)
  211. m.Post("/disable", user.SettingsTwoFactorDisable)
  212. m.Get("/enroll", user.SettingsTwoFactorEnroll)
  213. m.Post("/enroll", bindIgnErr(auth.TwoFactorAuthForm{}), user.SettingsTwoFactorEnrollPost)
  214. })
  215. }, reqSignIn, func(ctx *context.Context) {
  216. ctx.Data["PageIsUserSettings"] = true
  217. })
  218. m.Group("/user", func() {
  219. // r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
  220. m.Any("/activate", user.Activate)
  221. m.Any("/activate_email", user.ActivateEmail)
  222. m.Get("/email2user", user.Email2User)
  223. m.Get("/forgot_password", user.ForgotPasswd)
  224. m.Post("/forgot_password", user.ForgotPasswdPost)
  225. m.Get("/logout", user.SignOut)
  226. })
  227. // ***** END: User *****
  228. adminReq := context.Toggle(&context.ToggleOptions{SignInRequired: true, AdminRequired: true})
  229. // ***** START: Admin *****
  230. m.Group("/admin", func() {
  231. m.Get("", adminReq, admin.Dashboard)
  232. m.Get("/config", admin.Config)
  233. m.Post("/config/test_mail", admin.SendTestMail)
  234. m.Get("/monitor", admin.Monitor)
  235. m.Group("/users", func() {
  236. m.Get("", admin.Users)
  237. m.Combo("/new").Get(admin.NewUser).Post(bindIgnErr(auth.AdminCreateUserForm{}), admin.NewUserPost)
  238. m.Combo("/:userid").Get(admin.EditUser).Post(bindIgnErr(auth.AdminEditUserForm{}), admin.EditUserPost)
  239. m.Post("/:userid/delete", admin.DeleteUser)
  240. })
  241. m.Group("/orgs", func() {
  242. m.Get("", admin.Organizations)
  243. })
  244. m.Group("/repos", func() {
  245. m.Get("", admin.Repos)
  246. m.Post("/delete", admin.DeleteRepo)
  247. })
  248. m.Group("/auths", func() {
  249. m.Get("", admin.Authentications)
  250. m.Combo("/new").Get(admin.NewAuthSource).Post(bindIgnErr(auth.AuthenticationForm{}), admin.NewAuthSourcePost)
  251. m.Combo("/:authid").Get(admin.EditAuthSource).
  252. Post(bindIgnErr(auth.AuthenticationForm{}), admin.EditAuthSourcePost)
  253. m.Post("/:authid/delete", admin.DeleteAuthSource)
  254. })
  255. m.Group("/notices", func() {
  256. m.Get("", admin.Notices)
  257. m.Post("/delete", admin.DeleteNotices)
  258. m.Get("/empty", admin.EmptyNotices)
  259. })
  260. }, adminReq)
  261. // ***** END: Admin *****
  262. m.Group("", func() {
  263. m.Group("/:username", func() {
  264. m.Get("", user.Profile)
  265. m.Get("/followers", user.Followers)
  266. m.Get("/following", user.Following)
  267. })
  268. m.Get("/attachments/:uuid", func(ctx *context.Context) {
  269. attach, err := models.GetAttachmentByUUID(ctx.Params(":uuid"))
  270. if err != nil {
  271. if models.IsErrAttachmentNotExist(err) {
  272. ctx.Error(404)
  273. } else {
  274. ctx.Handle(500, "GetAttachmentByUUID", err)
  275. }
  276. return
  277. }
  278. fr, err := os.Open(attach.LocalPath())
  279. if err != nil {
  280. ctx.Handle(500, "Open", err)
  281. return
  282. }
  283. defer fr.Close()
  284. if err := attach.IncreaseDownloadCount(); err != nil {
  285. ctx.Handle(500, "Update", err)
  286. return
  287. }
  288. if err = repo.ServeData(ctx, attach.Name, fr); err != nil {
  289. ctx.Handle(500, "ServeData", err)
  290. return
  291. }
  292. })
  293. m.Post("/attachments", repo.UploadAttachment)
  294. }, ignSignIn)
  295. m.Group("/:username", func() {
  296. m.Get("/action/:action", user.Action)
  297. }, reqSignIn)
  298. if macaron.Env == macaron.DEV {
  299. m.Get("/template/*", dev.TemplatePreview)
  300. }
  301. reqRepoAdmin := context.RequireRepoAdmin()
  302. reqRepoWriter := context.RequireRepoWriter()
  303. // ***** START: Organization *****
  304. m.Group("/org", func() {
  305. m.Group("", func() {
  306. m.Get("/create", org.Create)
  307. m.Post("/create", bindIgnErr(auth.CreateOrgForm{}), org.CreatePost)
  308. }, func(ctx *context.Context) {
  309. if !ctx.User.CanCreateOrganization() {
  310. ctx.NotFound()
  311. }
  312. })
  313. m.Group("/:org", func() {
  314. m.Get("/dashboard", user.Dashboard)
  315. m.Get("/^:type(issues|pulls)$", user.Issues)
  316. m.Get("/members", org.Members)
  317. m.Get("/members/action/:action", org.MembersAction)
  318. m.Get("/teams", org.Teams)
  319. }, context.OrgAssignment(true))
  320. m.Group("/:org", func() {
  321. m.Get("/teams/:team", org.TeamMembers)
  322. m.Get("/teams/:team/repositories", org.TeamRepositories)
  323. m.Route("/teams/:team/action/:action", "GET,POST", org.TeamsAction)
  324. m.Route("/teams/:team/action/repo/:action", "GET,POST", org.TeamsRepoAction)
  325. }, context.OrgAssignment(true, false, true))
  326. m.Group("/:org", func() {
  327. m.Get("/teams/new", org.NewTeam)
  328. m.Post("/teams/new", bindIgnErr(auth.CreateTeamForm{}), org.NewTeamPost)
  329. m.Get("/teams/:team/edit", org.EditTeam)
  330. m.Post("/teams/:team/edit", bindIgnErr(auth.CreateTeamForm{}), org.EditTeamPost)
  331. m.Post("/teams/:team/delete", org.DeleteTeam)
  332. m.Group("/settings", func() {
  333. m.Combo("").Get(org.Settings).
  334. Post(bindIgnErr(auth.UpdateOrgSettingForm{}), org.SettingsPost)
  335. m.Post("/avatar", binding.MultipartForm(auth.AvatarForm{}), org.SettingsAvatar)
  336. m.Post("/avatar/delete", org.SettingsDeleteAvatar)
  337. m.Group("/hooks", func() {
  338. m.Get("", org.Webhooks)
  339. m.Post("/delete", org.DeleteWebhook)
  340. m.Get("/:type/new", repo.WebhooksNew)
  341. m.Post("/gitea/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
  342. m.Post("/gogs/new", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksNewPost)
  343. m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
  344. m.Get("/:id", repo.WebHooksEdit)
  345. m.Post("/gitea/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
  346. m.Post("/gogs/:id", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksEditPost)
  347. m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
  348. })
  349. m.Route("/delete", "GET,POST", org.SettingsDelete)
  350. })
  351. m.Route("/invitations/new", "GET,POST", org.Invitation)
  352. }, context.OrgAssignment(true, true))
  353. }, reqSignIn)
  354. // ***** END: Organization *****
  355. // ***** START: Repository *****
  356. m.Group("/repo", func() {
  357. m.Get("/create", repo.Create)
  358. m.Post("/create", bindIgnErr(auth.CreateRepoForm{}), repo.CreatePost)
  359. m.Get("/migrate", repo.Migrate)
  360. m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), repo.MigratePost)
  361. m.Combo("/fork/:repoid").Get(repo.Fork).
  362. Post(bindIgnErr(auth.CreateRepoForm{}), repo.ForkPost)
  363. }, reqSignIn)
  364. m.Group("/:username/:reponame", func() {
  365. m.Group("/settings", func() {
  366. m.Combo("").Get(repo.Settings).
  367. Post(bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost)
  368. m.Group("/collaboration", func() {
  369. m.Combo("").Get(repo.Collaboration).Post(repo.CollaborationPost)
  370. m.Post("/access_mode", repo.ChangeCollaborationAccessMode)
  371. m.Post("/delete", repo.DeleteCollaboration)
  372. })
  373. m.Group("/branches", func() {
  374. m.Combo("").Get(repo.ProtectedBranch).Post(repo.ProtectedBranchPost)
  375. m.Post("/can_push", repo.ChangeProtectedBranch)
  376. m.Post("/delete", repo.DeleteProtectedBranch)
  377. }, repo.MustBeNotBare)
  378. m.Group("/hooks", func() {
  379. m.Get("", repo.Webhooks)
  380. m.Post("/delete", repo.DeleteWebhook)
  381. m.Get("/:type/new", repo.WebhooksNew)
  382. m.Post("/gitea/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
  383. m.Post("/gogs/new", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksNewPost)
  384. m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
  385. m.Get("/:id", repo.WebHooksEdit)
  386. m.Post("/:id/test", repo.TestWebhook)
  387. m.Post("/gitea/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
  388. m.Post("/gogs/:id", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksNewPost)
  389. m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
  390. m.Group("/git", func() {
  391. m.Get("", repo.GitHooks)
  392. m.Combo("/:name").Get(repo.GitHooksEdit).
  393. Post(repo.GitHooksEditPost)
  394. }, context.GitHookService())
  395. })
  396. m.Group("/keys", func() {
  397. m.Combo("").Get(repo.DeployKeys).
  398. Post(bindIgnErr(auth.AddKeyForm{}), repo.DeployKeysPost)
  399. m.Post("/delete", repo.DeleteDeployKey)
  400. })
  401. }, func(ctx *context.Context) {
  402. ctx.Data["PageIsSettings"] = true
  403. })
  404. }, reqSignIn, context.RepoAssignment(), reqRepoAdmin, context.UnitTypes(), context.LoadRepoUnits(), context.RepoRef())
  405. m.Get("/:username/:reponame/action/:action", reqSignIn, context.RepoAssignment(), repo.Action)
  406. m.Group("/:username/:reponame", func() {
  407. // FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest.
  408. // So they can apply their own enable/disable logic on routers.
  409. m.Group("/issues", func() {
  410. m.Combo("/new", repo.MustEnableIssues).Get(context.RepoRef(), repo.NewIssue).
  411. Post(bindIgnErr(auth.CreateIssueForm{}), repo.NewIssuePost)
  412. m.Group("/:index", func() {
  413. m.Post("/title", repo.UpdateIssueTitle)
  414. m.Post("/content", repo.UpdateIssueContent)
  415. m.Post("/watch", repo.IssueWatch)
  416. m.Combo("/comments").Post(bindIgnErr(auth.CreateCommentForm{}), repo.NewComment)
  417. })
  418. m.Post("/labels", repo.UpdateIssueLabel, reqRepoWriter)
  419. m.Post("/milestone", repo.UpdateIssueMilestone, reqRepoWriter)
  420. m.Post("/assignee", repo.UpdateIssueAssignee, reqRepoWriter)
  421. m.Post("/status", repo.UpdateIssueStatus, reqRepoWriter)
  422. }, context.CheckUnit(models.UnitTypeIssues))
  423. m.Group("/comments/:id", func() {
  424. m.Post("", repo.UpdateCommentContent)
  425. m.Post("/delete", repo.DeleteComment)
  426. }, context.CheckUnit(models.UnitTypeIssues))
  427. m.Group("/labels", func() {
  428. m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel)
  429. m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel)
  430. m.Post("/delete", repo.DeleteLabel)
  431. m.Post("/initialize", bindIgnErr(auth.InitializeLabelsForm{}), repo.InitializeLabels)
  432. }, reqRepoWriter, context.RepoRef(), context.CheckUnit(models.UnitTypeIssues))
  433. m.Group("/milestones", func() {
  434. m.Combo("/new").Get(repo.NewMilestone).
  435. Post(bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
  436. m.Get("/:id/edit", repo.EditMilestone)
  437. m.Post("/:id/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.EditMilestonePost)
  438. m.Get("/:id/:action", repo.ChangeMilestonStatus)
  439. m.Post("/delete", repo.DeleteMilestone)
  440. }, reqRepoWriter, context.RepoRef(), context.CheckUnit(models.UnitTypeIssues))
  441. m.Combo("/compare/*", repo.MustAllowPulls, repo.SetEditorconfigIfExists).
  442. Get(repo.CompareAndPullRequest).
  443. Post(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost)
  444. m.Group("", func() {
  445. m.Combo("/_edit/*").Get(repo.EditFile).
  446. Post(bindIgnErr(auth.EditRepoFileForm{}), repo.EditFilePost)
  447. m.Combo("/_new/*").Get(repo.NewFile).
  448. Post(bindIgnErr(auth.EditRepoFileForm{}), repo.NewFilePost)
  449. m.Post("/_preview/*", bindIgnErr(auth.EditPreviewDiffForm{}), repo.DiffPreviewPost)
  450. m.Combo("/_delete/*").Get(repo.DeleteFile).
  451. Post(bindIgnErr(auth.DeleteRepoFileForm{}), repo.DeleteFilePost)
  452. m.Group("", func() {
  453. m.Combo("/_upload/*").Get(repo.UploadFile).
  454. Post(bindIgnErr(auth.UploadRepoFileForm{}), repo.UploadFilePost)
  455. m.Post("/upload-file", repo.UploadFileToServer)
  456. m.Post("/upload-remove", bindIgnErr(auth.RemoveUploadFileForm{}), repo.RemoveUploadFileFromServer)
  457. }, func(ctx *context.Context) {
  458. if !setting.Repository.Upload.Enabled {
  459. ctx.Handle(404, "", nil)
  460. return
  461. }
  462. })
  463. }, repo.MustBeNotBare, reqRepoWriter, context.RepoRef(), func(ctx *context.Context) {
  464. if !ctx.Repo.Repository.CanEnableEditor() || ctx.Repo.IsViewCommit {
  465. ctx.Handle(404, "", nil)
  466. return
  467. }
  468. })
  469. }, reqSignIn, context.RepoAssignment(), context.UnitTypes(), context.LoadRepoUnits())
  470. // Releases
  471. m.Group("/:username/:reponame", func() {
  472. m.Group("/releases", func() {
  473. m.Get("/", repo.MustBeNotBare, repo.Releases)
  474. }, repo.MustBeNotBare, context.RepoRef())
  475. m.Group("/releases", func() {
  476. m.Get("/new", repo.NewRelease)
  477. m.Post("/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost)
  478. m.Post("/delete", repo.DeleteRelease)
  479. }, reqSignIn, repo.MustBeNotBare, reqRepoWriter, context.RepoRef())
  480. m.Group("/releases", func() {
  481. m.Get("/edit/*", repo.EditRelease)
  482. m.Post("/edit/*", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost)
  483. }, reqSignIn, repo.MustBeNotBare, reqRepoWriter, func(ctx *context.Context) {
  484. var err error
  485. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(ctx.Repo.Repository.DefaultBranch)
  486. if err != nil {
  487. ctx.Handle(500, "GetBranchCommit", err)
  488. return
  489. }
  490. ctx.Repo.CommitsCount, err = ctx.Repo.Commit.CommitsCount()
  491. if err != nil {
  492. ctx.Handle(500, "CommitsCount", err)
  493. return
  494. }
  495. ctx.Data["CommitsCount"] = ctx.Repo.CommitsCount
  496. })
  497. }, context.RepoAssignment(), context.UnitTypes(), context.LoadRepoUnits(), context.CheckUnit(models.UnitTypeReleases))
  498. m.Group("/:username/:reponame", func() {
  499. m.Group("", func() {
  500. m.Get("/^:type(issues|pulls)$", repo.RetrieveLabels, repo.Issues)
  501. m.Get("/^:type(issues|pulls)$/:index", repo.ViewIssue)
  502. m.Get("/labels/", repo.RetrieveLabels, repo.Labels)
  503. m.Get("/milestones", repo.Milestones)
  504. }, context.RepoRef())
  505. m.Group("/wiki", func() {
  506. m.Get("/?:page", repo.Wiki)
  507. m.Get("/_pages", repo.WikiPages)
  508. m.Group("", func() {
  509. m.Combo("/_new").Get(repo.NewWiki).
  510. Post(bindIgnErr(auth.NewWikiForm{}), repo.NewWikiPost)
  511. m.Combo("/:page/_edit").Get(repo.EditWiki).
  512. Post(bindIgnErr(auth.NewWikiForm{}), repo.EditWikiPost)
  513. m.Post("/:page/delete", repo.DeleteWikiPagePost)
  514. }, reqSignIn, reqRepoWriter)
  515. }, repo.MustEnableWiki, context.RepoRef(), context.CheckUnit(models.UnitTypeWiki))
  516. m.Group("/wiki", func() {
  517. m.Get("/raw/*", repo.WikiRaw)
  518. m.Get("/*", repo.WikiRaw)
  519. }, repo.MustEnableWiki, context.CheckUnit(models.UnitTypeWiki), context.CheckUnit(models.UnitTypeWiki))
  520. m.Get("/archive/*", repo.MustBeNotBare, repo.Download, context.CheckUnit(models.UnitTypeCode))
  521. m.Group("/pulls/:index", func() {
  522. m.Get("/commits", context.RepoRef(), repo.ViewPullCommits)
  523. m.Get("/files", context.RepoRef(), repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.ViewPullFiles)
  524. m.Post("/merge", reqRepoWriter, repo.MergePullRequest)
  525. m.Post("/cleanup", context.RepoRef(), repo.CleanUpPullRequest)
  526. }, repo.MustAllowPulls, context.CheckUnit(models.UnitTypePullRequests))
  527. m.Group("", func() {
  528. m.Get("/src/*", repo.SetEditorconfigIfExists, repo.Home)
  529. m.Get("/raw/*", repo.SingleDownload)
  530. m.Get("/commits/*", repo.RefCommits)
  531. m.Get("/graph", repo.Graph)
  532. m.Get("/commit/:sha([a-f0-9]{7,40})$", repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.Diff)
  533. m.Get("/forks", repo.Forks)
  534. }, context.RepoRef(), context.CheckUnit(models.UnitTypeCode))
  535. m.Get("/commit/:sha([a-f0-9]{7,40})\\.:ext(patch|diff)", repo.MustBeNotBare, repo.RawDiff, context.CheckUnit(models.UnitTypeCode))
  536. m.Get("/compare/:before([a-z0-9]{40})\\.\\.\\.:after([a-z0-9]{40})", repo.SetEditorconfigIfExists,
  537. repo.SetDiffViewStyle, repo.MustBeNotBare, repo.CompareDiff, context.CheckUnit(models.UnitTypeCode))
  538. }, ignSignIn, context.RepoAssignment(), context.UnitTypes(), context.LoadRepoUnits())
  539. m.Group("/:username/:reponame", func() {
  540. m.Get("/stars", repo.Stars)
  541. m.Get("/watchers", repo.Watchers)
  542. }, ignSignIn, context.RepoAssignment(), context.RepoRef(), context.UnitTypes(), context.LoadRepoUnits())
  543. m.Group("/:username", func() {
  544. m.Group("/:reponame", func() {
  545. m.Get("", repo.SetEditorconfigIfExists, repo.Home)
  546. m.Get("\\.git$", repo.SetEditorconfigIfExists, repo.Home)
  547. }, ignSignIn, context.RepoAssignment(), context.RepoRef(), context.UnitTypes(), context.LoadRepoUnits())
  548. m.Group("/:reponame", func() {
  549. m.Group("/info/lfs", func() {
  550. m.Post("/objects/batch", lfs.BatchHandler)
  551. m.Get("/objects/:oid/:filename", lfs.ObjectOidHandler)
  552. m.Any("/objects/:oid", lfs.ObjectOidHandler)
  553. m.Post("/objects", lfs.PostHandler)
  554. m.Any("/*", func(ctx *context.Context) {
  555. ctx.Handle(404, "", nil)
  556. })
  557. }, ignSignInAndCsrf)
  558. m.Any("/*", ignSignInAndCsrf, repo.HTTP)
  559. m.Head("/tasks/trigger", repo.TriggerTask)
  560. })
  561. })
  562. // ***** END: Repository *****
  563. m.Group("/notifications", func() {
  564. m.Get("", user.Notifications)
  565. m.Post("/status", user.NotificationStatusPost)
  566. }, reqSignIn)
  567. m.Group("/api", func() {
  568. apiv1.RegisterRoutes(m)
  569. }, ignSignIn)
  570. m.Group("/api/internal", func() {
  571. // package name internal is ideal but Golang is not allowed, so we use private as package name.
  572. private.RegisterRoutes(m)
  573. })
  574. // robots.txt
  575. m.Get("/robots.txt", func(ctx *context.Context) {
  576. if setting.HasRobotsTxt {
  577. ctx.ServeFileContent(path.Join(setting.CustomPath, "robots.txt"))
  578. } else {
  579. ctx.Error(404)
  580. }
  581. })
  582. // Not found handler.
  583. m.NotFound(routers.NotFound)
  584. }