本站源代码
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

449 行
12KB

  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Copyright 2018 The Gitea Authors. All rights reserved.
  3. // Use of this source code is governed by a MIT-style
  4. // license that can be found in the LICENSE file.
  5. package repo
  6. import (
  7. "encoding/base64"
  8. "net/http"
  9. "code.gitea.io/gitea/models"
  10. "code.gitea.io/gitea/modules/context"
  11. "code.gitea.io/gitea/modules/git"
  12. "code.gitea.io/gitea/modules/repofiles"
  13. api "code.gitea.io/gitea/modules/structs"
  14. "code.gitea.io/gitea/routers/repo"
  15. )
  16. // GetRawFile get a file by path on a repository
  17. func GetRawFile(ctx *context.APIContext) {
  18. // swagger:operation GET /repos/{owner}/{repo}/raw/{filepath} repository repoGetRawFile
  19. // ---
  20. // summary: Get a file from a repository
  21. // produces:
  22. // - application/json
  23. // parameters:
  24. // - name: owner
  25. // in: path
  26. // description: owner of the repo
  27. // type: string
  28. // required: true
  29. // - name: repo
  30. // in: path
  31. // description: name of the repo
  32. // type: string
  33. // required: true
  34. // - name: filepath
  35. // in: path
  36. // description: filepath of the file to get
  37. // type: string
  38. // required: true
  39. // responses:
  40. // 200:
  41. // description: success
  42. if ctx.Repo.Repository.IsEmpty {
  43. ctx.NotFound()
  44. return
  45. }
  46. blob, err := ctx.Repo.Commit.GetBlobByPath(ctx.Repo.TreePath)
  47. if err != nil {
  48. if git.IsErrNotExist(err) {
  49. ctx.NotFound()
  50. } else {
  51. ctx.Error(http.StatusInternalServerError, "GetBlobByPath", err)
  52. }
  53. return
  54. }
  55. if err = repo.ServeBlob(ctx.Context, blob); err != nil {
  56. ctx.Error(http.StatusInternalServerError, "ServeBlob", err)
  57. }
  58. }
  59. // GetArchive get archive of a repository
  60. func GetArchive(ctx *context.APIContext) {
  61. // swagger:operation GET /repos/{owner}/{repo}/archive/{archive} repository repoGetArchive
  62. // ---
  63. // summary: Get an archive of a repository
  64. // produces:
  65. // - application/json
  66. // parameters:
  67. // - name: owner
  68. // in: path
  69. // description: owner of the repo
  70. // type: string
  71. // required: true
  72. // - name: repo
  73. // in: path
  74. // description: name of the repo
  75. // type: string
  76. // required: true
  77. // - name: archive
  78. // in: path
  79. // description: archive to download, consisting of a git reference and archive
  80. // type: string
  81. // required: true
  82. // responses:
  83. // 200:
  84. // description: success
  85. repoPath := models.RepoPath(ctx.Params(":username"), ctx.Params(":reponame"))
  86. gitRepo, err := git.OpenRepository(repoPath)
  87. if err != nil {
  88. ctx.Error(http.StatusInternalServerError, "OpenRepository", err)
  89. return
  90. }
  91. ctx.Repo.GitRepo = gitRepo
  92. repo.Download(ctx.Context)
  93. }
  94. // GetEditorconfig get editor config of a repository
  95. func GetEditorconfig(ctx *context.APIContext) {
  96. // swagger:operation GET /repos/{owner}/{repo}/editorconfig/{filepath} repository repoGetEditorConfig
  97. // ---
  98. // summary: Get the EditorConfig definitions of a file in a repository
  99. // produces:
  100. // - application/json
  101. // parameters:
  102. // - name: owner
  103. // in: path
  104. // description: owner of the repo
  105. // type: string
  106. // required: true
  107. // - name: repo
  108. // in: path
  109. // description: name of the repo
  110. // type: string
  111. // required: true
  112. // - name: filepath
  113. // in: path
  114. // description: filepath of file to get
  115. // type: string
  116. // required: true
  117. // responses:
  118. // 200:
  119. // description: success
  120. ec, err := ctx.Repo.GetEditorconfig()
  121. if err != nil {
  122. if git.IsErrNotExist(err) {
  123. ctx.NotFound(err)
  124. } else {
  125. ctx.Error(http.StatusInternalServerError, "GetEditorconfig", err)
  126. }
  127. return
  128. }
  129. fileName := ctx.Params("filename")
  130. def, err := ec.GetDefinitionForFilename(fileName)
  131. if def == nil {
  132. ctx.NotFound(err)
  133. return
  134. }
  135. ctx.JSON(http.StatusOK, def)
  136. }
  137. // CanWriteFiles returns true if repository is editable and user has proper access level.
  138. func CanWriteFiles(r *context.Repository) bool {
  139. return r.Permission.CanWrite(models.UnitTypeCode) && !r.Repository.IsMirror && !r.Repository.IsArchived
  140. }
  141. // CanReadFiles returns true if repository is readable and user has proper access level.
  142. func CanReadFiles(r *context.Repository) bool {
  143. return r.Permission.CanRead(models.UnitTypeCode)
  144. }
  145. // CreateFile handles API call for creating a file
  146. func CreateFile(ctx *context.APIContext, apiOpts api.CreateFileOptions) {
  147. // swagger:operation POST /repos/{owner}/{repo}/contents/{filepath} repository repoCreateFile
  148. // ---
  149. // summary: Create a file in a repository
  150. // consumes:
  151. // - application/json
  152. // produces:
  153. // - application/json
  154. // parameters:
  155. // - name: owner
  156. // in: path
  157. // description: owner of the repo
  158. // type: string
  159. // required: true
  160. // - name: repo
  161. // in: path
  162. // description: name of the repo
  163. // type: string
  164. // required: true
  165. // - name: filepath
  166. // in: path
  167. // description: path of the file to create
  168. // type: string
  169. // required: true
  170. // - name: body
  171. // in: body
  172. // required: true
  173. // schema:
  174. // "$ref": "#/definitions/CreateFileOptions"
  175. // responses:
  176. // "201":
  177. // "$ref": "#/responses/FileResponse"
  178. opts := &repofiles.UpdateRepoFileOptions{
  179. Content: apiOpts.Content,
  180. IsNewFile: true,
  181. Message: apiOpts.Message,
  182. TreePath: ctx.Params("*"),
  183. OldBranch: apiOpts.BranchName,
  184. NewBranch: apiOpts.NewBranchName,
  185. Committer: &repofiles.IdentityOptions{
  186. Name: apiOpts.Committer.Name,
  187. Email: apiOpts.Committer.Email,
  188. },
  189. Author: &repofiles.IdentityOptions{
  190. Name: apiOpts.Author.Name,
  191. Email: apiOpts.Author.Email,
  192. },
  193. }
  194. if opts.Message == "" {
  195. opts.Message = ctx.Tr("repo.editor.add", opts.TreePath)
  196. }
  197. if fileResponse, err := createOrUpdateFile(ctx, opts); err != nil {
  198. ctx.Error(http.StatusInternalServerError, "CreateFile", err)
  199. } else {
  200. ctx.JSON(http.StatusCreated, fileResponse)
  201. }
  202. }
  203. // UpdateFile handles API call for updating a file
  204. func UpdateFile(ctx *context.APIContext, apiOpts api.UpdateFileOptions) {
  205. // swagger:operation PUT /repos/{owner}/{repo}/contents/{filepath} repository repoUpdateFile
  206. // ---
  207. // summary: Update a file in a repository
  208. // consumes:
  209. // - application/json
  210. // produces:
  211. // - application/json
  212. // parameters:
  213. // - name: owner
  214. // in: path
  215. // description: owner of the repo
  216. // type: string
  217. // required: true
  218. // - name: repo
  219. // in: path
  220. // description: name of the repo
  221. // type: string
  222. // required: true
  223. // - name: filepath
  224. // in: path
  225. // description: path of the file to update
  226. // type: string
  227. // required: true
  228. // - name: body
  229. // in: body
  230. // required: true
  231. // schema:
  232. // "$ref": "#/definitions/UpdateFileOptions"
  233. // responses:
  234. // "200":
  235. // "$ref": "#/responses/FileResponse"
  236. opts := &repofiles.UpdateRepoFileOptions{
  237. Content: apiOpts.Content,
  238. SHA: apiOpts.SHA,
  239. IsNewFile: false,
  240. Message: apiOpts.Message,
  241. FromTreePath: apiOpts.FromPath,
  242. TreePath: ctx.Params("*"),
  243. OldBranch: apiOpts.BranchName,
  244. NewBranch: apiOpts.NewBranchName,
  245. Committer: &repofiles.IdentityOptions{
  246. Name: apiOpts.Committer.Name,
  247. Email: apiOpts.Committer.Email,
  248. },
  249. Author: &repofiles.IdentityOptions{
  250. Name: apiOpts.Author.Name,
  251. Email: apiOpts.Author.Email,
  252. },
  253. }
  254. if opts.Message == "" {
  255. opts.Message = ctx.Tr("repo.editor.update", opts.TreePath)
  256. }
  257. if fileResponse, err := createOrUpdateFile(ctx, opts); err != nil {
  258. ctx.Error(http.StatusInternalServerError, "UpdateFile", err)
  259. } else {
  260. ctx.JSON(http.StatusOK, fileResponse)
  261. }
  262. }
  263. // Called from both CreateFile or UpdateFile to handle both
  264. func createOrUpdateFile(ctx *context.APIContext, opts *repofiles.UpdateRepoFileOptions) (*api.FileResponse, error) {
  265. if !CanWriteFiles(ctx.Repo) {
  266. return nil, models.ErrUserDoesNotHaveAccessToRepo{
  267. UserID: ctx.User.ID,
  268. RepoName: ctx.Repo.Repository.LowerName,
  269. }
  270. }
  271. content, err := base64.StdEncoding.DecodeString(opts.Content)
  272. if err != nil {
  273. return nil, err
  274. }
  275. opts.Content = string(content)
  276. return repofiles.CreateOrUpdateRepoFile(ctx.Repo.Repository, ctx.User, opts)
  277. }
  278. // DeleteFile Delete a fle in a repository
  279. func DeleteFile(ctx *context.APIContext, apiOpts api.DeleteFileOptions) {
  280. // swagger:operation DELETE /repos/{owner}/{repo}/contents/{filepath} repository repoDeleteFile
  281. // ---
  282. // summary: Delete a file in a repository
  283. // consumes:
  284. // - application/json
  285. // produces:
  286. // - application/json
  287. // parameters:
  288. // - name: owner
  289. // in: path
  290. // description: owner of the repo
  291. // type: string
  292. // required: true
  293. // - name: repo
  294. // in: path
  295. // description: name of the repo
  296. // type: string
  297. // required: true
  298. // - name: filepath
  299. // in: path
  300. // description: path of the file to delete
  301. // type: string
  302. // required: true
  303. // - name: body
  304. // in: body
  305. // required: true
  306. // schema:
  307. // "$ref": "#/definitions/DeleteFileOptions"
  308. // responses:
  309. // "200":
  310. // "$ref": "#/responses/FileDeleteResponse"
  311. if !CanWriteFiles(ctx.Repo) {
  312. ctx.Error(http.StatusInternalServerError, "DeleteFile", models.ErrUserDoesNotHaveAccessToRepo{
  313. UserID: ctx.User.ID,
  314. RepoName: ctx.Repo.Repository.LowerName,
  315. })
  316. return
  317. }
  318. opts := &repofiles.DeleteRepoFileOptions{
  319. Message: apiOpts.Message,
  320. OldBranch: apiOpts.BranchName,
  321. NewBranch: apiOpts.NewBranchName,
  322. SHA: apiOpts.SHA,
  323. TreePath: ctx.Params("*"),
  324. Committer: &repofiles.IdentityOptions{
  325. Name: apiOpts.Committer.Name,
  326. Email: apiOpts.Committer.Email,
  327. },
  328. Author: &repofiles.IdentityOptions{
  329. Name: apiOpts.Author.Name,
  330. Email: apiOpts.Author.Email,
  331. },
  332. }
  333. if opts.Message == "" {
  334. opts.Message = ctx.Tr("repo.editor.delete", opts.TreePath)
  335. }
  336. if fileResponse, err := repofiles.DeleteRepoFile(ctx.Repo.Repository, ctx.User, opts); err != nil {
  337. ctx.Error(http.StatusInternalServerError, "DeleteFile", err)
  338. } else {
  339. ctx.JSON(http.StatusOK, fileResponse)
  340. }
  341. }
  342. // GetContents Get the metadata and contents (if a file) of an entry in a repository, or a list of entries if a dir
  343. func GetContents(ctx *context.APIContext) {
  344. // swagger:operation GET /repos/{owner}/{repo}/contents/{filepath} repository repoGetContents
  345. // ---
  346. // summary: Gets the metadata and contents (if a file) of an entry in a repository, or a list of entries if a dir
  347. // produces:
  348. // - application/json
  349. // parameters:
  350. // - name: owner
  351. // in: path
  352. // description: owner of the repo
  353. // type: string
  354. // required: true
  355. // - name: repo
  356. // in: path
  357. // description: name of the repo
  358. // type: string
  359. // required: true
  360. // - name: filepath
  361. // in: path
  362. // description: path of the dir, file, symlink or submodule in the repo
  363. // type: string
  364. // required: true
  365. // - name: ref
  366. // in: query
  367. // description: "The name of the commit/branch/tag. Default the repository’s default branch (usually master)"
  368. // type: string
  369. // required: false
  370. // responses:
  371. // "200":
  372. // "$ref": "#/responses/ContentsResponse"
  373. if !CanReadFiles(ctx.Repo) {
  374. ctx.Error(http.StatusInternalServerError, "GetContentsOrList", models.ErrUserDoesNotHaveAccessToRepo{
  375. UserID: ctx.User.ID,
  376. RepoName: ctx.Repo.Repository.LowerName,
  377. })
  378. return
  379. }
  380. treePath := ctx.Params("*")
  381. ref := ctx.QueryTrim("ref")
  382. if fileList, err := repofiles.GetContentsOrList(ctx.Repo.Repository, treePath, ref); err != nil {
  383. ctx.Error(http.StatusInternalServerError, "GetContentsOrList", err)
  384. } else {
  385. ctx.JSON(http.StatusOK, fileList)
  386. }
  387. }
  388. // GetContentsList Get the metadata of all the entries of the root dir
  389. func GetContentsList(ctx *context.APIContext) {
  390. // swagger:operation GET /repos/{owner}/{repo}/contents repository repoGetContentsList
  391. // ---
  392. // summary: Gets the metadata of all the entries of the root dir
  393. // produces:
  394. // - application/json
  395. // parameters:
  396. // - name: owner
  397. // in: path
  398. // description: owner of the repo
  399. // type: string
  400. // required: true
  401. // - name: repo
  402. // in: path
  403. // description: name of the repo
  404. // type: string
  405. // required: true
  406. // - name: ref
  407. // in: query
  408. // description: "The name of the commit/branch/tag. Default the repository’s default branch (usually master)"
  409. // type: string
  410. // required: false
  411. // responses:
  412. // "200":
  413. // "$ref": "#/responses/ContentsListResponse"
  414. // same as GetContents(), this function is here because swagger fails if path is empty in GetContents() interface
  415. GetContents(ctx)
  416. }
上海开阖软件有限公司 沪ICP备12045867号-1