2014-11-16 18:27:04 -07:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// 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 (
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/routers/repo"
|
2018-03-29 07:32:40 -06:00
|
|
|
|
|
|
|
"code.gitea.io/git"
|
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
|
|
|
|
// responses:
|
2018-05-31 23:51:49 -06:00
|
|
|
// 200:
|
|
|
|
// description: success
|
2015-02-16 03:51:56 -07:00
|
|
|
if !ctx.Repo.HasAccess() {
|
2016-03-13 16:49:16 -06:00
|
|
|
ctx.Status(404)
|
2014-11-16 19:32:26 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-06-10 20:57:28 -06:00
|
|
|
if ctx.Repo.Repository.IsBare {
|
|
|
|
ctx.Status(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-24 22:35:03 -06:00
|
|
|
blob, err := ctx.Repo.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) {
|
2016-03-13 16:49:16 -06:00
|
|
|
ctx.Status(404)
|
2014-11-16 19:32:26 -07:00
|
|
|
} else {
|
2016-03-13 16:49:16 -06:00
|
|
|
ctx.Error(500, "GetBlobByPath", err)
|
2014-11-16 19:32:26 -07:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2016-03-13 16:49:16 -06:00
|
|
|
if err = repo.ServeBlob(ctx.Context, blob); err != nil {
|
|
|
|
ctx.Error(500, "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
|
|
|
|
// description: archive to download, consisting of a git reference and archive
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
2018-05-31 23:51:49 -06:00
|
|
|
// 200:
|
|
|
|
// description: success
|
2015-09-02 07:54:35 -06:00
|
|
|
repoPath := models.RepoPath(ctx.Params(":username"), ctx.Params(":reponame"))
|
|
|
|
gitRepo, err := git.OpenRepository(repoPath)
|
|
|
|
if err != nil {
|
2016-03-13 16:49:16 -06:00
|
|
|
ctx.Error(500, "OpenRepository", err)
|
2015-09-02 07:54:35 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.GitRepo = gitRepo
|
|
|
|
|
2016-03-13 16:49:16 -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
|
2016-08-30 17:18:40 -06:00
|
|
|
ec, err := ctx.Repo.GetEditorconfig()
|
|
|
|
if err != nil {
|
|
|
|
if git.IsErrNotExist(err) {
|
|
|
|
ctx.Error(404, "GetEditorconfig", err)
|
|
|
|
} else {
|
|
|
|
ctx.Error(500, "GetEditorconfig", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
fileName := ctx.Params("filename")
|
|
|
|
def := ec.GetDefinitionForFilename(fileName)
|
|
|
|
if def == nil {
|
|
|
|
ctx.Error(404, "GetDefinitionForFilename", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.JSON(200, def)
|
|
|
|
}
|