e08c7e521b
* Add raw blob endpoint This should make it possible to download raw blobs directly from /:repo/:username/raw/blob/:sha1 URLs. * fix: Make it work * As an SHA-ID is no path getRefNameFromPath can't be used to verify file specifying parameter * added relevant change in go-gitea/git #132 Signed-off-by: Berengar W. Lehr <Berengar.Lehr@kompetenztest.de> * Update Gopkg.lock Can't update all vendors due to errors Signed-off-by: Berengar W. Lehr <Berengar.Lehr@kompetenztest.de> * style: Add Gitea copyright header * feat: Added integration test for /repo/u/r/raw/blob * fix: correct year in copyright header
88 lines
2.2 KiB
Go
88 lines
2.2 KiB
Go
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package repo
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"path"
|
|
"strings"
|
|
|
|
"code.gitea.io/git"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
"code.gitea.io/gitea/modules/context"
|
|
)
|
|
|
|
// ServeData download file from io.Reader
|
|
func ServeData(ctx *context.Context, name string, reader io.Reader) error {
|
|
buf := make([]byte, 1024)
|
|
n, _ := reader.Read(buf)
|
|
if n >= 0 {
|
|
buf = buf[:n]
|
|
}
|
|
|
|
ctx.Resp.Header().Set("Cache-Control", "public,max-age=86400")
|
|
name = path.Base(name)
|
|
|
|
// Google Chrome dislike commas in filenames, so let's change it to a space
|
|
name = strings.Replace(name, ",", " ", -1)
|
|
|
|
if base.IsTextFile(buf) || ctx.QueryBool("render") {
|
|
ctx.Resp.Header().Set("Content-Type", "text/plain; charset=utf-8")
|
|
} 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))
|
|
}
|
|
|
|
ctx.Resp.Write(buf)
|
|
_, err := io.Copy(ctx.Resp, reader)
|
|
return err
|
|
}
|
|
|
|
// ServeBlob download a git.Blob
|
|
func ServeBlob(ctx *context.Context, blob *git.Blob) error {
|
|
dataRc, err := blob.DataAsync()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer dataRc.Close()
|
|
|
|
return ServeData(ctx, ctx.Repo.TreePath, dataRc)
|
|
}
|
|
|
|
// SingleDownload download a file by repos path
|
|
func SingleDownload(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 = ServeBlob(ctx, blob); err != nil {
|
|
ctx.ServerError("ServeBlob", err)
|
|
}
|
|
}
|
|
|
|
// 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)
|
|
}
|
|
}
|