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 (
|
2014-07-26 06:28:04 +00:00
|
|
|
"io"
|
|
|
|
"path"
|
2014-04-15 16:27:29 +00:00
|
|
|
|
2015-12-15 22:25:45 +00:00
|
|
|
"github.com/gogits/git-module"
|
2015-12-10 01:46:05 +00:00
|
|
|
|
2016-11-03 12:29:56 +00:00
|
|
|
"github.com/go-gitea/gitea/modules/base"
|
|
|
|
"github.com/go-gitea/gitea/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 {
|
2014-07-26 06:28:04 +00:00
|
|
|
buf := make([]byte, 1024)
|
2015-08-11 20:49:51 +00:00
|
|
|
n, _ := reader.Read(buf)
|
2014-07-26 06:28:04 +00:00
|
|
|
if n > 0 {
|
|
|
|
buf = buf[:n]
|
|
|
|
}
|
|
|
|
|
2016-08-30 09:08:38 +00:00
|
|
|
if !base.IsTextFile(buf) {
|
|
|
|
if !base.IsImageFile(buf) {
|
2016-08-25 04:35:03 +00:00
|
|
|
ctx.Resp.Header().Set("Content-Disposition", "attachment; filename=\""+path.Base(ctx.Repo.TreePath)+"\"")
|
2015-07-28 16:50:35 +00:00
|
|
|
ctx.Resp.Header().Set("Content-Transfer-Encoding", "binary")
|
|
|
|
}
|
2016-08-06 01:34:13 +00:00
|
|
|
} else if !ctx.QueryBool("render") {
|
2016-04-20 23:38:11 +00:00
|
|
|
ctx.Resp.Header().Set("Content-Type", "text/plain; charset=utf-8")
|
2014-07-26 06:28:04 +00:00
|
|
|
}
|
|
|
|
ctx.Resp.Write(buf)
|
2015-08-11 20:49:51 +00:00
|
|
|
_, err := io.Copy(ctx.Resp, reader)
|
2015-01-31 20:27:57 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2016-08-25 04:35:03 +00:00
|
|
|
return ServeData(ctx, ctx.Repo.TreePath, dataRc)
|
2015-08-11 20:49:51 +00:00
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
func SingleDownload(ctx *context.Context) {
|
2016-08-25 04:35:03 +00:00
|
|
|
blob, err := ctx.Repo.Commit.GetBlobByPath(ctx.Repo.TreePath)
|
2014-11-17 02:32:26 +00:00
|
|
|
if err != nil {
|
2015-12-10 01:46:05 +00:00
|
|
|
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
|
|
|
}
|