2014-11-17 01:27:04 +00:00
|
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2018-11-28 11:26:14 +00:00
|
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2014-11-17 01:27:04 +00:00
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
2015-12-04 22:16:42 +00:00
|
|
|
|
package repo
|
2014-11-17 02:32:26 +00:00
|
|
|
|
|
|
|
|
|
import (
|
2019-04-17 16:06:35 +00:00
|
|
|
|
"encoding/base64"
|
2020-05-31 20:59:34 +00:00
|
|
|
|
"fmt"
|
2019-04-17 16:06:35 +00:00
|
|
|
|
"net/http"
|
2019-12-24 02:33:52 +00:00
|
|
|
|
"time"
|
2019-04-17 16:06:35 +00:00
|
|
|
|
|
2016-11-10 16:24:48 +00:00
|
|
|
|
"code.gitea.io/gitea/models"
|
2021-12-10 01:27:50 +00:00
|
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-09 19:57:58 +00:00
|
|
|
|
"code.gitea.io/gitea/models/unit"
|
2016-11-10 16:24:48 +00:00
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-03-27 09:33:00 +00:00
|
|
|
|
"code.gitea.io/gitea/modules/git"
|
2019-05-11 10:21:34 +00:00
|
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 15:36:53 +00:00
|
|
|
|
"code.gitea.io/gitea/modules/web"
|
2021-06-08 23:33:54 +00:00
|
|
|
|
"code.gitea.io/gitea/routers/common"
|
2021-06-23 21:12:38 +00:00
|
|
|
|
"code.gitea.io/gitea/routers/web/repo"
|
2021-11-24 07:56:24 +00:00
|
|
|
|
files_service "code.gitea.io/gitea/services/repository/files"
|
2014-11-17 02:32:26 +00:00
|
|
|
|
)
|
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
|
// GetRawFile get a file by path on a repository
|
2016-03-13 22:49:16 +00:00
|
|
|
|
func GetRawFile(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/raw/{filepath} repository repoGetRawFile
|
|
|
|
|
// ---
|
|
|
|
|
// summary: Get a file from a repository
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// parameters:
|
|
|
|
|
// - name: owner
|
|
|
|
|
// in: path
|
|
|
|
|
// description: owner of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: repo
|
|
|
|
|
// in: path
|
|
|
|
|
// description: name of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: filepath
|
|
|
|
|
// in: path
|
|
|
|
|
// description: filepath of the file to get
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
2021-02-09 00:15:47 +00:00
|
|
|
|
// - name: ref
|
|
|
|
|
// in: query
|
|
|
|
|
// description: "The name of the commit/branch/tag. Default the repository’s default branch (usually master)"
|
|
|
|
|
// type: string
|
|
|
|
|
// required: false
|
2017-11-13 07:02:25 +00:00
|
|
|
|
// responses:
|
2018-06-01 05:51:49 +00:00
|
|
|
|
// 200:
|
|
|
|
|
// description: success
|
2019-12-20 17:07:12 +00:00
|
|
|
|
// "404":
|
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
|
2019-01-18 00:01:04 +00:00
|
|
|
|
if ctx.Repo.Repository.IsEmpty {
|
2019-03-19 02:29:43 +00:00
|
|
|
|
ctx.NotFound()
|
2017-06-11 02:57:28 +00:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-09 00:15:47 +00:00
|
|
|
|
commit := ctx.Repo.Commit
|
|
|
|
|
|
2021-07-29 01:42:15 +00:00
|
|
|
|
if ref := ctx.FormTrim("ref"); len(ref) > 0 {
|
2021-02-09 00:15:47 +00:00
|
|
|
|
var err error
|
|
|
|
|
commit, err = ctx.Repo.GitRepo.GetCommit(ref)
|
|
|
|
|
if err != nil {
|
|
|
|
|
if git.IsErrNotExist(err) {
|
|
|
|
|
ctx.NotFound()
|
|
|
|
|
} else {
|
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetBlobByPath", err)
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
blob, err := commit.GetBlobByPath(ctx.Repo.TreePath)
|
2014-11-17 02:32:26 +00:00
|
|
|
|
if err != nil {
|
2015-12-10 01:46:05 +00:00
|
|
|
|
if git.IsErrNotExist(err) {
|
2019-03-19 02:29:43 +00:00
|
|
|
|
ctx.NotFound()
|
2014-11-17 02:32:26 +00:00
|
|
|
|
} else {
|
2019-04-17 16:06:35 +00:00
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetBlobByPath", err)
|
2014-11-17 02:32:26 +00:00
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
2021-06-08 23:33:54 +00:00
|
|
|
|
if err = common.ServeBlob(ctx.Context, blob); err != nil {
|
2019-04-17 16:06:35 +00:00
|
|
|
|
ctx.Error(http.StatusInternalServerError, "ServeBlob", err)
|
2014-11-17 02:32:26 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-09-02 13:54:35 +00:00
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
|
// GetArchive get archive of a repository
|
2016-03-13 22:49:16 +00:00
|
|
|
|
func GetArchive(ctx *context.APIContext) {
|
2018-06-12 14:59:22 +00:00
|
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/archive/{archive} repository repoGetArchive
|
2017-11-13 07:02:25 +00:00
|
|
|
|
// ---
|
|
|
|
|
// summary: Get an archive of a repository
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// parameters:
|
|
|
|
|
// - name: owner
|
|
|
|
|
// in: path
|
|
|
|
|
// description: owner of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: repo
|
|
|
|
|
// in: path
|
|
|
|
|
// description: name of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: archive
|
|
|
|
|
// in: path
|
2020-09-06 16:23:47 +00:00
|
|
|
|
// description: the git reference for download with attached archive format (e.g. master.zip)
|
2017-11-13 07:02:25 +00:00
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// responses:
|
2018-06-01 05:51:49 +00:00
|
|
|
|
// 200:
|
|
|
|
|
// description: success
|
2019-12-20 17:07:12 +00:00
|
|
|
|
// "404":
|
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
|
2021-12-10 01:27:50 +00:00
|
|
|
|
repoPath := repo_model.RepoPath(ctx.Params(":username"), ctx.Params(":reponame"))
|
2021-09-18 00:54:15 +00:00
|
|
|
|
if ctx.Repo.GitRepo == nil {
|
|
|
|
|
gitRepo, err := git.OpenRepository(repoPath)
|
|
|
|
|
if err != nil {
|
|
|
|
|
ctx.Error(http.StatusInternalServerError, "OpenRepository", err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
ctx.Repo.GitRepo = gitRepo
|
|
|
|
|
defer gitRepo.Close()
|
2015-09-02 13:54:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-23 21:12:38 +00:00
|
|
|
|
repo.Download(ctx.Context)
|
2015-09-02 13:54:35 +00:00
|
|
|
|
}
|
2016-08-30 23:18:40 +00:00
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
|
// GetEditorconfig get editor config of a repository
|
2016-08-30 23:18:40 +00:00
|
|
|
|
func GetEditorconfig(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/editorconfig/{filepath} repository repoGetEditorConfig
|
|
|
|
|
// ---
|
|
|
|
|
// summary: Get the EditorConfig definitions of a file in a repository
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// parameters:
|
|
|
|
|
// - name: owner
|
|
|
|
|
// in: path
|
|
|
|
|
// description: owner of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: repo
|
|
|
|
|
// in: path
|
|
|
|
|
// description: name of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: filepath
|
|
|
|
|
// in: path
|
|
|
|
|
// description: filepath of file to get
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// responses:
|
2018-06-01 05:51:49 +00:00
|
|
|
|
// 200:
|
|
|
|
|
// description: success
|
2019-12-20 17:07:12 +00:00
|
|
|
|
// "404":
|
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
|
2016-08-30 23:18:40 +00:00
|
|
|
|
ec, err := ctx.Repo.GetEditorconfig()
|
|
|
|
|
if err != nil {
|
|
|
|
|
if git.IsErrNotExist(err) {
|
2019-03-19 02:29:43 +00:00
|
|
|
|
ctx.NotFound(err)
|
2016-08-30 23:18:40 +00:00
|
|
|
|
} else {
|
2019-04-17 16:06:35 +00:00
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetEditorconfig", err)
|
2016-08-30 23:18:40 +00:00
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fileName := ctx.Params("filename")
|
2019-10-17 00:15:02 +00:00
|
|
|
|
def, err := ec.GetDefinitionForFilename(fileName)
|
2016-08-30 23:18:40 +00:00
|
|
|
|
if def == nil {
|
2019-03-19 02:29:43 +00:00
|
|
|
|
ctx.NotFound(err)
|
2016-08-30 23:18:40 +00:00
|
|
|
|
return
|
|
|
|
|
}
|
2019-04-17 16:06:35 +00:00
|
|
|
|
ctx.JSON(http.StatusOK, def)
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-24 16:20:22 +00:00
|
|
|
|
// canWriteFiles returns true if repository is editable and user has proper access level.
|
|
|
|
|
func canWriteFiles(r *context.Repository) bool {
|
2021-11-09 19:57:58 +00:00
|
|
|
|
return r.Permission.CanWrite(unit.TypeCode) && !r.Repository.IsMirror && !r.Repository.IsArchived
|
2019-04-17 16:06:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-24 16:20:22 +00:00
|
|
|
|
// canReadFiles returns true if repository is readable and user has proper access level.
|
|
|
|
|
func canReadFiles(r *context.Repository) bool {
|
2021-11-09 19:57:58 +00:00
|
|
|
|
return r.Permission.CanRead(unit.TypeCode)
|
2019-04-17 16:06:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// CreateFile handles API call for creating a file
|
2021-01-26 15:36:53 +00:00
|
|
|
|
func CreateFile(ctx *context.APIContext) {
|
2019-04-17 16:06:35 +00:00
|
|
|
|
// swagger:operation POST /repos/{owner}/{repo}/contents/{filepath} repository repoCreateFile
|
|
|
|
|
// ---
|
|
|
|
|
// summary: Create a file in a repository
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// parameters:
|
|
|
|
|
// - name: owner
|
|
|
|
|
// in: path
|
|
|
|
|
// description: owner of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: repo
|
|
|
|
|
// in: path
|
|
|
|
|
// description: name of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: filepath
|
|
|
|
|
// in: path
|
|
|
|
|
// description: path of the file to create
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: body
|
|
|
|
|
// in: body
|
2019-05-30 17:57:55 +00:00
|
|
|
|
// required: true
|
2019-04-17 16:06:35 +00:00
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/definitions/CreateFileOptions"
|
|
|
|
|
// responses:
|
|
|
|
|
// "201":
|
|
|
|
|
// "$ref": "#/responses/FileResponse"
|
2020-05-31 20:59:34 +00:00
|
|
|
|
// "403":
|
|
|
|
|
// "$ref": "#/responses/error"
|
|
|
|
|
// "404":
|
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
// "422":
|
|
|
|
|
// "$ref": "#/responses/error"
|
|
|
|
|
|
2021-01-26 15:36:53 +00:00
|
|
|
|
apiOpts := web.GetForm(ctx).(*api.CreateFileOptions)
|
2020-05-31 20:59:34 +00:00
|
|
|
|
if ctx.Repo.Repository.IsEmpty {
|
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "RepoIsEmpty", fmt.Errorf("repo is empty"))
|
|
|
|
|
}
|
2019-04-17 16:06:35 +00:00
|
|
|
|
|
2020-04-20 16:47:05 +00:00
|
|
|
|
if apiOpts.BranchName == "" {
|
|
|
|
|
apiOpts.BranchName = ctx.Repo.Repository.DefaultBranch
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-24 07:56:24 +00:00
|
|
|
|
opts := &files_service.UpdateRepoFileOptions{
|
2019-04-17 16:06:35 +00:00
|
|
|
|
Content: apiOpts.Content,
|
|
|
|
|
IsNewFile: true,
|
|
|
|
|
Message: apiOpts.Message,
|
|
|
|
|
TreePath: ctx.Params("*"),
|
|
|
|
|
OldBranch: apiOpts.BranchName,
|
|
|
|
|
NewBranch: apiOpts.NewBranchName,
|
2021-11-24 07:56:24 +00:00
|
|
|
|
Committer: &files_service.IdentityOptions{
|
2019-04-17 16:06:35 +00:00
|
|
|
|
Name: apiOpts.Committer.Name,
|
|
|
|
|
Email: apiOpts.Committer.Email,
|
|
|
|
|
},
|
2021-11-24 07:56:24 +00:00
|
|
|
|
Author: &files_service.IdentityOptions{
|
2019-04-17 16:06:35 +00:00
|
|
|
|
Name: apiOpts.Author.Name,
|
|
|
|
|
Email: apiOpts.Author.Email,
|
|
|
|
|
},
|
2021-11-24 07:56:24 +00:00
|
|
|
|
Dates: &files_service.CommitDateOptions{
|
2019-12-24 02:33:52 +00:00
|
|
|
|
Author: apiOpts.Dates.Author,
|
|
|
|
|
Committer: apiOpts.Dates.Committer,
|
|
|
|
|
},
|
2021-01-29 08:57:45 +00:00
|
|
|
|
Signoff: apiOpts.Signoff,
|
2019-12-24 02:33:52 +00:00
|
|
|
|
}
|
|
|
|
|
if opts.Dates.Author.IsZero() {
|
|
|
|
|
opts.Dates.Author = time.Now()
|
|
|
|
|
}
|
|
|
|
|
if opts.Dates.Committer.IsZero() {
|
|
|
|
|
opts.Dates.Committer = time.Now()
|
2019-04-17 16:06:35 +00:00
|
|
|
|
}
|
2019-06-29 15:19:24 +00:00
|
|
|
|
|
|
|
|
|
if opts.Message == "" {
|
|
|
|
|
opts.Message = ctx.Tr("repo.editor.add", opts.TreePath)
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-17 16:06:35 +00:00
|
|
|
|
if fileResponse, err := createOrUpdateFile(ctx, opts); err != nil {
|
2020-05-31 20:59:34 +00:00
|
|
|
|
handleCreateOrUpdateFileError(ctx, err)
|
2019-04-17 16:06:35 +00:00
|
|
|
|
} else {
|
|
|
|
|
ctx.JSON(http.StatusCreated, fileResponse)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// UpdateFile handles API call for updating a file
|
2021-01-26 15:36:53 +00:00
|
|
|
|
func UpdateFile(ctx *context.APIContext) {
|
2019-04-17 16:06:35 +00:00
|
|
|
|
// swagger:operation PUT /repos/{owner}/{repo}/contents/{filepath} repository repoUpdateFile
|
|
|
|
|
// ---
|
|
|
|
|
// summary: Update a file in a repository
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// parameters:
|
|
|
|
|
// - name: owner
|
|
|
|
|
// in: path
|
|
|
|
|
// description: owner of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: repo
|
|
|
|
|
// in: path
|
|
|
|
|
// description: name of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: filepath
|
|
|
|
|
// in: path
|
|
|
|
|
// description: path of the file to update
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: body
|
|
|
|
|
// in: body
|
2019-05-30 17:57:55 +00:00
|
|
|
|
// required: true
|
2019-04-17 16:06:35 +00:00
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/definitions/UpdateFileOptions"
|
|
|
|
|
// responses:
|
|
|
|
|
// "200":
|
|
|
|
|
// "$ref": "#/responses/FileResponse"
|
2020-05-31 20:59:34 +00:00
|
|
|
|
// "403":
|
|
|
|
|
// "$ref": "#/responses/error"
|
|
|
|
|
// "404":
|
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
// "422":
|
|
|
|
|
// "$ref": "#/responses/error"
|
2021-01-26 15:36:53 +00:00
|
|
|
|
apiOpts := web.GetForm(ctx).(*api.UpdateFileOptions)
|
2020-05-31 20:59:34 +00:00
|
|
|
|
if ctx.Repo.Repository.IsEmpty {
|
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "RepoIsEmpty", fmt.Errorf("repo is empty"))
|
|
|
|
|
}
|
2019-04-17 16:06:35 +00:00
|
|
|
|
|
2020-04-20 16:47:05 +00:00
|
|
|
|
if apiOpts.BranchName == "" {
|
|
|
|
|
apiOpts.BranchName = ctx.Repo.Repository.DefaultBranch
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-24 07:56:24 +00:00
|
|
|
|
opts := &files_service.UpdateRepoFileOptions{
|
2019-04-17 16:06:35 +00:00
|
|
|
|
Content: apiOpts.Content,
|
|
|
|
|
SHA: apiOpts.SHA,
|
|
|
|
|
IsNewFile: false,
|
|
|
|
|
Message: apiOpts.Message,
|
|
|
|
|
FromTreePath: apiOpts.FromPath,
|
|
|
|
|
TreePath: ctx.Params("*"),
|
|
|
|
|
OldBranch: apiOpts.BranchName,
|
|
|
|
|
NewBranch: apiOpts.NewBranchName,
|
2021-11-24 07:56:24 +00:00
|
|
|
|
Committer: &files_service.IdentityOptions{
|
2019-04-17 16:06:35 +00:00
|
|
|
|
Name: apiOpts.Committer.Name,
|
|
|
|
|
Email: apiOpts.Committer.Email,
|
|
|
|
|
},
|
2021-11-24 07:56:24 +00:00
|
|
|
|
Author: &files_service.IdentityOptions{
|
2019-04-17 16:06:35 +00:00
|
|
|
|
Name: apiOpts.Author.Name,
|
|
|
|
|
Email: apiOpts.Author.Email,
|
|
|
|
|
},
|
2021-11-24 07:56:24 +00:00
|
|
|
|
Dates: &files_service.CommitDateOptions{
|
2019-12-24 02:33:52 +00:00
|
|
|
|
Author: apiOpts.Dates.Author,
|
|
|
|
|
Committer: apiOpts.Dates.Committer,
|
|
|
|
|
},
|
2021-01-29 08:57:45 +00:00
|
|
|
|
Signoff: apiOpts.Signoff,
|
2019-12-24 02:33:52 +00:00
|
|
|
|
}
|
|
|
|
|
if opts.Dates.Author.IsZero() {
|
|
|
|
|
opts.Dates.Author = time.Now()
|
|
|
|
|
}
|
|
|
|
|
if opts.Dates.Committer.IsZero() {
|
|
|
|
|
opts.Dates.Committer = time.Now()
|
2019-04-17 16:06:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-29 15:19:24 +00:00
|
|
|
|
if opts.Message == "" {
|
|
|
|
|
opts.Message = ctx.Tr("repo.editor.update", opts.TreePath)
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-17 16:06:35 +00:00
|
|
|
|
if fileResponse, err := createOrUpdateFile(ctx, opts); err != nil {
|
2020-05-31 20:59:34 +00:00
|
|
|
|
handleCreateOrUpdateFileError(ctx, err)
|
2019-04-17 16:06:35 +00:00
|
|
|
|
} else {
|
|
|
|
|
ctx.JSON(http.StatusOK, fileResponse)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-31 20:59:34 +00:00
|
|
|
|
func handleCreateOrUpdateFileError(ctx *context.APIContext, err error) {
|
|
|
|
|
if models.IsErrUserCannotCommit(err) || models.IsErrFilePathProtected(err) {
|
|
|
|
|
ctx.Error(http.StatusForbidden, "Access", err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if models.IsErrBranchAlreadyExists(err) || models.IsErrFilenameInvalid(err) || models.IsErrSHADoesNotMatch(err) ||
|
|
|
|
|
models.IsErrFilePathInvalid(err) || models.IsErrRepoFileAlreadyExists(err) {
|
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "Invalid", err)
|
|
|
|
|
return
|
|
|
|
|
}
|
2020-06-07 17:30:58 +00:00
|
|
|
|
if models.IsErrBranchDoesNotExist(err) || git.IsErrBranchNotExist(err) {
|
|
|
|
|
ctx.Error(http.StatusNotFound, "BranchDoesNotExist", err)
|
|
|
|
|
return
|
|
|
|
|
}
|
2020-05-31 20:59:34 +00:00
|
|
|
|
|
|
|
|
|
ctx.Error(http.StatusInternalServerError, "UpdateFile", err)
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-17 16:06:35 +00:00
|
|
|
|
// Called from both CreateFile or UpdateFile to handle both
|
2021-11-24 07:56:24 +00:00
|
|
|
|
func createOrUpdateFile(ctx *context.APIContext, opts *files_service.UpdateRepoFileOptions) (*api.FileResponse, error) {
|
2020-04-24 16:20:22 +00:00
|
|
|
|
if !canWriteFiles(ctx.Repo) {
|
2019-04-17 16:06:35 +00:00
|
|
|
|
return nil, models.ErrUserDoesNotHaveAccessToRepo{
|
|
|
|
|
UserID: ctx.User.ID,
|
|
|
|
|
RepoName: ctx.Repo.Repository.LowerName,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
content, err := base64.StdEncoding.DecodeString(opts.Content)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
opts.Content = string(content)
|
|
|
|
|
|
2021-11-24 07:56:24 +00:00
|
|
|
|
return files_service.CreateOrUpdateRepoFile(ctx.Repo.Repository, ctx.User, opts)
|
2019-04-17 16:06:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-10 09:32:37 +00:00
|
|
|
|
// DeleteFile Delete a file in a repository
|
2021-01-26 15:36:53 +00:00
|
|
|
|
func DeleteFile(ctx *context.APIContext) {
|
2019-04-17 16:06:35 +00:00
|
|
|
|
// swagger:operation DELETE /repos/{owner}/{repo}/contents/{filepath} repository repoDeleteFile
|
|
|
|
|
// ---
|
|
|
|
|
// summary: Delete a file in a repository
|
|
|
|
|
// consumes:
|
|
|
|
|
// - application/json
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// parameters:
|
|
|
|
|
// - name: owner
|
|
|
|
|
// in: path
|
|
|
|
|
// description: owner of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: repo
|
|
|
|
|
// in: path
|
|
|
|
|
// description: name of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: filepath
|
|
|
|
|
// in: path
|
|
|
|
|
// description: path of the file to delete
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: body
|
|
|
|
|
// in: body
|
2019-05-30 17:57:55 +00:00
|
|
|
|
// required: true
|
2019-04-17 16:06:35 +00:00
|
|
|
|
// schema:
|
|
|
|
|
// "$ref": "#/definitions/DeleteFileOptions"
|
|
|
|
|
// responses:
|
|
|
|
|
// "200":
|
|
|
|
|
// "$ref": "#/responses/FileDeleteResponse"
|
2020-04-15 05:18:51 +00:00
|
|
|
|
// "400":
|
|
|
|
|
// "$ref": "#/responses/error"
|
|
|
|
|
// "403":
|
|
|
|
|
// "$ref": "#/responses/error"
|
|
|
|
|
// "404":
|
|
|
|
|
// "$ref": "#/responses/error"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
|
2021-01-26 15:36:53 +00:00
|
|
|
|
apiOpts := web.GetForm(ctx).(*api.DeleteFileOptions)
|
2020-04-24 16:20:22 +00:00
|
|
|
|
if !canWriteFiles(ctx.Repo) {
|
2020-04-15 05:18:51 +00:00
|
|
|
|
ctx.Error(http.StatusForbidden, "DeleteFile", models.ErrUserDoesNotHaveAccessToRepo{
|
2019-04-17 16:06:35 +00:00
|
|
|
|
UserID: ctx.User.ID,
|
|
|
|
|
RepoName: ctx.Repo.Repository.LowerName,
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-20 16:47:05 +00:00
|
|
|
|
if apiOpts.BranchName == "" {
|
|
|
|
|
apiOpts.BranchName = ctx.Repo.Repository.DefaultBranch
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-24 07:56:24 +00:00
|
|
|
|
opts := &files_service.DeleteRepoFileOptions{
|
2019-04-17 16:06:35 +00:00
|
|
|
|
Message: apiOpts.Message,
|
|
|
|
|
OldBranch: apiOpts.BranchName,
|
|
|
|
|
NewBranch: apiOpts.NewBranchName,
|
|
|
|
|
SHA: apiOpts.SHA,
|
|
|
|
|
TreePath: ctx.Params("*"),
|
2021-11-24 07:56:24 +00:00
|
|
|
|
Committer: &files_service.IdentityOptions{
|
2019-04-17 16:06:35 +00:00
|
|
|
|
Name: apiOpts.Committer.Name,
|
|
|
|
|
Email: apiOpts.Committer.Email,
|
|
|
|
|
},
|
2021-11-24 07:56:24 +00:00
|
|
|
|
Author: &files_service.IdentityOptions{
|
2019-04-17 16:06:35 +00:00
|
|
|
|
Name: apiOpts.Author.Name,
|
|
|
|
|
Email: apiOpts.Author.Email,
|
|
|
|
|
},
|
2021-11-24 07:56:24 +00:00
|
|
|
|
Dates: &files_service.CommitDateOptions{
|
2019-12-24 02:33:52 +00:00
|
|
|
|
Author: apiOpts.Dates.Author,
|
|
|
|
|
Committer: apiOpts.Dates.Committer,
|
|
|
|
|
},
|
2021-01-29 08:57:45 +00:00
|
|
|
|
Signoff: apiOpts.Signoff,
|
2019-12-24 02:33:52 +00:00
|
|
|
|
}
|
|
|
|
|
if opts.Dates.Author.IsZero() {
|
|
|
|
|
opts.Dates.Author = time.Now()
|
|
|
|
|
}
|
|
|
|
|
if opts.Dates.Committer.IsZero() {
|
|
|
|
|
opts.Dates.Committer = time.Now()
|
2019-04-17 16:06:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-29 15:19:24 +00:00
|
|
|
|
if opts.Message == "" {
|
|
|
|
|
opts.Message = ctx.Tr("repo.editor.delete", opts.TreePath)
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-24 07:56:24 +00:00
|
|
|
|
if fileResponse, err := files_service.DeleteRepoFile(ctx.Repo.Repository, ctx.User, opts); err != nil {
|
2020-04-15 05:18:51 +00:00
|
|
|
|
if git.IsErrBranchNotExist(err) || models.IsErrRepoFileDoesNotExist(err) || git.IsErrNotExist(err) {
|
|
|
|
|
ctx.Error(http.StatusNotFound, "DeleteFile", err)
|
|
|
|
|
return
|
|
|
|
|
} else if models.IsErrBranchAlreadyExists(err) ||
|
|
|
|
|
models.IsErrFilenameInvalid(err) ||
|
|
|
|
|
models.IsErrSHADoesNotMatch(err) ||
|
|
|
|
|
models.IsErrCommitIDDoesNotMatch(err) ||
|
|
|
|
|
models.IsErrSHAOrCommitIDNotProvided(err) {
|
|
|
|
|
ctx.Error(http.StatusBadRequest, "DeleteFile", err)
|
|
|
|
|
return
|
|
|
|
|
} else if models.IsErrUserCannotCommit(err) {
|
|
|
|
|
ctx.Error(http.StatusForbidden, "DeleteFile", err)
|
|
|
|
|
return
|
|
|
|
|
}
|
2019-04-17 16:06:35 +00:00
|
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteFile", err)
|
|
|
|
|
} else {
|
2020-04-15 05:18:51 +00:00
|
|
|
|
ctx.JSON(http.StatusOK, fileResponse) // FIXME on APIv2: return http.StatusNoContent
|
2019-04-17 16:06:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-29 20:51:10 +00:00
|
|
|
|
// GetContents Get the metadata and contents (if a file) of an entry in a repository, or a list of entries if a dir
|
|
|
|
|
func GetContents(ctx *context.APIContext) {
|
|
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/contents/{filepath} repository repoGetContents
|
2019-04-17 16:06:35 +00:00
|
|
|
|
// ---
|
2019-06-29 20:51:10 +00:00
|
|
|
|
// summary: Gets the metadata and contents (if a file) of an entry in a repository, or a list of entries if a dir
|
2019-04-17 16:06:35 +00:00
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// parameters:
|
|
|
|
|
// - name: owner
|
|
|
|
|
// in: path
|
|
|
|
|
// description: owner of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: repo
|
|
|
|
|
// in: path
|
|
|
|
|
// description: name of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: filepath
|
|
|
|
|
// in: path
|
2019-06-29 20:51:10 +00:00
|
|
|
|
// description: path of the dir, file, symlink or submodule in the repo
|
2019-04-17 16:06:35 +00:00
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: ref
|
|
|
|
|
// in: query
|
|
|
|
|
// description: "The name of the commit/branch/tag. Default the repository’s default branch (usually master)"
|
|
|
|
|
// type: string
|
2019-06-29 20:51:10 +00:00
|
|
|
|
// required: false
|
2019-04-17 16:06:35 +00:00
|
|
|
|
// responses:
|
|
|
|
|
// "200":
|
2019-06-29 20:51:10 +00:00
|
|
|
|
// "$ref": "#/responses/ContentsResponse"
|
2020-04-15 05:18:51 +00:00
|
|
|
|
// "404":
|
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-04-17 16:06:35 +00:00
|
|
|
|
|
2020-04-24 16:20:22 +00:00
|
|
|
|
if !canReadFiles(ctx.Repo) {
|
2019-06-29 20:51:10 +00:00
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetContentsOrList", models.ErrUserDoesNotHaveAccessToRepo{
|
2019-04-17 16:06:35 +00:00
|
|
|
|
UserID: ctx.User.ID,
|
|
|
|
|
RepoName: ctx.Repo.Repository.LowerName,
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
treePath := ctx.Params("*")
|
2021-07-29 01:42:15 +00:00
|
|
|
|
ref := ctx.FormTrim("ref")
|
2019-04-17 16:06:35 +00:00
|
|
|
|
|
2021-11-24 07:56:24 +00:00
|
|
|
|
if fileList, err := files_service.GetContentsOrList(ctx.Repo.Repository, treePath, ref); err != nil {
|
2020-04-15 05:18:51 +00:00
|
|
|
|
if git.IsErrNotExist(err) {
|
|
|
|
|
ctx.NotFound("GetContentsOrList", err)
|
|
|
|
|
return
|
|
|
|
|
}
|
2019-06-29 20:51:10 +00:00
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetContentsOrList", err)
|
2019-04-17 16:06:35 +00:00
|
|
|
|
} else {
|
2019-06-29 20:51:10 +00:00
|
|
|
|
ctx.JSON(http.StatusOK, fileList)
|
2019-04-17 16:06:35 +00:00
|
|
|
|
}
|
2016-08-30 23:18:40 +00:00
|
|
|
|
}
|
2019-06-29 20:51:10 +00:00
|
|
|
|
|
|
|
|
|
// GetContentsList Get the metadata of all the entries of the root dir
|
|
|
|
|
func GetContentsList(ctx *context.APIContext) {
|
|
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/contents repository repoGetContentsList
|
|
|
|
|
// ---
|
|
|
|
|
// summary: Gets the metadata of all the entries of the root dir
|
|
|
|
|
// produces:
|
|
|
|
|
// - application/json
|
|
|
|
|
// parameters:
|
|
|
|
|
// - name: owner
|
|
|
|
|
// in: path
|
|
|
|
|
// description: owner of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: repo
|
|
|
|
|
// in: path
|
|
|
|
|
// description: name of the repo
|
|
|
|
|
// type: string
|
|
|
|
|
// required: true
|
|
|
|
|
// - name: ref
|
|
|
|
|
// in: query
|
|
|
|
|
// description: "The name of the commit/branch/tag. Default the repository’s default branch (usually master)"
|
|
|
|
|
// type: string
|
|
|
|
|
// required: false
|
|
|
|
|
// responses:
|
|
|
|
|
// "200":
|
|
|
|
|
// "$ref": "#/responses/ContentsListResponse"
|
2020-04-15 05:18:51 +00:00
|
|
|
|
// "404":
|
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-06-29 20:51:10 +00:00
|
|
|
|
|
|
|
|
|
// same as GetContents(), this function is here because swagger fails if path is empty in GetContents() interface
|
|
|
|
|
GetContents(ctx)
|
|
|
|
|
}
|