You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

routes.go 23 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646
  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("/routes").
  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.Group("/two_factor", func() {
  208. m.Get("", user.SettingsTwoFactor)
  209. m.Post("/regenerate_scratch", user.SettingsTwoFactorRegenerateScratch)
  210. m.Post("/disable", user.SettingsTwoFactorDisable)
  211. m.Get("/enroll", user.SettingsTwoFactorEnroll)
  212. m.Post("/enroll", bindIgnErr(auth.TwoFactorAuthForm{}), user.SettingsTwoFactorEnrollPost)
  213. })
  214. }, reqSignIn, func(ctx *context.Context) {
  215. ctx.Data["PageIsUserSettings"] = true
  216. })
  217. m.Group("/user", func() {
  218. // r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
  219. m.Any("/activate", user.Activate)
  220. m.Any("/activate_email", user.ActivateEmail)
  221. m.Get("/email2user", user.Email2User)
  222. m.Get("/forgot_password", user.ForgotPasswd)
  223. m.Post("/forgot_password", user.ForgotPasswdPost)
  224. m.Get("/logout", user.SignOut)
  225. })
  226. // ***** END: User *****
  227. adminReq := context.Toggle(&context.ToggleOptions{SignInRequired: true, AdminRequired: true})
  228. // ***** START: Admin *****
  229. m.Group("/admin", func() {
  230. m.Get("", adminReq, admin.Dashboard)
  231. m.Get("/config", admin.Config)
  232. m.Post("/config/test_mail", admin.SendTestMail)
  233. m.Get("/monitor", admin.Monitor)
  234. m.Group("/users", func() {
  235. m.Get("", admin.Users)
  236. m.Combo("/new").Get(admin.NewUser).Post(bindIgnErr(auth.AdminCreateUserForm{}), admin.NewUserPost)
  237. m.Combo("/:userid").Get(admin.EditUser).Post(bindIgnErr(auth.AdminEditUserForm{}), admin.EditUserPost)
  238. m.Post("/:userid/delete", admin.DeleteUser)
  239. })
  240. m.Group("/orgs", func() {
  241. m.Get("", admin.Organizations)
  242. })
  243. m.Group("/repos", func() {
  244. m.Get("", admin.Repos)
  245. m.Post("/delete", admin.DeleteRepo)
  246. })
  247. m.Group("/auths", func() {
  248. m.Get("", admin.Authentications)
  249. m.Combo("/new").Get(admin.NewAuthSource).Post(bindIgnErr(auth.AuthenticationForm{}), admin.NewAuthSourcePost)
  250. m.Combo("/:authid").Get(admin.EditAuthSource).
  251. Post(bindIgnErr(auth.AuthenticationForm{}), admin.EditAuthSourcePost)
  252. m.Post("/:authid/delete", admin.DeleteAuthSource)
  253. })
  254. m.Group("/notices", func() {
  255. m.Get("", admin.Notices)
  256. m.Post("/delete", admin.DeleteNotices)
  257. m.Get("/empty", admin.EmptyNotices)
  258. })
  259. }, adminReq)
  260. // ***** END: Admin *****
  261. m.Group("", func() {
  262. m.Group("/:username", func() {
  263. m.Get("", user.Profile)
  264. m.Get("/followers", user.Followers)
  265. m.Get("/following", user.Following)
  266. })
  267. m.Get("/attachments/:uuid", func(ctx *context.Context) {
  268. attach, err := models.GetAttachmentByUUID(ctx.Params(":uuid"))
  269. if err != nil {
  270. if models.IsErrAttachmentNotExist(err) {
  271. ctx.Error(404)
  272. } else {
  273. ctx.Handle(500, "GetAttachmentByUUID", err)
  274. }
  275. return
  276. }
  277. fr, err := os.Open(attach.LocalPath())
  278. if err != nil {
  279. ctx.Handle(500, "Open", err)
  280. return
  281. }
  282. defer fr.Close()
  283. if err := attach.IncreaseDownloadCount(); err != nil {
  284. ctx.Handle(500, "Update", err)
  285. return
  286. }
  287. if err = repo.ServeData(ctx, attach.Name, fr); err != nil {
  288. ctx.Handle(500, "ServeData", err)
  289. return
  290. }
  291. })
  292. m.Post("/attachments", repo.UploadAttachment)
  293. }, ignSignIn)
  294. m.Group("/:username", func() {
  295. m.Get("/action/:action", user.Action)
  296. }, reqSignIn)
  297. if macaron.Env == macaron.DEV {
  298. m.Get("/template/*", dev.TemplatePreview)
  299. }
  300. reqRepoAdmin := context.RequireRepoAdmin()
  301. reqRepoWriter := context.RequireRepoWriter()
  302. // ***** START: Organization *****
  303. m.Group("/org", func() {
  304. m.Group("", func() {
  305. m.Get("/create", org.Create)
  306. m.Post("/create", bindIgnErr(auth.CreateOrgForm{}), org.CreatePost)
  307. }, func(ctx *context.Context) {
  308. if !ctx.User.CanCreateOrganization() {
  309. ctx.NotFound()
  310. }
  311. })
  312. m.Group("/:org", func() {
  313. m.Get("/dashboard", user.Dashboard)
  314. m.Get("/^:type(issues|pulls)$", user.Issues)
  315. m.Get("/members", org.Members)
  316. m.Get("/members/action/:action", org.MembersAction)
  317. m.Get("/teams", org.Teams)
  318. }, context.OrgAssignment(true))
  319. m.Group("/:org", func() {
  320. m.Get("/teams/:team", org.TeamMembers)
  321. m.Get("/teams/:team/repositories", org.TeamRepositories)
  322. m.Route("/teams/:team/action/:action", "GET,POST", org.TeamsAction)
  323. m.Route("/teams/:team/action/repo/:action", "GET,POST", org.TeamsRepoAction)
  324. }, context.OrgAssignment(true, false, true))
  325. m.Group("/:org", func() {
  326. m.Get("/teams/new", org.NewTeam)
  327. m.Post("/teams/new", bindIgnErr(auth.CreateTeamForm{}), org.NewTeamPost)
  328. m.Get("/teams/:team/edit", org.EditTeam)
  329. m.Post("/teams/:team/edit", bindIgnErr(auth.CreateTeamForm{}), org.EditTeamPost)
  330. m.Post("/teams/:team/delete", org.DeleteTeam)
  331. m.Group("/settings", func() {
  332. m.Combo("").Get(org.Settings).
  333. Post(bindIgnErr(auth.UpdateOrgSettingForm{}), org.SettingsPost)
  334. m.Post("/avatar", binding.MultipartForm(auth.AvatarForm{}), org.SettingsAvatar)
  335. m.Post("/avatar/delete", org.SettingsDeleteAvatar)
  336. m.Group("/hooks", func() {
  337. m.Get("", org.Webhooks)
  338. m.Post("/delete", org.DeleteWebhook)
  339. m.Get("/:type/new", repo.WebhooksNew)
  340. m.Post("/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
  341. m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
  342. m.Get("/:id", repo.WebHooksEdit)
  343. m.Post("/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
  344. m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
  345. })
  346. m.Route("/delete", "GET,POST", org.SettingsDelete)
  347. })
  348. m.Route("/invitations/new", "GET,POST", org.Invitation)
  349. }, context.OrgAssignment(true, true))
  350. }, reqSignIn)
  351. // ***** END: Organization *****
  352. // ***** START: Repository *****
  353. m.Group("/repo", func() {
  354. m.Get("/create", repo.Create)
  355. m.Post("/create", bindIgnErr(auth.CreateRepoForm{}), repo.CreatePost)
  356. m.Get("/migrate", repo.Migrate)
  357. m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), repo.MigratePost)
  358. m.Combo("/fork/:repoid").Get(repo.Fork).
  359. Post(bindIgnErr(auth.CreateRepoForm{}), repo.ForkPost)
  360. }, reqSignIn)
  361. m.Group("/:username/:reponame", func() {
  362. m.Group("/settings", func() {
  363. m.Combo("").Get(repo.Settings).
  364. Post(bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost)
  365. m.Group("/collaboration", func() {
  366. m.Combo("").Get(repo.Collaboration).Post(repo.CollaborationPost)
  367. m.Post("/access_mode", repo.ChangeCollaborationAccessMode)
  368. m.Post("/delete", repo.DeleteCollaboration)
  369. })
  370. m.Group("/branches", func() {
  371. m.Combo("").Get(repo.ProtectedBranch).Post(repo.ProtectedBranchPost)
  372. m.Post("/can_push", repo.ChangeProtectedBranch)
  373. m.Post("/delete", repo.DeleteProtectedBranch)
  374. }, repo.MustBeNotBare)
  375. m.Group("/hooks", func() {
  376. m.Get("", repo.Webhooks)
  377. m.Post("/delete", repo.DeleteWebhook)
  378. m.Get("/:type/new", repo.WebhooksNew)
  379. m.Post("/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
  380. m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
  381. m.Get("/:id", repo.WebHooksEdit)
  382. m.Post("/:id/test", repo.TestWebhook)
  383. m.Post("/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
  384. m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
  385. m.Group("/git", func() {
  386. m.Get("", repo.GitHooks)
  387. m.Combo("/:name").Get(repo.GitHooksEdit).
  388. Post(repo.GitHooksEditPost)
  389. }, context.GitHookService())
  390. })
  391. m.Group("/keys", func() {
  392. m.Combo("").Get(repo.DeployKeys).
  393. Post(bindIgnErr(auth.AddKeyForm{}), repo.DeployKeysPost)
  394. m.Post("/delete", repo.DeleteDeployKey)
  395. })
  396. }, func(ctx *context.Context) {
  397. ctx.Data["PageIsSettings"] = true
  398. }, context.UnitTypes())
  399. }, reqSignIn, context.RepoAssignment(), reqRepoAdmin, context.RepoRef())
  400. m.Get("/:username/:reponame/action/:action", reqSignIn, context.RepoAssignment(), repo.Action)
  401. m.Group("/:username/:reponame", func() {
  402. // FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest.
  403. // So they can apply their own enable/disable logic on routers.
  404. m.Group("/issues", func() {
  405. m.Combo("/new", repo.MustEnableIssues).Get(context.RepoRef(), repo.NewIssue).
  406. Post(bindIgnErr(auth.CreateIssueForm{}), repo.NewIssuePost)
  407. m.Group("/:index", func() {
  408. m.Post("/title", repo.UpdateIssueTitle)
  409. m.Post("/content", repo.UpdateIssueContent)
  410. m.Post("/watch", repo.IssueWatch)
  411. m.Combo("/comments").Post(bindIgnErr(auth.CreateCommentForm{}), repo.NewComment)
  412. })
  413. m.Post("/labels", repo.UpdateIssueLabel, reqRepoWriter)
  414. m.Post("/milestone", repo.UpdateIssueMilestone, reqRepoWriter)
  415. m.Post("/assignee", repo.UpdateIssueAssignee, reqRepoWriter)
  416. m.Post("/status", repo.UpdateIssueStatus, reqRepoWriter)
  417. })
  418. m.Group("/comments/:id", func() {
  419. m.Post("", repo.UpdateCommentContent)
  420. m.Post("/delete", repo.DeleteComment)
  421. })
  422. m.Group("/labels", func() {
  423. m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel)
  424. m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel)
  425. m.Post("/delete", repo.DeleteLabel)
  426. m.Post("/initialize", bindIgnErr(auth.InitializeLabelsForm{}), repo.InitializeLabels)
  427. }, reqRepoWriter, context.RepoRef())
  428. m.Group("/milestones", func() {
  429. m.Combo("/new").Get(repo.NewMilestone).
  430. Post(bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
  431. m.Get("/:id/edit", repo.EditMilestone)
  432. m.Post("/:id/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.EditMilestonePost)
  433. m.Get("/:id/:action", repo.ChangeMilestonStatus)
  434. m.Post("/delete", repo.DeleteMilestone)
  435. }, reqRepoWriter, context.RepoRef())
  436. m.Group("/releases", func() {
  437. m.Get("/new", repo.NewRelease)
  438. m.Post("/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost)
  439. m.Post("/delete", repo.DeleteRelease)
  440. }, repo.MustBeNotBare, reqRepoWriter, context.RepoRef())
  441. m.Group("/releases", func() {
  442. m.Get("/edit/*", repo.EditRelease)
  443. m.Post("/edit/*", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost)
  444. }, repo.MustBeNotBare, reqRepoWriter, func(ctx *context.Context) {
  445. var err error
  446. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(ctx.Repo.Repository.DefaultBranch)
  447. if err != nil {
  448. ctx.Handle(500, "GetBranchCommit", err)
  449. return
  450. }
  451. ctx.Repo.CommitsCount, err = ctx.Repo.Commit.CommitsCount()
  452. if err != nil {
  453. ctx.Handle(500, "CommitsCount", err)
  454. return
  455. }
  456. ctx.Data["CommitsCount"] = ctx.Repo.CommitsCount
  457. })
  458. m.Combo("/compare/*", repo.MustAllowPulls, repo.SetEditorconfigIfExists).
  459. Get(repo.CompareAndPullRequest).
  460. Post(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost)
  461. m.Group("", func() {
  462. m.Combo("/_edit/*").Get(repo.EditFile).
  463. Post(bindIgnErr(auth.EditRepoFileForm{}), repo.EditFilePost)
  464. m.Combo("/_new/*").Get(repo.NewFile).
  465. Post(bindIgnErr(auth.EditRepoFileForm{}), repo.NewFilePost)
  466. m.Post("/_preview/*", bindIgnErr(auth.EditPreviewDiffForm{}), repo.DiffPreviewPost)
  467. m.Combo("/_delete/*").Get(repo.DeleteFile).
  468. Post(bindIgnErr(auth.DeleteRepoFileForm{}), repo.DeleteFilePost)
  469. m.Group("", func() {
  470. m.Combo("/_upload/*").Get(repo.UploadFile).
  471. Post(bindIgnErr(auth.UploadRepoFileForm{}), repo.UploadFilePost)
  472. m.Post("/upload-file", repo.UploadFileToServer)
  473. m.Post("/upload-remove", bindIgnErr(auth.RemoveUploadFileForm{}), repo.RemoveUploadFileFromServer)
  474. }, func(ctx *context.Context) {
  475. if !setting.Repository.Upload.Enabled {
  476. ctx.Handle(404, "", nil)
  477. return
  478. }
  479. })
  480. }, repo.MustBeNotBare, reqRepoWriter, context.RepoRef(), func(ctx *context.Context) {
  481. if !ctx.Repo.Repository.CanEnableEditor() || ctx.Repo.IsViewCommit {
  482. ctx.Handle(404, "", nil)
  483. return
  484. }
  485. })
  486. }, reqSignIn, context.RepoAssignment(), context.UnitTypes())
  487. m.Group("/:username/:reponame", func() {
  488. m.Group("", func() {
  489. m.Get("/releases", repo.MustBeNotBare, repo.Releases)
  490. m.Get("/^:type(issues|pulls)$", repo.RetrieveLabels, repo.Issues)
  491. m.Get("/^:type(issues|pulls)$/:index", repo.ViewIssue)
  492. m.Get("/labels/", repo.RetrieveLabels, repo.Labels)
  493. m.Get("/milestones", repo.Milestones)
  494. }, context.RepoRef())
  495. // m.Get("/branches", repo.Branches)
  496. m.Post("/branches/:name/delete", reqSignIn, reqRepoWriter, repo.MustBeNotBare, repo.DeleteBranchPost)
  497. m.Group("/wiki", func() {
  498. m.Get("/?:page", repo.Wiki)
  499. m.Get("/_pages", repo.WikiPages)
  500. m.Group("", func() {
  501. m.Combo("/_new").Get(repo.NewWiki).
  502. Post(bindIgnErr(auth.NewWikiForm{}), repo.NewWikiPost)
  503. m.Combo("/:page/_edit").Get(repo.EditWiki).
  504. Post(bindIgnErr(auth.NewWikiForm{}), repo.EditWikiPost)
  505. m.Post("/:page/delete", repo.DeleteWikiPagePost)
  506. }, reqSignIn, reqRepoWriter)
  507. }, repo.MustEnableWiki, context.RepoRef())
  508. m.Group("/wiki", func() {
  509. m.Get("/raw/*", repo.WikiRaw)
  510. m.Get("/*", repo.WikiRaw)
  511. }, repo.MustEnableWiki)
  512. m.Get("/archive/*", repo.MustBeNotBare, repo.Download)
  513. m.Group("/pulls/:index", func() {
  514. m.Get("/commits", context.RepoRef(), repo.ViewPullCommits)
  515. m.Get("/files", context.RepoRef(), repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.ViewPullFiles)
  516. m.Post("/merge", reqRepoWriter, repo.MergePullRequest)
  517. }, repo.MustAllowPulls)
  518. m.Group("", func() {
  519. m.Get("/src/*", repo.SetEditorconfigIfExists, repo.Home)
  520. m.Get("/raw/*", repo.SingleDownload)
  521. m.Get("/commits/*", repo.RefCommits)
  522. m.Get("/graph", repo.Graph)
  523. m.Get("/commit/:sha([a-f0-9]{7,40})$", repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.Diff)
  524. m.Get("/forks", repo.Forks)
  525. }, context.RepoRef())
  526. m.Get("/commit/:sha([a-f0-9]{7,40})\\.:ext(patch|diff)", repo.MustBeNotBare, repo.RawDiff)
  527. m.Get("/compare/:before([a-z0-9]{40})\\.\\.\\.:after([a-z0-9]{40})", repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.MustBeNotBare, repo.CompareDiff)
  528. }, ignSignIn, context.RepoAssignment(), context.UnitTypes())
  529. m.Group("/:username/:reponame", func() {
  530. m.Get("/stars", repo.Stars)
  531. m.Get("/watchers", repo.Watchers)
  532. }, ignSignIn, context.RepoAssignment(), context.RepoRef(), context.UnitTypes())
  533. m.Group("/:username", func() {
  534. m.Group("/:reponame", func() {
  535. m.Get("", repo.SetEditorconfigIfExists, repo.Home)
  536. m.Get("\\.git$", repo.SetEditorconfigIfExists, repo.Home)
  537. }, ignSignIn, context.RepoAssignment(), context.RepoRef(), context.UnitTypes())
  538. m.Group("/:reponame", func() {
  539. m.Group("/info/lfs", func() {
  540. m.Post("/objects/batch", lfs.BatchHandler)
  541. m.Get("/objects/:oid/:filename", lfs.ObjectOidHandler)
  542. m.Any("/objects/:oid", lfs.ObjectOidHandler)
  543. m.Post("/objects", lfs.PostHandler)
  544. m.Any("/*", func(ctx *context.Context) {
  545. ctx.Handle(404, "", nil)
  546. })
  547. }, ignSignInAndCsrf)
  548. m.Any("/*", ignSignInAndCsrf, repo.HTTP)
  549. m.Head("/tasks/trigger", repo.TriggerTask)
  550. })
  551. })
  552. // ***** END: Repository *****
  553. m.Group("/notifications", func() {
  554. m.Get("", user.Notifications)
  555. m.Post("/status", user.NotificationStatusPost)
  556. }, reqSignIn)
  557. m.Group("/api", func() {
  558. apiv1.RegisterRoutes(m)
  559. }, ignSignIn)
  560. m.Group("/api/internal", func() {
  561. // package name internal is ideal but Golang is not allowed, so we use private as package name.
  562. private.RegisterRoutes(m)
  563. })
  564. // robots.txt
  565. m.Get("/robots.txt", func(ctx *context.Context) {
  566. if setting.HasRobotsTxt {
  567. ctx.ServeFileContent(path.Join(setting.CustomPath, "robots.txt"))
  568. } else {
  569. ctx.Error(404)
  570. }
  571. })
  572. // Not found handler.
  573. m.NotFound(routers.NotFound)
  574. }