1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-01 17:05:48 +00:00
gitea/routers/repo/download.go

62 lines
1.4 KiB
Go
Raw Normal View History

2014-04-15 16:27:29 +00:00
// Copyright 2014 The Gogs 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 (
"io"
"path"
2014-04-15 16:27:29 +00:00
2015-12-15 22:25:45 +00:00
"github.com/gogits/git-module"
"github.com/gogits/gogs/modules/base"
2016-03-11 16:56:52 +00:00
"github.com/gogits/gogs/modules/context"
2014-04-15 16:27:29 +00:00
)
2016-03-11 16:56:52 +00:00
func ServeData(ctx *context.Context, name string, reader io.Reader) error {
buf := make([]byte, 1024)
2015-08-11 20:49:51 +00:00
n, _ := reader.Read(buf)
if n > 0 {
buf = buf[:n]
}
_, isTextFile := base.IsTextFile(buf)
if !isTextFile {
_, isImageFile := base.IsImageFile(buf)
if !isImageFile {
ctx.Resp.Header().Set("Content-Disposition", "attachment; filename="+path.Base(ctx.Repo.TreeName))
ctx.Resp.Header().Set("Content-Transfer-Encoding", "binary")
}
} else {
ctx.Resp.Header().Set("Content-Type", "text/plain")
}
ctx.Resp.Write(buf)
2015-08-11 20:49:51 +00:00
_, err := io.Copy(ctx.Resp, reader)
return err
2014-11-17 02:32:26 +00:00
}
2016-03-11 16:56:52 +00:00
func ServeBlob(ctx *context.Context, blob *git.Blob) error {
2015-08-11 20:49:51 +00:00
dataRc, err := blob.Data()
if err != nil {
return err
}
return ServeData(ctx, ctx.Repo.TreeName, dataRc)
}
2016-03-11 16:56:52 +00:00
func SingleDownload(ctx *context.Context) {
2014-11-17 02:32:26 +00:00
blob, err := ctx.Repo.Commit.GetBlobByPath(ctx.Repo.TreeName)
if err != nil {
if git.IsErrNotExist(err) {
2014-11-17 02:32:26 +00:00
ctx.Handle(404, "GetBlobByPath", nil)
} else {
ctx.Handle(500, "GetBlobByPath", err)
}
return
}
if err = ServeBlob(ctx, blob); err != nil {
ctx.Handle(500, "ServeBlob", err)
}
2014-04-15 16:27:29 +00:00
}