2014-11-17 06:57:04 +05:30
|
|
|
// 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-05 03:46:42 +05:30
|
|
|
package repo
|
2014-11-17 08:02:26 +05:30
|
|
|
|
|
|
|
import (
|
2015-12-16 03:55:45 +05:30
|
|
|
"github.com/gogits/git-module"
|
2015-12-10 07:16:05 +05:30
|
|
|
|
2015-09-02 19:24:35 +05:30
|
|
|
"github.com/gogits/gogs/models"
|
2016-03-11 22:26:52 +05:30
|
|
|
"github.com/gogits/gogs/modules/context"
|
2014-11-17 08:02:26 +05:30
|
|
|
"github.com/gogits/gogs/routers/repo"
|
|
|
|
)
|
|
|
|
|
2015-12-03 10:54:37 +05:30
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Repositories-Contents#download-raw-content
|
2016-03-14 04:19:16 +05:30
|
|
|
func GetRawFile(ctx *context.APIContext) {
|
2015-02-16 16:21:56 +05:30
|
|
|
if !ctx.Repo.HasAccess() {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Status(404)
|
2014-11-17 08:02:26 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
blob, err := ctx.Repo.Commit.GetBlobByPath(ctx.Repo.TreeName)
|
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
if git.IsErrNotExist(err) {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Status(404)
|
2014-11-17 08:02:26 +05:30
|
|
|
} else {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "GetBlobByPath", err)
|
2014-11-17 08:02:26 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2016-03-14 04:19:16 +05:30
|
|
|
if err = repo.ServeBlob(ctx.Context, blob); err != nil {
|
|
|
|
ctx.Error(500, "ServeBlob", err)
|
2014-11-17 08:02:26 +05:30
|
|
|
}
|
|
|
|
}
|
2015-09-02 19:24:35 +05:30
|
|
|
|
2015-12-03 10:54:37 +05:30
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Repositories-Contents#download-archive
|
2016-03-14 04:19:16 +05:30
|
|
|
func GetArchive(ctx *context.APIContext) {
|
2015-09-02 19:24:35 +05:30
|
|
|
repoPath := models.RepoPath(ctx.Params(":username"), ctx.Params(":reponame"))
|
|
|
|
gitRepo, err := git.OpenRepository(repoPath)
|
|
|
|
if err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "OpenRepository", err)
|
2015-09-02 19:24:35 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.GitRepo = gitRepo
|
|
|
|
|
2016-03-14 04:19:16 +05:30
|
|
|
repo.Download(ctx.Context)
|
2015-09-02 19:24:35 +05:30
|
|
|
}
|