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.
|
2014-04-15 18:27:29 +02:00
|
|
|
// 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-26 13:08:31 +01:00
|
|
|
"fmt"
|
2014-07-26 08:28:04 +02:00
|
|
|
"io"
|
2017-05-05 08:03:54 +02:00
|
|
|
"path"
|
2016-11-26 14:26:03 +01:00
|
|
|
"strings"
|
2014-04-15 18:27:29 +02:00
|
|
|
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-03-27 10:33:00 +01:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
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"
|
2014-04-15 18:27:29 +02:00
|
|
|
)
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// ServeData download file from io.Reader
|
2016-03-11 17:56:52 +01:00
|
|
|
func ServeData(ctx *context.Context, name string, reader io.Reader) error {
|
2014-07-26 08:28:04 +02:00
|
|
|
buf := make([]byte, 1024)
|
2015-08-11 22:49:51 +02:00
|
|
|
n, _ := reader.Read(buf)
|
2017-04-20 04:38:56 +02:00
|
|
|
if n >= 0 {
|
2014-07-26 08:28:04 +02:00
|
|
|
buf = buf[:n]
|
|
|
|
}
|
|
|
|
|
2016-11-26 13:08:31 +01:00
|
|
|
ctx.Resp.Header().Set("Cache-Control", "public,max-age=86400")
|
2017-05-05 08:03:54 +02:00
|
|
|
name = path.Base(name)
|
2016-11-26 13:08:31 +01:00
|
|
|
|
2016-11-26 14:26:03 +01:00
|
|
|
// Google Chrome dislike commas in filenames, so let's change it to a space
|
|
|
|
name = strings.Replace(name, ",", " ", -1)
|
|
|
|
|
2016-11-26 13:08:31 +01:00
|
|
|
if base.IsTextFile(buf) || ctx.QueryBool("render") {
|
2016-04-21 01:38:11 +02:00
|
|
|
ctx.Resp.Header().Set("Content-Type", "text/plain; charset=utf-8")
|
2016-11-26 13:08:31 +01:00
|
|
|
} else if base.IsImageFile(buf) || base.IsPDFFile(buf) {
|
|
|
|
ctx.Resp.Header().Set("Content-Disposition", fmt.Sprintf(`inline; filename="%s"`, name))
|
|
|
|
} else {
|
|
|
|
ctx.Resp.Header().Set("Content-Disposition", fmt.Sprintf(`attachment; filename="%s"`, name))
|
2014-07-26 08:28:04 +02:00
|
|
|
}
|
2016-11-26 13:08:31 +01:00
|
|
|
|
2019-06-12 21:41:28 +02:00
|
|
|
_, err := ctx.Resp.Write(buf)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
_, err = io.Copy(ctx.Resp, reader)
|
2015-01-31 21:27:57 +01:00
|
|
|
return err
|
2014-11-17 03:32:26 +01:00
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// ServeBlob download a git.Blob
|
2016-03-11 17:56:52 +01:00
|
|
|
func ServeBlob(ctx *context.Context, blob *git.Blob) error {
|
2017-11-29 02:50:39 +01:00
|
|
|
dataRc, err := blob.DataAsync()
|
2015-08-11 22:49:51 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-06-12 21:41:28 +02:00
|
|
|
defer func() {
|
|
|
|
if err = dataRc.Close(); err != nil {
|
|
|
|
log.Error("ServeBlob: Close: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
2015-08-11 22:49:51 +02:00
|
|
|
|
2016-08-25 06:35:03 +02:00
|
|
|
return ServeData(ctx, ctx.Repo.TreePath, dataRc)
|
2015-08-11 22:49:51 +02:00
|
|
|
}
|
|
|
|
|
2019-02-12 16:09:43 +01:00
|
|
|
// ServeBlobOrLFS download a git.Blob redirecting to LFS if necessary
|
|
|
|
func ServeBlobOrLFS(ctx *context.Context, blob *git.Blob) error {
|
|
|
|
dataRc, err := blob.DataAsync()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-06-12 21:41:28 +02:00
|
|
|
defer func() {
|
|
|
|
if err = dataRc.Close(); err != nil {
|
|
|
|
log.Error("ServeBlobOrLFS: Close: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
2019-02-12 16:09:43 +01:00
|
|
|
|
|
|
|
if meta, _ := lfs.ReadPointerFile(dataRc); meta != nil {
|
|
|
|
meta, _ = ctx.Repo.Repository.GetLFSMetaObjectByOid(meta.Oid)
|
|
|
|
if meta == nil {
|
|
|
|
return ServeBlob(ctx, blob)
|
|
|
|
}
|
|
|
|
lfsDataRc, err := lfs.ReadMetaObject(meta)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return ServeData(ctx, ctx.Repo.TreePath, lfsDataRc)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ServeBlob(ctx, blob)
|
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// SingleDownload download a file by repos path
|
2016-03-11 17:56:52 +01:00
|
|
|
func SingleDownload(ctx *context.Context) {
|
2016-08-25 06:35:03 +02:00
|
|
|
blob, err := ctx.Repo.Commit.GetBlobByPath(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) {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("GetBlobByPath", nil)
|
2014-11-17 03:32:26 +01:00
|
|
|
} else {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetBlobByPath", err)
|
2014-11-17 03:32:26 +01:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err = ServeBlob(ctx, blob); 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) {
|
|
|
|
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-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
|
|
|
|
}
|
|
|
|
if err = ServeBlob(ctx, blob); err != nil {
|
|
|
|
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
|
|
|
|
}
|
|
|
|
if err = ServeBlobOrLFS(ctx, blob); err != nil {
|
|
|
|
ctx.ServerError("ServeBlob", err)
|
|
|
|
}
|
|
|
|
}
|