api.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. // Copyright 2015 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package v1
  5. import (
  6. "net/http"
  7. "strings"
  8. "github.com/go-macaron/binding"
  9. "gopkg.in/macaron.v1"
  10. api "github.com/gogs/go-gogs-client"
  11. "gogs.io/gogs/internal/context"
  12. "gogs.io/gogs/internal/database"
  13. "gogs.io/gogs/internal/form"
  14. "gogs.io/gogs/internal/route/api/v1/admin"
  15. "gogs.io/gogs/internal/route/api/v1/misc"
  16. "gogs.io/gogs/internal/route/api/v1/org"
  17. "gogs.io/gogs/internal/route/api/v1/repo"
  18. "gogs.io/gogs/internal/route/api/v1/user"
  19. )
  20. // repoAssignment extracts information from URL parameters to retrieve the repository,
  21. // and makes sure the context user has at least the read access to the repository.
  22. func repoAssignment() macaron.Handler {
  23. return func(c *context.APIContext) {
  24. username := c.Params(":username")
  25. reponame := c.Params(":reponame")
  26. var err error
  27. var owner *database.User
  28. // Check if the context user is the repository owner.
  29. if c.IsLogged && c.User.LowerName == strings.ToLower(username) {
  30. owner = c.User
  31. } else {
  32. owner, err = database.Handle.Users().GetByUsername(c.Req.Context(), username)
  33. if err != nil {
  34. c.NotFoundOrError(err, "get user by name")
  35. return
  36. }
  37. }
  38. c.Repo.Owner = owner
  39. repo, err := database.Handle.Repositories().GetByName(c.Req.Context(), owner.ID, reponame)
  40. if err != nil {
  41. c.NotFoundOrError(err, "get repository by name")
  42. return
  43. } else if err = repo.GetOwner(); err != nil {
  44. c.Error(err, "get owner")
  45. return
  46. }
  47. if c.IsTokenAuth && c.User.IsAdmin {
  48. c.Repo.AccessMode = database.AccessModeOwner
  49. } else {
  50. c.Repo.AccessMode = database.Handle.Permissions().AccessMode(c.Req.Context(), c.UserID(), repo.ID,
  51. database.AccessModeOptions{
  52. OwnerID: repo.OwnerID,
  53. Private: repo.IsPrivate,
  54. },
  55. )
  56. }
  57. if !c.Repo.HasAccess() {
  58. c.NotFound()
  59. return
  60. }
  61. c.Repo.Repository = repo
  62. }
  63. }
  64. // orgAssignment extracts information from URL parameters to retrieve the organization or team.
  65. func orgAssignment(args ...bool) macaron.Handler {
  66. var (
  67. assignOrg bool
  68. assignTeam bool
  69. )
  70. if len(args) > 0 {
  71. assignOrg = args[0]
  72. }
  73. if len(args) > 1 {
  74. assignTeam = args[1]
  75. }
  76. return func(c *context.APIContext) {
  77. c.Org = new(context.APIOrganization)
  78. var err error
  79. if assignOrg {
  80. c.Org.Organization, err = database.Handle.Users().GetByUsername(c.Req.Context(), c.Params(":orgname"))
  81. if err != nil {
  82. c.NotFoundOrError(err, "get organization by name")
  83. return
  84. }
  85. }
  86. if assignTeam {
  87. c.Org.Team, err = database.GetTeamByID(c.ParamsInt64(":teamid"))
  88. if err != nil {
  89. c.NotFoundOrError(err, "get team by ID")
  90. return
  91. }
  92. }
  93. }
  94. }
  95. // reqToken makes sure the context user is authorized via access token.
  96. func reqToken() macaron.Handler {
  97. return func(c *context.Context) {
  98. if !c.IsTokenAuth {
  99. c.Status(http.StatusUnauthorized)
  100. return
  101. }
  102. }
  103. }
  104. // reqBasicAuth makes sure the context user is authorized via HTTP Basic Auth.
  105. func reqBasicAuth() macaron.Handler {
  106. return func(c *context.Context) {
  107. if !c.IsBasicAuth {
  108. c.Status(http.StatusUnauthorized)
  109. return
  110. }
  111. }
  112. }
  113. // reqAdmin makes sure the context user is a site admin.
  114. func reqAdmin() macaron.Handler {
  115. return func(c *context.Context) {
  116. if !c.IsLogged || !c.User.IsAdmin {
  117. c.Status(http.StatusForbidden)
  118. return
  119. }
  120. }
  121. }
  122. // reqRepoWriter makes sure the context user has at least write access to the repository.
  123. func reqRepoWriter() macaron.Handler {
  124. return func(c *context.Context) {
  125. if !c.Repo.IsWriter() {
  126. c.Status(http.StatusForbidden)
  127. return
  128. }
  129. }
  130. }
  131. // reqRepoWriter makes sure the context user has at least admin access to the repository.
  132. func reqRepoAdmin() macaron.Handler {
  133. return func(c *context.Context) {
  134. if !c.Repo.IsAdmin() {
  135. c.Status(http.StatusForbidden)
  136. return
  137. }
  138. }
  139. }
  140. func mustEnableIssues(c *context.APIContext) {
  141. if !c.Repo.Repository.EnableIssues || c.Repo.Repository.EnableExternalTracker {
  142. c.NotFound()
  143. return
  144. }
  145. }
  146. // RegisterRoutes registers all route in API v1 to the web application.
  147. // FIXME: custom form error response
  148. func RegisterRoutes(m *macaron.Macaron) {
  149. bind := binding.Bind
  150. m.Group("/v1", func() {
  151. // Handle preflight OPTIONS request
  152. m.Options("/*", func() {})
  153. // Miscellaneous
  154. m.Post("/markdown", bind(api.MarkdownOption{}), misc.Markdown)
  155. m.Post("/markdown/raw", misc.MarkdownRaw)
  156. // Users
  157. m.Group("/users", func() {
  158. m.Get("/search", user.Search)
  159. m.Group("/:username", func() {
  160. m.Get("", user.GetInfo)
  161. m.Group("/tokens", func() {
  162. accessTokensHandler := user.NewAccessTokensHandler(user.NewAccessTokensStore())
  163. m.Combo("").
  164. Get(accessTokensHandler.List()).
  165. Post(bind(api.CreateAccessTokenOption{}), accessTokensHandler.Create())
  166. }, reqBasicAuth())
  167. })
  168. })
  169. m.Group("/users", func() {
  170. m.Group("/:username", func() {
  171. m.Get("/keys", user.ListPublicKeys)
  172. m.Get("/followers", user.ListFollowers)
  173. m.Group("/following", func() {
  174. m.Get("", user.ListFollowing)
  175. m.Get("/:target", user.CheckFollowing)
  176. })
  177. })
  178. }, reqToken())
  179. m.Group("/user", func() {
  180. m.Get("", user.GetAuthenticatedUser)
  181. m.Combo("/emails").
  182. Get(user.ListEmails).
  183. Post(bind(api.CreateEmailOption{}), user.AddEmail).
  184. Delete(bind(api.CreateEmailOption{}), user.DeleteEmail)
  185. m.Get("/followers", user.ListMyFollowers)
  186. m.Group("/following", func() {
  187. m.Get("", user.ListMyFollowing)
  188. m.Combo("/:username").
  189. Get(user.CheckMyFollowing).
  190. Put(user.Follow).
  191. Delete(user.Unfollow)
  192. })
  193. m.Group("/keys", func() {
  194. m.Combo("").
  195. Get(user.ListMyPublicKeys).
  196. Post(bind(api.CreateKeyOption{}), user.CreatePublicKey)
  197. m.Combo("/:id").
  198. Get(user.GetPublicKey).
  199. Delete(user.DeletePublicKey)
  200. })
  201. m.Get("/issues", repo.ListUserIssues)
  202. }, reqToken())
  203. // Repositories
  204. m.Get("/users/:username/repos", reqToken(), repo.ListUserRepositories)
  205. m.Get("/orgs/:org/repos", reqToken(), repo.ListOrgRepositories)
  206. m.Combo("/user/repos", reqToken()).
  207. Get(repo.ListMyRepos).
  208. Post(bind(api.CreateRepoOption{}), repo.Create)
  209. m.Post("/org/:org/repos", reqToken(), bind(api.CreateRepoOption{}), repo.CreateOrgRepo)
  210. m.Group("/repos", func() {
  211. m.Get("/search", repo.Search)
  212. m.Get("/:username/:reponame", repoAssignment(), repo.Get)
  213. m.Get("/:username/:reponame/releases", repoAssignment(), repo.Releases)
  214. })
  215. m.Group("/repos", func() {
  216. m.Post("/migrate", bind(form.MigrateRepo{}), repo.Migrate)
  217. m.Delete("/:username/:reponame", repoAssignment(), repo.Delete)
  218. m.Group("/:username/:reponame", func() {
  219. m.Group("/hooks", func() {
  220. m.Combo("").
  221. Get(repo.ListHooks).
  222. Post(bind(api.CreateHookOption{}), repo.CreateHook)
  223. m.Combo("/:id").
  224. Patch(bind(api.EditHookOption{}), repo.EditHook).
  225. Delete(repo.DeleteHook)
  226. }, reqRepoAdmin())
  227. m.Group("/collaborators", func() {
  228. m.Get("", repo.ListCollaborators)
  229. m.Combo("/:collaborator").
  230. Get(repo.IsCollaborator).
  231. Put(bind(api.AddCollaboratorOption{}), repo.AddCollaborator).
  232. Delete(repo.DeleteCollaborator)
  233. }, reqRepoAdmin())
  234. m.Get("/raw/*", context.RepoRef(), repo.GetRawFile)
  235. m.Group("/contents", func() {
  236. m.Get("", repo.GetContents)
  237. m.Combo("/*").
  238. Get(repo.GetContents).
  239. Put(bind(repo.PutContentsRequest{}), repo.PutContents)
  240. })
  241. m.Get("/archive/*", repo.GetArchive)
  242. m.Group("/git", func() {
  243. m.Group("/trees", func() {
  244. m.Get("/:sha", repo.GetRepoGitTree)
  245. })
  246. m.Group("/blobs", func() {
  247. m.Get("/:sha", repo.RepoGitBlob)
  248. })
  249. })
  250. m.Get("/forks", repo.ListForks)
  251. m.Get("/tags", repo.ListTags)
  252. m.Group("/branches", func() {
  253. m.Get("", repo.ListBranches)
  254. m.Get("/*", repo.GetBranch)
  255. })
  256. m.Group("/commits", func() {
  257. m.Get("/:sha", repo.GetSingleCommit)
  258. m.Get("", repo.GetAllCommits)
  259. m.Get("/*", repo.GetReferenceSHA)
  260. })
  261. m.Group("/keys", func() {
  262. m.Combo("").
  263. Get(repo.ListDeployKeys).
  264. Post(bind(api.CreateKeyOption{}), repo.CreateDeployKey)
  265. m.Combo("/:id").
  266. Get(repo.GetDeployKey).
  267. Delete(repo.DeleteDeploykey)
  268. }, reqRepoAdmin())
  269. m.Group("/issues", func() {
  270. m.Combo("").
  271. Get(repo.ListIssues).
  272. Post(bind(api.CreateIssueOption{}), repo.CreateIssue)
  273. m.Group("/comments", func() {
  274. m.Get("", repo.ListRepoIssueComments)
  275. m.Patch("/:id", bind(api.EditIssueCommentOption{}), repo.EditIssueComment)
  276. })
  277. m.Group("/:index", func() {
  278. m.Combo("").
  279. Get(repo.GetIssue).
  280. Patch(bind(api.EditIssueOption{}), repo.EditIssue)
  281. m.Group("/comments", func() {
  282. m.Combo("").
  283. Get(repo.ListIssueComments).
  284. Post(bind(api.CreateIssueCommentOption{}), repo.CreateIssueComment)
  285. m.Combo("/:id").
  286. Patch(bind(api.EditIssueCommentOption{}), repo.EditIssueComment).
  287. Delete(repo.DeleteIssueComment)
  288. })
  289. m.Get("/labels", repo.ListIssueLabels)
  290. m.Group("/labels", func() {
  291. m.Combo("").
  292. Post(bind(api.IssueLabelsOption{}), repo.AddIssueLabels).
  293. Put(bind(api.IssueLabelsOption{}), repo.ReplaceIssueLabels).
  294. Delete(repo.ClearIssueLabels)
  295. m.Delete("/:id", repo.DeleteIssueLabel)
  296. }, reqRepoWriter())
  297. })
  298. }, mustEnableIssues)
  299. m.Group("/labels", func() {
  300. m.Get("", repo.ListLabels)
  301. m.Get("/:id", repo.GetLabel)
  302. })
  303. m.Group("/labels", func() {
  304. m.Post("", bind(api.CreateLabelOption{}), repo.CreateLabel)
  305. m.Combo("/:id").
  306. Patch(bind(api.EditLabelOption{}), repo.EditLabel).
  307. Delete(repo.DeleteLabel)
  308. }, reqRepoWriter())
  309. m.Group("/milestones", func() {
  310. m.Get("", repo.ListMilestones)
  311. m.Get("/:id", repo.GetMilestone)
  312. })
  313. m.Group("/milestones", func() {
  314. m.Post("", bind(api.CreateMilestoneOption{}), repo.CreateMilestone)
  315. m.Combo("/:id").
  316. Patch(bind(api.EditMilestoneOption{}), repo.EditMilestone).
  317. Delete(repo.DeleteMilestone)
  318. }, reqRepoWriter())
  319. m.Patch("/issue-tracker", reqRepoWriter(), bind(api.EditIssueTrackerOption{}), repo.IssueTracker)
  320. m.Patch("/wiki", reqRepoWriter(), bind(api.EditWikiOption{}), repo.Wiki)
  321. m.Post("/mirror-sync", reqRepoWriter(), repo.MirrorSync)
  322. m.Get("/editorconfig/:filename", context.RepoRef(), repo.GetEditorconfig)
  323. }, repoAssignment())
  324. }, reqToken())
  325. m.Get("/issues", reqToken(), repo.ListUserIssues)
  326. // Organizations
  327. m.Combo("/user/orgs", reqToken()).
  328. Get(org.ListMyOrgs).
  329. Post(bind(api.CreateOrgOption{}), org.CreateMyOrg)
  330. m.Get("/users/:username/orgs", org.ListUserOrgs)
  331. m.Group("/orgs/:orgname", func() {
  332. m.Combo("").
  333. Get(org.Get).
  334. Patch(bind(api.EditOrgOption{}), org.Edit)
  335. m.Get("/teams", org.ListTeams)
  336. }, orgAssignment(true))
  337. m.Group("/admin", func() {
  338. m.Group("/users", func() {
  339. m.Post("", bind(api.CreateUserOption{}), admin.CreateUser)
  340. m.Group("/:username", func() {
  341. m.Combo("").
  342. Patch(bind(api.EditUserOption{}), admin.EditUser).
  343. Delete(admin.DeleteUser)
  344. m.Post("/keys", bind(api.CreateKeyOption{}), admin.CreatePublicKey)
  345. m.Post("/orgs", bind(api.CreateOrgOption{}), admin.CreateOrg)
  346. m.Post("/repos", bind(api.CreateRepoOption{}), admin.CreateRepo)
  347. })
  348. })
  349. m.Group("/orgs/:orgname", func() {
  350. m.Group("/teams", func() {
  351. m.Post("", orgAssignment(true), bind(api.CreateTeamOption{}), admin.CreateTeam)
  352. })
  353. })
  354. m.Group("/teams", func() {
  355. m.Group("/:teamid", func() {
  356. m.Get("/members", admin.ListTeamMembers)
  357. m.Combo("/members/:username").
  358. Put(admin.AddTeamMember).
  359. Delete(admin.RemoveTeamMember)
  360. m.Combo("/repos/:reponame").
  361. Put(admin.AddTeamRepository).
  362. Delete(admin.RemoveTeamRepository)
  363. }, orgAssignment(false, true))
  364. })
  365. }, reqAdmin())
  366. m.Any("/*", func(c *context.Context) {
  367. c.NotFound()
  368. })
  369. }, context.APIContexter())
  370. }