2014-04-15 21:57:29 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2018-11-19 00:15:40 +05:30
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2014-04-15 21:57:29 +05:30
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-03-27 15:03:00 +05:30
|
|
|
"code.gitea.io/gitea/modules/git"
|
2021-04-12 20:19:26 +05:30
|
|
|
"code.gitea.io/gitea/modules/httpcache"
|
2019-02-12 20:39:43 +05:30
|
|
|
"code.gitea.io/gitea/modules/lfs"
|
2019-06-13 01:11:28 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-08-21 23:52:06 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/modules/storage"
|
2021-06-09 05:03:54 +05:30
|
|
|
"code.gitea.io/gitea/routers/common"
|
2014-04-15 21:57:29 +05:30
|
|
|
)
|
|
|
|
|
2019-02-12 20:39:43 +05:30
|
|
|
// ServeBlobOrLFS download a git.Blob redirecting to LFS if necessary
|
|
|
|
func ServeBlobOrLFS(ctx *context.Context, blob *git.Blob) error {
|
2021-04-12 20:19:26 +05:30
|
|
|
if httpcache.HandleGenericETagCache(ctx.Req, ctx.Resp, `"`+blob.ID.String()+`"`) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-02-12 20:39:43 +05:30
|
|
|
dataRc, err := blob.DataAsync()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-05-10 06:57:03 +05:30
|
|
|
closed := false
|
2019-06-13 01:11:28 +05:30
|
|
|
defer func() {
|
2021-05-10 06:57:03 +05:30
|
|
|
if closed {
|
|
|
|
return
|
|
|
|
}
|
2019-06-13 01:11:28 +05:30
|
|
|
if err = dataRc.Close(); err != nil {
|
|
|
|
log.Error("ServeBlobOrLFS: Close: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
2019-02-12 20:39:43 +05:30
|
|
|
|
2021-04-09 03:55:57 +05:30
|
|
|
pointer, _ := lfs.ReadPointer(dataRc)
|
|
|
|
if pointer.IsValid() {
|
|
|
|
meta, _ := ctx.Repo.Repository.GetLFSMetaObjectByOid(pointer.Oid)
|
2019-02-12 20:39:43 +05:30
|
|
|
if meta == nil {
|
2021-05-10 06:57:03 +05:30
|
|
|
if err = dataRc.Close(); err != nil {
|
|
|
|
log.Error("ServeBlobOrLFS: Close: %v", err)
|
|
|
|
}
|
|
|
|
closed = true
|
2021-06-09 05:03:54 +05:30
|
|
|
return common.ServeBlob(ctx, blob)
|
2019-02-12 20:39:43 +05:30
|
|
|
}
|
2021-04-12 20:19:26 +05:30
|
|
|
if httpcache.HandleGenericETagCache(ctx.Req, ctx.Resp, `"`+pointer.Oid+`"`) {
|
|
|
|
return nil
|
|
|
|
}
|
2021-08-21 23:52:06 +05:30
|
|
|
|
|
|
|
if setting.LFS.ServeDirect {
|
|
|
|
//If we have a signed url (S3, object storage), redirect to this directly.
|
|
|
|
u, err := storage.LFS.URL(pointer.RelativePath(), blob.Name())
|
|
|
|
if u != nil && err == nil {
|
|
|
|
ctx.Redirect(u.String())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-09 03:55:57 +05:30
|
|
|
lfsDataRc, err := lfs.ReadMetaObject(meta.Pointer)
|
2019-02-12 20:39:43 +05:30
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-10-16 11:25:31 +05:30
|
|
|
defer func() {
|
|
|
|
if err = lfsDataRc.Close(); err != nil {
|
|
|
|
log.Error("ServeBlobOrLFS: Close: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
2021-06-09 05:03:54 +05:30
|
|
|
return common.ServeData(ctx, ctx.Repo.TreePath, meta.Size, lfsDataRc)
|
2019-02-12 20:39:43 +05:30
|
|
|
}
|
2021-05-10 06:57:03 +05:30
|
|
|
if err = dataRc.Close(); err != nil {
|
|
|
|
log.Error("ServeBlobOrLFS: Close: %v", err)
|
|
|
|
}
|
|
|
|
closed = true
|
2019-02-12 20:39:43 +05:30
|
|
|
|
2021-06-09 05:03:54 +05:30
|
|
|
return common.ServeBlob(ctx, blob)
|
2019-02-12 20:39:43 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// SingleDownload download a file by repos path
|
2016-03-11 22:26:52 +05:30
|
|
|
func SingleDownload(ctx *context.Context) {
|
2016-08-25 10:05:03 +05:30
|
|
|
blob, err := ctx.Repo.Commit.GetBlobByPath(ctx.Repo.TreePath)
|
2014-11-17 08:02:26 +05:30
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
if git.IsErrNotExist(err) {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("GetBlobByPath", nil)
|
2014-11-17 08:02:26 +05:30
|
|
|
} else {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetBlobByPath", err)
|
2014-11-17 08:02:26 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2021-06-09 05:03:54 +05:30
|
|
|
if err = common.ServeBlob(ctx, blob); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("ServeBlob", err)
|
2014-11-17 08:02:26 +05:30
|
|
|
}
|
2014-04-15 21:57:29 +05:30
|
|
|
}
|
2018-11-19 00:15:40 +05:30
|
|
|
|
2019-02-12 20:39:43 +05:30
|
|
|
// SingleDownloadOrLFS download a file by repos path redirecting to LFS if necessary
|
|
|
|
func SingleDownloadOrLFS(ctx *context.Context) {
|
|
|
|
blob, err := ctx.Repo.Commit.GetBlobByPath(ctx.Repo.TreePath)
|
|
|
|
if err != nil {
|
|
|
|
if git.IsErrNotExist(err) {
|
|
|
|
ctx.NotFound("GetBlobByPath", nil)
|
|
|
|
} else {
|
|
|
|
ctx.ServerError("GetBlobByPath", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err = ServeBlobOrLFS(ctx, blob); err != nil {
|
|
|
|
ctx.ServerError("ServeBlobOrLFS", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-19 00:15:40 +05:30
|
|
|
// DownloadByID download a file by sha1 ID
|
|
|
|
func DownloadByID(ctx *context.Context) {
|
|
|
|
blob, err := ctx.Repo.GitRepo.GetBlob(ctx.Params("sha"))
|
|
|
|
if err != nil {
|
|
|
|
if git.IsErrNotExist(err) {
|
|
|
|
ctx.NotFound("GetBlob", nil)
|
|
|
|
} else {
|
|
|
|
ctx.ServerError("GetBlob", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2021-06-09 05:03:54 +05:30
|
|
|
if err = common.ServeBlob(ctx, blob); err != nil {
|
2018-11-19 00:15:40 +05:30
|
|
|
ctx.ServerError("ServeBlob", err)
|
|
|
|
}
|
|
|
|
}
|
2019-02-12 20:39:43 +05:30
|
|
|
|
|
|
|
// DownloadByIDOrLFS download a file by sha1 ID taking account of LFS
|
|
|
|
func DownloadByIDOrLFS(ctx *context.Context) {
|
|
|
|
blob, err := ctx.Repo.GitRepo.GetBlob(ctx.Params("sha"))
|
|
|
|
if err != nil {
|
|
|
|
if git.IsErrNotExist(err) {
|
|
|
|
ctx.NotFound("GetBlob", nil)
|
|
|
|
} else {
|
|
|
|
ctx.ServerError("GetBlob", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err = ServeBlobOrLFS(ctx, blob); err != nil {
|
|
|
|
ctx.ServerError("ServeBlob", err)
|
|
|
|
}
|
|
|
|
}
|