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.

api.go 9.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  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. "strings"
  7. "github.com/go-macaron/binding"
  8. "gopkg.in/macaron.v1"
  9. api "code.gitea.io/sdk/gitea"
  10. "code.gitea.io/gitea/models"
  11. "code.gitea.io/gitea/modules/auth"
  12. "code.gitea.io/gitea/modules/context"
  13. "code.gitea.io/gitea/routers/api/v1/admin"
  14. "code.gitea.io/gitea/routers/api/v1/misc"
  15. "code.gitea.io/gitea/routers/api/v1/org"
  16. "code.gitea.io/gitea/routers/api/v1/repo"
  17. "code.gitea.io/gitea/routers/api/v1/user"
  18. )
  19. func repoAssignment() macaron.Handler {
  20. return func(ctx *context.APIContext) {
  21. userName := ctx.Params(":username")
  22. repoName := ctx.Params(":reponame")
  23. var (
  24. owner *models.User
  25. err error
  26. )
  27. // Check if the user is the same as the repository owner.
  28. if ctx.IsSigned && ctx.User.LowerName == strings.ToLower(userName) {
  29. owner = ctx.User
  30. } else {
  31. owner, err = models.GetUserByName(userName)
  32. if err != nil {
  33. if models.IsErrUserNotExist(err) {
  34. ctx.Status(404)
  35. } else {
  36. ctx.Error(500, "GetUserByName", err)
  37. }
  38. return
  39. }
  40. }
  41. ctx.Repo.Owner = owner
  42. // Get repository.
  43. repo, err := models.GetRepositoryByName(owner.ID, repoName)
  44. if err != nil {
  45. if models.IsErrRepoNotExist(err) {
  46. ctx.Status(404)
  47. } else {
  48. ctx.Error(500, "GetRepositoryByName", err)
  49. }
  50. return
  51. } else if err = repo.GetOwner(); err != nil {
  52. ctx.Error(500, "GetOwner", err)
  53. return
  54. }
  55. if ctx.IsSigned && ctx.User.IsAdmin {
  56. ctx.Repo.AccessMode = models.AccessModeOwner
  57. } else {
  58. mode, err := models.AccessLevel(ctx.User, repo)
  59. if err != nil {
  60. ctx.Error(500, "AccessLevel", err)
  61. return
  62. }
  63. ctx.Repo.AccessMode = mode
  64. }
  65. if !ctx.Repo.HasAccess() {
  66. ctx.Status(404)
  67. return
  68. }
  69. ctx.Repo.Repository = repo
  70. }
  71. }
  72. // Contexter middleware already checks token for user sign in process.
  73. func reqToken() macaron.Handler {
  74. return func(ctx *context.Context) {
  75. if !ctx.IsSigned {
  76. ctx.Error(401)
  77. return
  78. }
  79. }
  80. }
  81. func reqBasicAuth() macaron.Handler {
  82. return func(ctx *context.Context) {
  83. if !ctx.IsBasicAuth {
  84. ctx.Error(401)
  85. return
  86. }
  87. }
  88. }
  89. func reqAdmin() macaron.Handler {
  90. return func(ctx *context.Context) {
  91. if !ctx.IsSigned || !ctx.User.IsAdmin {
  92. ctx.Error(403)
  93. return
  94. }
  95. }
  96. }
  97. func reqRepoWriter() macaron.Handler {
  98. return func(ctx *context.Context) {
  99. if !ctx.Repo.IsWriter() {
  100. ctx.Error(403)
  101. return
  102. }
  103. }
  104. }
  105. func orgAssignment(args ...bool) macaron.Handler {
  106. var (
  107. assignOrg bool
  108. assignTeam bool
  109. )
  110. if len(args) > 0 {
  111. assignOrg = args[0]
  112. }
  113. if len(args) > 1 {
  114. assignTeam = args[1]
  115. }
  116. return func(ctx *context.APIContext) {
  117. ctx.Org = new(context.APIOrganization)
  118. var err error
  119. if assignOrg {
  120. ctx.Org.Organization, err = models.GetUserByName(ctx.Params(":orgname"))
  121. if err != nil {
  122. if models.IsErrUserNotExist(err) {
  123. ctx.Status(404)
  124. } else {
  125. ctx.Error(500, "GetUserByName", err)
  126. }
  127. return
  128. }
  129. }
  130. if assignTeam {
  131. ctx.Org.Team, err = models.GetTeamByID(ctx.ParamsInt64(":teamid"))
  132. if err != nil {
  133. if models.IsErrUserNotExist(err) {
  134. ctx.Status(404)
  135. } else {
  136. ctx.Error(500, "GetTeamById", err)
  137. }
  138. return
  139. }
  140. }
  141. }
  142. }
  143. func mustEnableIssues(ctx *context.APIContext) {
  144. if !ctx.Repo.Repository.EnableIssues || ctx.Repo.Repository.EnableExternalTracker {
  145. ctx.Status(404)
  146. return
  147. }
  148. }
  149. // RegisterRoutes registers all v1 APIs routes to web application.
  150. // FIXME: custom form error response
  151. func RegisterRoutes(m *macaron.Macaron) {
  152. bind := binding.Bind
  153. m.Group("/v1", 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("").Get(user.ListAccessTokens).
  164. Post(bind(api.CreateAccessTokenOption{}), user.CreateAccessToken)
  165. }, reqBasicAuth())
  166. })
  167. })
  168. m.Group("/users", func() {
  169. m.Group("/:username", func() {
  170. m.Get("/keys", user.ListPublicKeys)
  171. m.Get("/followers", user.ListFollowers)
  172. m.Group("/following", func() {
  173. m.Get("", user.ListFollowing)
  174. m.Get("/:target", user.CheckFollowing)
  175. })
  176. })
  177. }, reqToken())
  178. m.Group("/user", func() {
  179. m.Get("", user.GetAuthenticatedUser)
  180. m.Combo("/emails").Get(user.ListEmails).
  181. Post(bind(api.CreateEmailOption{}), user.AddEmail).
  182. Delete(bind(api.CreateEmailOption{}), user.DeleteEmail)
  183. m.Get("/followers", user.ListMyFollowers)
  184. m.Group("/following", func() {
  185. m.Get("", user.ListMyFollowing)
  186. m.Combo("/:username").Get(user.CheckMyFollowing).Put(user.Follow).Delete(user.Unfollow)
  187. })
  188. m.Group("/keys", func() {
  189. m.Combo("").Get(user.ListMyPublicKeys).
  190. Post(bind(api.CreateKeyOption{}), user.CreatePublicKey)
  191. m.Combo("/:id").Get(user.GetPublicKey).
  192. Delete(user.DeletePublicKey)
  193. })
  194. }, reqToken())
  195. // Repositories
  196. m.Combo("/user/repos", reqToken()).Get(repo.ListMyRepos).
  197. Post(bind(api.CreateRepoOption{}), repo.Create)
  198. m.Post("/org/:org/repos", reqToken(), bind(api.CreateRepoOption{}), repo.CreateOrgRepo)
  199. m.Group("/repos", func() {
  200. m.Get("/search", repo.Search)
  201. })
  202. m.Group("/repos", func() {
  203. m.Post("/migrate", bind(auth.MigrateRepoForm{}), repo.Migrate)
  204. m.Combo("/:username/:reponame").Get(repo.Get).
  205. Delete(repo.Delete)
  206. m.Group("/:username/:reponame", func() {
  207. m.Group("/hooks", func() {
  208. m.Combo("").Get(repo.ListHooks).
  209. Post(bind(api.CreateHookOption{}), repo.CreateHook)
  210. m.Combo("/:id").Patch(bind(api.EditHookOption{}), repo.EditHook).
  211. Delete(repo.DeleteHook)
  212. })
  213. m.Put("/collaborators/:collaborator", bind(api.AddCollaboratorOption{}), repo.AddCollaborator)
  214. m.Get("/raw/*", context.RepoRef(), repo.GetRawFile)
  215. m.Get("/archive/*", repo.GetArchive)
  216. m.Group("/branches", func() {
  217. m.Get("", repo.ListBranches)
  218. m.Get("/:branchname", repo.GetBranch)
  219. })
  220. m.Group("/keys", func() {
  221. m.Combo("").Get(repo.ListDeployKeys).
  222. Post(bind(api.CreateKeyOption{}), repo.CreateDeployKey)
  223. m.Combo("/:id").Get(repo.GetDeployKey).
  224. Delete(repo.DeleteDeploykey)
  225. })
  226. m.Group("/issues", func() {
  227. m.Combo("").Get(repo.ListIssues).Post(bind(api.CreateIssueOption{}), repo.CreateIssue)
  228. m.Group("/:index", func() {
  229. m.Combo("").Get(repo.GetIssue).Patch(bind(api.EditIssueOption{}), repo.EditIssue)
  230. m.Group("/comments", func() {
  231. m.Combo("").Get(repo.ListIssueComments).Post(bind(api.CreateIssueCommentOption{}), repo.CreateIssueComment)
  232. m.Combo("/:id").Patch(bind(api.EditIssueCommentOption{}), repo.EditIssueComment)
  233. })
  234. m.Group("/labels", func() {
  235. m.Combo("").Get(repo.ListIssueLabels).
  236. Post(bind(api.IssueLabelsOption{}), repo.AddIssueLabels).
  237. Put(bind(api.IssueLabelsOption{}), repo.ReplaceIssueLabels).
  238. Delete(repo.ClearIssueLabels)
  239. m.Delete("/:id", repo.DeleteIssueLabel)
  240. })
  241. })
  242. }, mustEnableIssues)
  243. m.Group("/labels", func() {
  244. m.Combo("").Get(repo.ListLabels).
  245. Post(bind(api.CreateLabelOption{}), repo.CreateLabel)
  246. m.Combo("/:id").Get(repo.GetLabel).Patch(bind(api.EditLabelOption{}), repo.EditLabel).
  247. Delete(repo.DeleteLabel)
  248. })
  249. m.Group("/milestones", func() {
  250. m.Combo("").Get(repo.ListMilestones).
  251. Post(reqRepoWriter(), bind(api.CreateMilestoneOption{}), repo.CreateMilestone)
  252. m.Combo("/:id").Get(repo.GetMilestone).
  253. Patch(reqRepoWriter(), bind(api.EditMilestoneOption{}), repo.EditMilestone).
  254. Delete(reqRepoWriter(), repo.DeleteMilestone)
  255. })
  256. m.Get("/editorconfig/:filename", context.RepoRef(), repo.GetEditorconfig)
  257. }, repoAssignment())
  258. }, reqToken())
  259. // Organizations
  260. m.Get("/user/orgs", reqToken(), org.ListMyOrgs)
  261. m.Get("/users/:username/orgs", org.ListUserOrgs)
  262. m.Group("/orgs/:orgname", func() {
  263. m.Combo("").Get(org.Get).Patch(bind(api.EditOrgOption{}), org.Edit)
  264. m.Combo("/teams").Get(org.ListTeams)
  265. }, orgAssignment(true))
  266. m.Any("/*", func(ctx *context.Context) {
  267. ctx.Error(404)
  268. })
  269. m.Group("/admin", func() {
  270. m.Group("/users", func() {
  271. m.Post("", bind(api.CreateUserOption{}), admin.CreateUser)
  272. m.Group("/:username", func() {
  273. m.Combo("").Patch(bind(api.EditUserOption{}), admin.EditUser).
  274. Delete(admin.DeleteUser)
  275. m.Post("/keys", bind(api.CreateKeyOption{}), admin.CreatePublicKey)
  276. m.Post("/orgs", bind(api.CreateOrgOption{}), admin.CreateOrg)
  277. m.Post("/repos", bind(api.CreateRepoOption{}), admin.CreateRepo)
  278. })
  279. })
  280. m.Group("/orgs/:orgname", func() {
  281. m.Group("/teams", func() {
  282. m.Post("", orgAssignment(true), bind(api.CreateTeamOption{}), admin.CreateTeam)
  283. })
  284. })
  285. m.Group("/teams", func() {
  286. m.Group("/:teamid", func() {
  287. m.Combo("/members/:username").Put(admin.AddTeamMember).Delete(admin.RemoveTeamMember)
  288. m.Combo("/repos/:reponame").Put(admin.AddTeamRepository).Delete(admin.RemoveTeamRepository)
  289. }, orgAssignment(false, true))
  290. })
  291. }, reqAdmin())
  292. }, context.APIContexter())
  293. }