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