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. "github.com/G-Node/gogs/internal/context"
  12. "github.com/G-Node/gogs/internal/db"
  13. "github.com/G-Node/gogs/internal/form"
  14. "github.com/G-Node/gogs/internal/route/api/v1/admin"
  15. "github.com/G-Node/gogs/internal/route/api/v1/misc"
  16. "github.com/G-Node/gogs/internal/route/api/v1/org"
  17. "github.com/G-Node/gogs/internal/route/api/v1/repo"
  18. "github.com/G-Node/gogs/internal/route/api/v1/search"
  19. "github.com/G-Node/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.NotFoundOrError(err, "get user by name")
  36. return
  37. }
  38. }
  39. c.Repo.Owner = owner
  40. r, err := db.GetRepositoryByName(owner.ID, reponame)
  41. if err != nil {
  42. c.NotFoundOrError(err, "get repository by name")
  43. return
  44. } else if err = r.GetOwner(); err != nil {
  45. c.Error(err, "get owner")
  46. return
  47. }
  48. if c.IsTokenAuth && c.User.IsAdmin {
  49. c.Repo.AccessMode = db.AccessModeOwner
  50. } else {
  51. mode, err := db.UserAccessMode(c.UserID(), r)
  52. if err != nil {
  53. c.Error(err, "get user access mode")
  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.NotFoundOrError(err, "get organization by name")
  84. return
  85. }
  86. }
  87. if assignTeam {
  88. c.Org.Team, err = db.GetTeamByID(c.ParamsInt64(":teamid"))
  89. if err != nil {
  90. c.NotFoundOrError(err, "get team by ID")
  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.Status(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.Status(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.Status(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.Status(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.Status(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. m.Get("/search/:query", search.Search)
  158. // Users
  159. m.Group("/users", func() {
  160. m.Get("/search", user.Search)
  161. m.Group("/:username", func() {
  162. m.Get("", user.GetInfo)
  163. m.Group("/tokens", func() {
  164. m.Combo("").
  165. Get(user.ListAccessTokens).
  166. Post(bind(api.CreateAccessTokenOption{}), user.CreateAccessToken)
  167. }, reqBasicAuth())
  168. })
  169. })
  170. m.Group("/users", func() {
  171. m.Group("/:username", func() {
  172. m.Get("/keys", user.ListPublicKeys)
  173. m.Get("/followers", user.ListFollowers)
  174. m.Group("/following", func() {
  175. m.Get("", user.ListFollowing)
  176. m.Get("/:target", user.CheckFollowing)
  177. })
  178. })
  179. }, reqToken())
  180. m.Group("/user", func() {
  181. m.Get("", user.GetAuthenticatedUser)
  182. m.Combo("/emails").
  183. Get(user.ListEmails).
  184. Post(bind(api.CreateEmailOption{}), user.AddEmail).
  185. Delete(bind(api.CreateEmailOption{}), user.DeleteEmail)
  186. m.Get("/followers", user.ListMyFollowers)
  187. m.Group("/following", func() {
  188. m.Get("", user.ListMyFollowing)
  189. m.Combo("/:username").
  190. Get(user.CheckMyFollowing).
  191. Put(user.Follow).
  192. Delete(user.Unfollow)
  193. })
  194. m.Group("/keys", func() {
  195. m.Combo("").
  196. Get(user.ListMyPublicKeys).
  197. Post(bind(api.CreateKeyOption{}), user.CreatePublicKey)
  198. m.Combo("/:id").
  199. Get(user.GetPublicKey).
  200. Delete(user.DeletePublicKey)
  201. })
  202. m.Get("/issues", repo.ListUserIssues)
  203. }, reqToken())
  204. // Repositories
  205. m.Get("/users/:username/repos", reqToken(), repo.ListUserRepositories)
  206. m.Get("/orgs/:org/repos", reqToken(), repo.ListOrgRepositories)
  207. m.Combo("/user/repos", reqToken()).
  208. Get(repo.ListMyRepos).
  209. Post(bind(api.CreateRepoOption{}), repo.Create)
  210. m.Post("/org/:org/repos", reqToken(), bind(api.CreateRepoOption{}), repo.CreateOrgRepo)
  211. m.Group("/repos", func() {
  212. m.Get("/search", repo.Search)
  213. m.Get("/:username/:reponame", repoAssignment(), repo.Get)
  214. m.Get("/:username/:reponame/releases", repoAssignment(), repo.Releases)
  215. m.Get("/suggest/:query", search.Suggest) // GIN specific code
  216. })
  217. m.Group("/repos", func() {
  218. m.Post("/migrate", bind(form.MigrateRepo{}), repo.Migrate)
  219. m.Delete("/:username/:reponame", repoAssignment(), repo.Delete)
  220. m.Group("/:username/:reponame", func() {
  221. m.Group("/hooks", func() {
  222. m.Combo("").
  223. Get(repo.ListHooks).
  224. Post(bind(api.CreateHookOption{}), repo.CreateHook)
  225. m.Combo("/:id").
  226. Patch(bind(api.EditHookOption{}), repo.EditHook).
  227. Delete(repo.DeleteHook)
  228. }, reqRepoAdmin())
  229. m.Group("/collaborators", func() {
  230. m.Get("", repo.ListCollaborators)
  231. m.Combo("/:collaborator").
  232. Get(repo.IsCollaborator).
  233. Put(bind(api.AddCollaboratorOption{}), repo.AddCollaborator).
  234. Delete(repo.DeleteCollaborator)
  235. }, reqRepoAdmin())
  236. m.Get("/raw/*", context.RepoRef(), repo.GetRawFile)
  237. m.Group("/contents", func() {
  238. m.Get("", repo.GetContents)
  239. m.Get("/*", repo.GetContents)
  240. })
  241. m.Get("/archive/*", repo.GetArchive)
  242. m.Group("/git/trees", func() {
  243. m.Get("/:sha", repo.GetRepoGitTree)
  244. })
  245. m.Get("/forks", repo.ListForks)
  246. m.Group("/branches", func() {
  247. m.Get("", repo.ListBranches)
  248. m.Get("/*", repo.GetBranch)
  249. })
  250. m.Group("/commits", func() {
  251. m.Get("/:sha", repo.GetSingleCommit)
  252. m.Get("/*", repo.GetReferenceSHA)
  253. })
  254. m.Group("/keys", func() {
  255. m.Combo("").
  256. Get(repo.ListDeployKeys).
  257. Post(bind(api.CreateKeyOption{}), repo.CreateDeployKey)
  258. m.Combo("/:id").
  259. Get(repo.GetDeployKey).
  260. Delete(repo.DeleteDeploykey)
  261. }, reqRepoAdmin())
  262. m.Group("/issues", func() {
  263. m.Combo("").
  264. Get(repo.ListIssues).
  265. Post(bind(api.CreateIssueOption{}), repo.CreateIssue)
  266. m.Group("/comments", func() {
  267. m.Get("", repo.ListRepoIssueComments)
  268. m.Patch("/:id", bind(api.EditIssueCommentOption{}), repo.EditIssueComment)
  269. })
  270. m.Group("/:index", func() {
  271. m.Combo("").
  272. Get(repo.GetIssue).
  273. Patch(bind(api.EditIssueOption{}), repo.EditIssue)
  274. m.Group("/comments", func() {
  275. m.Combo("").
  276. Get(repo.ListIssueComments).
  277. Post(bind(api.CreateIssueCommentOption{}), repo.CreateIssueComment)
  278. m.Combo("/:id").
  279. Patch(bind(api.EditIssueCommentOption{}), repo.EditIssueComment).
  280. Delete(repo.DeleteIssueComment)
  281. })
  282. m.Get("/labels", repo.ListIssueLabels)
  283. m.Group("/labels", func() {
  284. m.Combo("").
  285. Post(bind(api.IssueLabelsOption{}), repo.AddIssueLabels).
  286. Put(bind(api.IssueLabelsOption{}), repo.ReplaceIssueLabels).
  287. Delete(repo.ClearIssueLabels)
  288. m.Delete("/:id", repo.DeleteIssueLabel)
  289. }, reqRepoWriter())
  290. })
  291. }, mustEnableIssues)
  292. m.Group("/labels", func() {
  293. m.Get("", repo.ListLabels)
  294. m.Get("/:id", repo.GetLabel)
  295. })
  296. m.Group("/labels", func() {
  297. m.Post("", bind(api.CreateLabelOption{}), repo.CreateLabel)
  298. m.Combo("/:id").
  299. Patch(bind(api.EditLabelOption{}), repo.EditLabel).
  300. Delete(repo.DeleteLabel)
  301. }, reqRepoWriter())
  302. m.Group("/milestones", func() {
  303. m.Get("", repo.ListMilestones)
  304. m.Get("/:id", repo.GetMilestone)
  305. })
  306. m.Group("/milestones", func() {
  307. m.Post("", bind(api.CreateMilestoneOption{}), repo.CreateMilestone)
  308. m.Combo("/:id").
  309. Patch(bind(api.EditMilestoneOption{}), repo.EditMilestone).
  310. Delete(repo.DeleteMilestone)
  311. }, reqRepoWriter())
  312. m.Patch("/issue-tracker", reqRepoWriter(), bind(api.EditIssueTrackerOption{}), repo.IssueTracker)
  313. m.Post("/mirror-sync", reqRepoWriter(), repo.MirrorSync)
  314. m.Get("/editorconfig/:filename", context.RepoRef(), repo.GetEditorconfig)
  315. }, repoAssignment())
  316. }, reqToken())
  317. m.Get("/issues", reqToken(), repo.ListUserIssues)
  318. // Organizations
  319. m.Combo("/user/orgs", reqToken()).
  320. Get(org.ListMyOrgs).
  321. Post(bind(api.CreateOrgOption{}), org.CreateMyOrg)
  322. m.Get("/users/:username/orgs", org.ListUserOrgs)
  323. m.Group("/orgs/:orgname", func() {
  324. m.Combo("").
  325. Get(org.Get).
  326. Patch(bind(api.EditOrgOption{}), org.Edit)
  327. m.Group("/teams", func() {
  328. m.Combo("").
  329. Get(org.ListTeams).
  330. Post(bind(api.CreateTeamOption{}), org.CreateTeam)
  331. m.Combo("/:team").
  332. Get(org.GetTeam).
  333. Patch(bind(api.CreateTeamOption{}), org.EditTeam).
  334. Delete(org.DeleteTeam)
  335. })
  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.Combo("/members/:username").
  357. Put(admin.AddTeamMember).
  358. Delete(admin.RemoveTeamMember)
  359. m.Combo("/repos/:reponame").
  360. Put(admin.AddTeamRepository).
  361. Delete(admin.RemoveTeamRepository)
  362. }, orgAssignment(false, true))
  363. })
  364. }, reqAdmin())
  365. m.Any("/*", func(c *context.Context) {
  366. c.NotFound()
  367. })
  368. }, context.APIContexter())
  369. }