api.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  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/db"
  13. "gogs.io/gogs/internal/db/errors"
  14. "gogs.io/gogs/internal/form"
  15. "gogs.io/gogs/internal/route/api/v1/admin"
  16. "gogs.io/gogs/internal/route/api/v1/misc"
  17. "gogs.io/gogs/internal/route/api/v1/org"
  18. "gogs.io/gogs/internal/route/api/v1/repo"
  19. "gogs.io/gogs/internal/route/api/v1/user"
  20. )
  21. // repoAssignment extracts information from URL parameters to retrieve the repository,
  22. // and makes sure the context user has at least the read access to the repository.
  23. func repoAssignment() macaron.Handler {
  24. return func(c *context.APIContext) {
  25. username := c.Params(":username")
  26. reponame := c.Params(":reponame")
  27. var err error
  28. var owner *db.User
  29. // Check if the context user is the repository owner.
  30. if c.IsLogged && c.User.LowerName == strings.ToLower(username) {
  31. owner = c.User
  32. } else {
  33. owner, err = db.GetUserByName(username)
  34. if err != nil {
  35. c.NotFoundOrServerError("GetUserByName", errors.IsUserNotExist, err)
  36. return
  37. }
  38. }
  39. c.Repo.Owner = owner
  40. r, err := db.GetRepositoryByName(owner.ID, reponame)
  41. if err != nil {
  42. c.NotFoundOrServerError("GetRepositoryByName", errors.IsRepoNotExist, err)
  43. return
  44. } else if err = r.GetOwner(); err != nil {
  45. c.ServerError("GetOwner", err)
  46. return
  47. }
  48. if c.IsTokenAuth && c.User.IsAdmin {
  49. c.Repo.AccessMode = db.ACCESS_MODE_OWNER
  50. } else {
  51. mode, err := db.UserAccessMode(c.UserID(), r)
  52. if err != nil {
  53. c.ServerError("UserAccessMode", err)
  54. return
  55. }
  56. c.Repo.AccessMode = mode
  57. }
  58. if !c.Repo.HasAccess() {
  59. c.NotFound()
  60. return
  61. }
  62. c.Repo.Repository = r
  63. }
  64. }
  65. // orgAssignment extracts information from URL parameters to retrieve the organization or team.
  66. func orgAssignment(args ...bool) macaron.Handler {
  67. var (
  68. assignOrg bool
  69. assignTeam bool
  70. )
  71. if len(args) > 0 {
  72. assignOrg = args[0]
  73. }
  74. if len(args) > 1 {
  75. assignTeam = args[1]
  76. }
  77. return func(c *context.APIContext) {
  78. c.Org = new(context.APIOrganization)
  79. var err error
  80. if assignOrg {
  81. c.Org.Organization, err = db.GetUserByName(c.Params(":orgname"))
  82. if err != nil {
  83. c.NotFoundOrServerError("GetUserByName", errors.IsUserNotExist, err)
  84. return
  85. }
  86. }
  87. if assignTeam {
  88. c.Org.Team, err = db.GetTeamByID(c.ParamsInt64(":teamid"))
  89. if err != nil {
  90. c.NotFoundOrServerError("GetTeamByID", errors.IsTeamNotExist, err)
  91. return
  92. }
  93. }
  94. }
  95. }
  96. // reqToken makes sure the context user is authorized via access token.
  97. func reqToken() macaron.Handler {
  98. return func(c *context.Context) {
  99. if !c.IsTokenAuth {
  100. c.Error(http.StatusUnauthorized)
  101. return
  102. }
  103. }
  104. }
  105. // reqBasicAuth makes sure the context user is authorized via HTTP Basic Auth.
  106. func reqBasicAuth() macaron.Handler {
  107. return func(c *context.Context) {
  108. if !c.IsBasicAuth {
  109. c.Error(http.StatusUnauthorized)
  110. return
  111. }
  112. }
  113. }
  114. // reqAdmin makes sure the context user is a site admin.
  115. func reqAdmin() macaron.Handler {
  116. return func(c *context.Context) {
  117. if !c.IsLogged || !c.User.IsAdmin {
  118. c.Error(http.StatusForbidden)
  119. return
  120. }
  121. }
  122. }
  123. // reqRepoWriter makes sure the context user has at least write access to the repository.
  124. func reqRepoWriter() macaron.Handler {
  125. return func(c *context.Context) {
  126. if !c.Repo.IsWriter() {
  127. c.Error(http.StatusForbidden)
  128. return
  129. }
  130. }
  131. }
  132. // reqRepoWriter makes sure the context user has at least admin access to the repository.
  133. func reqRepoAdmin() macaron.Handler {
  134. return func(c *context.Context) {
  135. if !c.Repo.IsAdmin() {
  136. c.Error(http.StatusForbidden)
  137. return
  138. }
  139. }
  140. }
  141. func mustEnableIssues(c *context.APIContext) {
  142. if !c.Repo.Repository.EnableIssues || c.Repo.Repository.EnableExternalTracker {
  143. c.NotFound()
  144. return
  145. }
  146. }
  147. // RegisterRoutes registers all route in API v1 to the web application.
  148. // FIXME: custom form error response
  149. func RegisterRoutes(m *macaron.Macaron) {
  150. bind := binding.Bind
  151. m.Group("/v1", func() {
  152. // Handle preflight OPTIONS request
  153. m.Options("/*", func() {})
  154. // Miscellaneous
  155. m.Post("/markdown", bind(api.MarkdownOption{}), misc.Markdown)
  156. m.Post("/markdown/raw", misc.MarkdownRaw)
  157. // Users
  158. m.Group("/users", func() {
  159. m.Get("/search", user.Search)
  160. m.Group("/:username", func() {
  161. m.Get("", user.GetInfo)
  162. m.Group("/tokens", func() {
  163. m.Combo("").
  164. Get(user.ListAccessTokens).
  165. Post(bind(api.CreateAccessTokenOption{}), user.CreateAccessToken)
  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. })
  214. m.Group("/repos", func() {
  215. m.Post("/migrate", bind(form.MigrateRepo{}), repo.Migrate)
  216. m.Delete("/:username/:reponame", repoAssignment(), repo.Delete)
  217. m.Group("/:username/:reponame", func() {
  218. m.Group("/hooks", func() {
  219. m.Combo("").
  220. Get(repo.ListHooks).
  221. Post(bind(api.CreateHookOption{}), repo.CreateHook)
  222. m.Combo("/:id").
  223. Patch(bind(api.EditHookOption{}), repo.EditHook).
  224. Delete(repo.DeleteHook)
  225. }, reqRepoAdmin())
  226. m.Group("/collaborators", func() {
  227. m.Get("", repo.ListCollaborators)
  228. m.Combo("/:collaborator").
  229. Get(repo.IsCollaborator).
  230. Put(bind(api.AddCollaboratorOption{}), repo.AddCollaborator).
  231. Delete(repo.DeleteCollaborator)
  232. }, reqRepoAdmin())
  233. m.Get("/raw/*", context.RepoRef(), repo.GetRawFile)
  234. m.Get("/contents/*", repo.GetContents)
  235. m.Get("/archive/*", repo.GetArchive)
  236. m.Group("/git/trees", func() {
  237. m.Get("/:sha", repo.GetRepoGitTree)
  238. })
  239. m.Get("/forks", repo.ListForks)
  240. m.Group("/branches", func() {
  241. m.Get("", repo.ListBranches)
  242. m.Get("/*", repo.GetBranch)
  243. })
  244. m.Group("/commits", func() {
  245. m.Get("/:sha", repo.GetSingleCommit)
  246. m.Get("/*", repo.GetReferenceSHA)
  247. })
  248. m.Group("/keys", func() {
  249. m.Combo("").
  250. Get(repo.ListDeployKeys).
  251. Post(bind(api.CreateKeyOption{}), repo.CreateDeployKey)
  252. m.Combo("/:id").
  253. Get(repo.GetDeployKey).
  254. Delete(repo.DeleteDeploykey)
  255. }, reqRepoAdmin())
  256. m.Group("/issues", func() {
  257. m.Combo("").
  258. Get(repo.ListIssues).
  259. Post(bind(api.CreateIssueOption{}), repo.CreateIssue)
  260. m.Group("/comments", func() {
  261. m.Get("", repo.ListRepoIssueComments)
  262. m.Patch("/:id", bind(api.EditIssueCommentOption{}), repo.EditIssueComment)
  263. })
  264. m.Group("/:index", func() {
  265. m.Combo("").
  266. Get(repo.GetIssue).
  267. Patch(bind(api.EditIssueOption{}), repo.EditIssue)
  268. m.Group("/comments", func() {
  269. m.Combo("").
  270. Get(repo.ListIssueComments).
  271. Post(bind(api.CreateIssueCommentOption{}), repo.CreateIssueComment)
  272. m.Combo("/:id").
  273. Patch(bind(api.EditIssueCommentOption{}), repo.EditIssueComment).
  274. Delete(repo.DeleteIssueComment)
  275. })
  276. m.Get("/labels", repo.ListIssueLabels)
  277. m.Group("/labels", func() {
  278. m.Combo("").
  279. Post(bind(api.IssueLabelsOption{}), repo.AddIssueLabels).
  280. Put(bind(api.IssueLabelsOption{}), repo.ReplaceIssueLabels).
  281. Delete(repo.ClearIssueLabels)
  282. m.Delete("/:id", repo.DeleteIssueLabel)
  283. }, reqRepoWriter())
  284. })
  285. }, mustEnableIssues)
  286. m.Group("/labels", func() {
  287. m.Get("", repo.ListLabels)
  288. m.Get("/:id", repo.GetLabel)
  289. })
  290. m.Group("/labels", func() {
  291. m.Post("", bind(api.CreateLabelOption{}), repo.CreateLabel)
  292. m.Combo("/:id").
  293. Patch(bind(api.EditLabelOption{}), repo.EditLabel).
  294. Delete(repo.DeleteLabel)
  295. }, reqRepoWriter())
  296. m.Group("/milestones", func() {
  297. m.Get("", repo.ListMilestones)
  298. m.Get("/:id", repo.GetMilestone)
  299. })
  300. m.Group("/milestones", func() {
  301. m.Post("", bind(api.CreateMilestoneOption{}), repo.CreateMilestone)
  302. m.Combo("/:id").
  303. Patch(bind(api.EditMilestoneOption{}), repo.EditMilestone).
  304. Delete(repo.DeleteMilestone)
  305. }, reqRepoWriter())
  306. m.Patch("/issue-tracker", reqRepoWriter(), bind(api.EditIssueTrackerOption{}), repo.IssueTracker)
  307. m.Post("/mirror-sync", reqRepoWriter(), repo.MirrorSync)
  308. m.Get("/editorconfig/:filename", context.RepoRef(), repo.GetEditorconfig)
  309. }, repoAssignment())
  310. }, reqToken())
  311. m.Get("/issues", reqToken(), repo.ListUserIssues)
  312. // Organizations
  313. m.Combo("/user/orgs", reqToken()).
  314. Get(org.ListMyOrgs).
  315. Post(bind(api.CreateOrgOption{}), org.CreateMyOrg)
  316. m.Get("/users/:username/orgs", org.ListUserOrgs)
  317. m.Group("/orgs/:orgname", func() {
  318. m.Combo("").
  319. Get(org.Get).
  320. Patch(bind(api.EditOrgOption{}), org.Edit)
  321. m.Get("/teams", org.ListTeams)
  322. }, orgAssignment(true))
  323. m.Group("/admin", func() {
  324. m.Group("/users", func() {
  325. m.Post("", bind(api.CreateUserOption{}), admin.CreateUser)
  326. m.Group("/:username", func() {
  327. m.Combo("").
  328. Patch(bind(api.EditUserOption{}), admin.EditUser).
  329. Delete(admin.DeleteUser)
  330. m.Post("/keys", bind(api.CreateKeyOption{}), admin.CreatePublicKey)
  331. m.Post("/orgs", bind(api.CreateOrgOption{}), admin.CreateOrg)
  332. m.Post("/repos", bind(api.CreateRepoOption{}), admin.CreateRepo)
  333. })
  334. })
  335. m.Group("/orgs/:orgname", func() {
  336. m.Group("/teams", func() {
  337. m.Post("", orgAssignment(true), bind(api.CreateTeamOption{}), admin.CreateTeam)
  338. })
  339. })
  340. m.Group("/teams", func() {
  341. m.Group("/:teamid", func() {
  342. m.Combo("/members/:username").
  343. Put(admin.AddTeamMember).
  344. Delete(admin.RemoveTeamMember)
  345. m.Combo("/repos/:reponame").
  346. Put(admin.AddTeamRepository).
  347. Delete(admin.RemoveTeamRepository)
  348. }, orgAssignment(false, true))
  349. })
  350. }, reqAdmin())
  351. m.Any("/*", func(c *context.Context) {
  352. c.NotFound()
  353. })
  354. }, context.APIContexter())
  355. }