2014-11-17 01:27:04 +00: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 22:16:42 +00:00
|
|
|
package repo
|
2014-11-17 02:32:26 +00:00
|
|
|
|
|
|
|
import (
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/git"
|
2015-12-10 01:46:05 +00:00
|
|
|
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/routers/repo"
|
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
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories-Contents#download-raw-content
|
2016-03-13 22:49:16 +00:00
|
|
|
func GetRawFile(ctx *context.APIContext) {
|
2015-02-16 10:51:56 +00:00
|
|
|
if !ctx.Repo.HasAccess() {
|
2016-03-13 22:49:16 +00:00
|
|
|
ctx.Status(404)
|
2014-11-17 02:32:26 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-25 04:35:03 +00:00
|
|
|
blob, err := ctx.Repo.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) {
|
2016-03-13 22:49:16 +00:00
|
|
|
ctx.Status(404)
|
2014-11-17 02:32:26 +00:00
|
|
|
} else {
|
2016-03-13 22:49:16 +00:00
|
|
|
ctx.Error(500, "GetBlobByPath", err)
|
2014-11-17 02:32:26 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2016-03-13 22:49:16 +00:00
|
|
|
if err = repo.ServeBlob(ctx.Context, blob); err != nil {
|
|
|
|
ctx.Error(500, "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
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories-Contents#download-archive
|
2016-03-13 22:49:16 +00:00
|
|
|
func GetArchive(ctx *context.APIContext) {
|
2015-09-02 13:54:35 +00:00
|
|
|
repoPath := models.RepoPath(ctx.Params(":username"), ctx.Params(":reponame"))
|
|
|
|
gitRepo, err := git.OpenRepository(repoPath)
|
|
|
|
if err != nil {
|
2016-03-13 22:49:16 +00:00
|
|
|
ctx.Error(500, "OpenRepository", err)
|
2015-09-02 13:54:35 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.GitRepo = gitRepo
|
|
|
|
|
2016-03-13 22:49:16 +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) {
|
|
|
|
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)
|
|
|
|
}
|