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-26 17:38:31 +05:30
|
|
|
"fmt"
|
2014-07-26 11:58:04 +05:30
|
|
|
"io"
|
2017-05-05 11:33:54 +05:30
|
|
|
"path"
|
2016-11-26 18:56:03 +05:30
|
|
|
"strings"
|
2014-04-15 21:57:29 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/git"
|
2015-12-10 07:16:05 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-02-12 20:39:43 +05:30
|
|
|
"code.gitea.io/gitea/modules/lfs"
|
2014-04-15 21:57:29 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// ServeData download file from io.Reader
|
2016-03-11 22:26:52 +05:30
|
|
|
func ServeData(ctx *context.Context, name string, reader io.Reader) error {
|
2014-07-26 11:58:04 +05:30
|
|
|
buf := make([]byte, 1024)
|
2015-08-12 02:19:51 +05:30
|
|
|
n, _ := reader.Read(buf)
|
2017-04-20 08:08:56 +05:30
|
|
|
if n >= 0 {
|
2014-07-26 11:58:04 +05:30
|
|
|
buf = buf[:n]
|
|
|
|
}
|
|
|
|
|
2016-11-26 17:38:31 +05:30
|
|
|
ctx.Resp.Header().Set("Cache-Control", "public,max-age=86400")
|
2017-05-05 11:33:54 +05:30
|
|
|
name = path.Base(name)
|
2016-11-26 17:38:31 +05:30
|
|
|
|
2016-11-26 18:56:03 +05:30
|
|
|
// Google Chrome dislike commas in filenames, so let's change it to a space
|
|
|
|
name = strings.Replace(name, ",", " ", -1)
|
|
|
|
|
2016-11-26 17:38:31 +05:30
|
|
|
if base.IsTextFile(buf) || ctx.QueryBool("render") {
|
2016-04-21 05:08:11 +05:30
|
|
|
ctx.Resp.Header().Set("Content-Type", "text/plain; charset=utf-8")
|
2016-11-26 17:38:31 +05:30
|
|
|
} 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 11:58:04 +05:30
|
|
|
}
|
2016-11-26 17:38:31 +05:30
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
ctx.Resp.Write(buf)
|
2015-08-12 02:19:51 +05:30
|
|
|
_, err := io.Copy(ctx.Resp, reader)
|
2015-02-01 01:57:57 +05:30
|
|
|
return err
|
2014-11-17 08:02:26 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// ServeBlob download a git.Blob
|
2016-03-11 22:26:52 +05:30
|
|
|
func ServeBlob(ctx *context.Context, blob *git.Blob) error {
|
2017-11-29 07:20:39 +05:30
|
|
|
dataRc, err := blob.DataAsync()
|
2015-08-12 02:19:51 +05:30
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-11-29 07:20:39 +05:30
|
|
|
defer dataRc.Close()
|
2015-08-12 02:19:51 +05:30
|
|
|
|
2016-08-25 10:05:03 +05:30
|
|
|
return ServeData(ctx, ctx.Repo.TreePath, dataRc)
|
2015-08-12 02:19:51 +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 {
|
|
|
|
dataRc, err := blob.DataAsync()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer dataRc.Close()
|
|
|
|
|
|
|
|
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 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
|
|
|
|
}
|
|
|
|
if err = 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
|
|
|
|
}
|
|
|
|
if err = ServeBlob(ctx, blob); err != nil {
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|