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.

routes.go 24KB

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