2014-04-15 18:27:29 +02:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2018-11-18 19:45:40 +01:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2014-04-15 18:27:29 +02:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2022-05-09 17:54:51 +02:00
|
|
|
"path"
|
|
|
|
"time"
|
|
|
|
|
2022-06-12 17:51:54 +02:00
|
|
|
git_model "code.gitea.io/gitea/models/git"
|
2019-03-27 10:33:00 +01:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2021-04-12 16:49:26 +02:00
|
|
|
"code.gitea.io/gitea/modules/httpcache"
|
2019-02-12 16:09:43 +01:00
|
|
|
"code.gitea.io/gitea/modules/lfs"
|
2019-06-12 21:41:28 +02:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-08-21 20:22:06 +02:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/modules/storage"
|
2021-06-09 01:33:54 +02:00
|
|
|
"code.gitea.io/gitea/routers/common"
|
2024-02-27 08:12:22 +01:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2014-04-15 18:27:29 +02:00
|
|
|
)
|
|
|
|
|
2019-02-12 16:09:43 +01:00
|
|
|
// ServeBlobOrLFS download a git.Blob redirecting to LFS if necessary
|
2023-07-07 07:31:56 +02:00
|
|
|
func ServeBlobOrLFS(ctx *context.Context, blob *git.Blob, lastModified *time.Time) error {
|
2022-05-09 17:54:51 +02:00
|
|
|
if httpcache.HandleGenericETagTimeCache(ctx.Req, ctx.Resp, `"`+blob.ID.String()+`"`, lastModified) {
|
2021-04-12 16:49:26 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-02-12 16:09:43 +01:00
|
|
|
dataRc, err := blob.DataAsync()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-05-10 03:27:03 +02:00
|
|
|
closed := false
|
2019-06-12 21:41:28 +02:00
|
|
|
defer func() {
|
2021-05-10 03:27:03 +02:00
|
|
|
if closed {
|
|
|
|
return
|
|
|
|
}
|
2019-06-12 21:41:28 +02:00
|
|
|
if err = dataRc.Close(); err != nil {
|
|
|
|
log.Error("ServeBlobOrLFS: Close: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
2019-02-12 16:09:43 +01:00
|
|
|
|
2021-04-09 00:25:57 +02:00
|
|
|
pointer, _ := lfs.ReadPointer(dataRc)
|
|
|
|
if pointer.IsValid() {
|
2023-01-09 04:50:54 +01:00
|
|
|
meta, _ := git_model.GetLFSMetaObjectByOid(ctx, ctx.Repo.Repository.ID, pointer.Oid)
|
2019-02-12 16:09:43 +01:00
|
|
|
if meta == nil {
|
2021-05-10 03:27:03 +02:00
|
|
|
if err = dataRc.Close(); err != nil {
|
|
|
|
log.Error("ServeBlobOrLFS: Close: %v", err)
|
|
|
|
}
|
|
|
|
closed = true
|
2023-05-21 03:50:53 +02:00
|
|
|
return common.ServeBlob(ctx.Base, ctx.Repo.TreePath, blob, lastModified)
|
2019-02-12 16:09:43 +01:00
|
|
|
}
|
2021-04-12 16:49:26 +02:00
|
|
|
if httpcache.HandleGenericETagCache(ctx.Req, ctx.Resp, `"`+pointer.Oid+`"`) {
|
|
|
|
return nil
|
|
|
|
}
|
2021-08-21 20:22:06 +02:00
|
|
|
|
2023-06-14 05:42:38 +02:00
|
|
|
if setting.LFS.Storage.MinioConfig.ServeDirect {
|
2022-01-20 18:46:10 +01:00
|
|
|
// If we have a signed url (S3, object storage), redirect to this directly.
|
2021-08-21 20:22:06 +02:00
|
|
|
u, err := storage.LFS.URL(pointer.RelativePath(), blob.Name())
|
|
|
|
if u != nil && err == nil {
|
|
|
|
ctx.Redirect(u.String())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-09 00:25:57 +02:00
|
|
|
lfsDataRc, err := lfs.ReadMetaObject(meta.Pointer)
|
2019-02-12 16:09:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-10-16 07:55:31 +02:00
|
|
|
defer func() {
|
|
|
|
if err = lfsDataRc.Close(); err != nil {
|
|
|
|
log.Error("ServeBlobOrLFS: Close: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
2023-05-21 03:50:53 +02:00
|
|
|
common.ServeContentByReadSeeker(ctx.Base, ctx.Repo.TreePath, lastModified, lfsDataRc)
|
2023-05-09 09:34:36 +02:00
|
|
|
return nil
|
2019-02-12 16:09:43 +01:00
|
|
|
}
|
2021-05-10 03:27:03 +02:00
|
|
|
if err = dataRc.Close(); err != nil {
|
|
|
|
log.Error("ServeBlobOrLFS: Close: %v", err)
|
|
|
|
}
|
|
|
|
closed = true
|
2019-02-12 16:09:43 +01:00
|
|
|
|
2023-05-21 03:50:53 +02:00
|
|
|
return common.ServeBlob(ctx.Base, ctx.Repo.TreePath, blob, lastModified)
|
2019-02-12 16:09:43 +01:00
|
|
|
}
|
|
|
|
|
2023-07-07 07:31:56 +02:00
|
|
|
func getBlobForEntry(ctx *context.Context) (blob *git.Blob, lastModified *time.Time) {
|
2022-05-09 17:54:51 +02:00
|
|
|
entry, err := ctx.Repo.Commit.GetTreeEntryByPath(ctx.Repo.TreePath)
|
2014-11-17 03:32:26 +01:00
|
|
|
if err != nil {
|
2015-12-10 02:46:05 +01:00
|
|
|
if git.IsErrNotExist(err) {
|
2022-05-09 17:54:51 +02:00
|
|
|
ctx.NotFound("GetTreeEntryByPath", err)
|
2014-11-17 03:32:26 +01:00
|
|
|
} else {
|
2022-05-09 17:54:51 +02:00
|
|
|
ctx.ServerError("GetTreeEntryByPath", err)
|
2014-11-17 03:32:26 +01:00
|
|
|
}
|
2023-07-07 07:31:56 +02:00
|
|
|
return nil, nil
|
2014-11-17 03:32:26 +01:00
|
|
|
}
|
2022-05-09 17:54:51 +02:00
|
|
|
|
|
|
|
if entry.IsDir() || entry.IsSubModule() {
|
|
|
|
ctx.NotFound("getBlobForEntry", nil)
|
2023-07-07 07:31:56 +02:00
|
|
|
return nil, nil
|
2022-05-09 17:54:51 +02:00
|
|
|
}
|
|
|
|
|
2022-07-25 17:39:42 +02:00
|
|
|
info, _, err := git.Entries([]*git.TreeEntry{entry}).GetCommitsInfo(ctx, ctx.Repo.Commit, path.Dir("/" + ctx.Repo.TreePath)[1:])
|
2022-05-09 17:54:51 +02:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetCommitsInfo", err)
|
2023-07-07 07:31:56 +02:00
|
|
|
return nil, nil
|
2022-05-09 17:54:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(info) == 1 {
|
|
|
|
// Not Modified
|
2023-07-07 07:31:56 +02:00
|
|
|
lastModified = &info[0].Commit.Committer.When
|
2022-05-09 17:54:51 +02:00
|
|
|
}
|
|
|
|
blob = entry.Blob()
|
|
|
|
|
2022-06-20 12:02:49 +02:00
|
|
|
return blob, lastModified
|
2022-05-09 17:54:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// SingleDownload download a file by repos path
|
|
|
|
func SingleDownload(ctx *context.Context) {
|
|
|
|
blob, lastModified := getBlobForEntry(ctx)
|
|
|
|
if blob == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-21 03:50:53 +02:00
|
|
|
if err := common.ServeBlob(ctx.Base, ctx.Repo.TreePath, blob, lastModified); err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("ServeBlob", err)
|
2014-11-17 03:32:26 +01:00
|
|
|
}
|
2014-04-15 18:27:29 +02:00
|
|
|
}
|
2018-11-18 19:45:40 +01:00
|
|
|
|
2019-02-12 16:09:43 +01:00
|
|
|
// SingleDownloadOrLFS download a file by repos path redirecting to LFS if necessary
|
|
|
|
func SingleDownloadOrLFS(ctx *context.Context) {
|
2022-05-09 17:54:51 +02:00
|
|
|
blob, lastModified := getBlobForEntry(ctx)
|
|
|
|
if blob == nil {
|
2019-02-12 16:09:43 +01:00
|
|
|
return
|
|
|
|
}
|
2022-05-09 17:54:51 +02:00
|
|
|
|
|
|
|
if err := ServeBlobOrLFS(ctx, blob, lastModified); err != nil {
|
2019-02-12 16:09:43 +01:00
|
|
|
ctx.ServerError("ServeBlobOrLFS", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-18 19:45:40 +01:00
|
|
|
// 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
|
|
|
|
}
|
2023-07-07 07:31:56 +02:00
|
|
|
if err = common.ServeBlob(ctx.Base, ctx.Repo.TreePath, blob, nil); err != nil {
|
2018-11-18 19:45:40 +01:00
|
|
|
ctx.ServerError("ServeBlob", err)
|
|
|
|
}
|
|
|
|
}
|
2019-02-12 16:09:43 +01:00
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
2023-07-07 07:31:56 +02:00
|
|
|
if err = ServeBlobOrLFS(ctx, blob, nil); err != nil {
|
2019-02-12 16:09:43 +01:00
|
|
|
ctx.ServerError("ServeBlob", err)
|
|
|
|
}
|
|
|
|
}
|