2014-04-15 21:57:29 +05:30
|
|
|
// 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 11:58:04 +05:30
|
|
|
"io"
|
|
|
|
"path"
|
2014-04-15 21:57:29 +05:30
|
|
|
|
2015-12-16 03:55:45 +05:30
|
|
|
"github.com/gogits/git-module"
|
2015-12-10 07:16:05 +05:30
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-04-15 21:57:29 +05:30
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
|
|
|
)
|
|
|
|
|
2015-08-12 02:19:51 +05:30
|
|
|
func ServeData(ctx *middleware.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)
|
2014-07-26 11:58:04 +05:30
|
|
|
if n > 0 {
|
|
|
|
buf = buf[:n]
|
|
|
|
}
|
|
|
|
|
2015-02-01 01:57:57 +05:30
|
|
|
_, isTextFile := base.IsTextFile(buf)
|
2015-12-10 07:16:05 +05:30
|
|
|
if !isTextFile {
|
2015-07-28 22:20:35 +05:30
|
|
|
_, 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")
|
|
|
|
}
|
2015-12-25 16:15:07 +05:30
|
|
|
} else {
|
|
|
|
ctx.Resp.Header().Set("Content-Type", "text/plain")
|
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
|
|
|
}
|
|
|
|
|
2015-08-12 02:19:51 +05:30
|
|
|
func ServeBlob(ctx *middleware.Context, blob *git.Blob) error {
|
|
|
|
dataRc, err := blob.Data()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return ServeData(ctx, ctx.Repo.TreeName, dataRc)
|
|
|
|
}
|
|
|
|
|
2014-11-17 08:02:26 +05:30
|
|
|
func SingleDownload(ctx *middleware.Context) {
|
|
|
|
blob, err := ctx.Repo.Commit.GetBlobByPath(ctx.Repo.TreeName)
|
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
if git.IsErrNotExist(err) {
|
2014-11-17 08:02:26 +05:30
|
|
|
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 21:57:29 +05:30
|
|
|
}
|