2014-04-15 18:27:29 +02: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 08:28:04 +02:00
|
|
|
"io"
|
|
|
|
"path"
|
2014-04-15 18:27:29 +02:00
|
|
|
|
2014-07-26 08:28:04 +02:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-11-17 03:32:26 +01:00
|
|
|
"github.com/gogits/gogs/modules/git"
|
2014-04-15 18:27:29 +02:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
|
|
|
)
|
|
|
|
|
2014-11-17 03:32:26 +01:00
|
|
|
func ServeBlob(ctx *middleware.Context, blob *git.Blob) error {
|
2014-07-26 08:28:04 +02:00
|
|
|
dataRc, err := blob.Data()
|
|
|
|
if err != nil {
|
2014-11-17 03:32:26 +01:00
|
|
|
return err
|
2014-07-26 08:28:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
buf := make([]byte, 1024)
|
|
|
|
n, _ := dataRc.Read(buf)
|
|
|
|
if n > 0 {
|
|
|
|
buf = buf[:n]
|
|
|
|
}
|
|
|
|
|
2015-01-31 21:27:57 +01:00
|
|
|
_, isTextFile := base.IsTextFile(buf)
|
2015-07-28 18:50:35 +02:00
|
|
|
if isTextFile {
|
|
|
|
charset, _ := base.DetectEncoding(buf)
|
2015-07-29 16:58:03 +02:00
|
|
|
if charset != "UTF-8" {
|
2015-07-28 18:50:35 +02:00
|
|
|
ctx.Resp.Header().Set("Content-Type", "text/plain; charset="+charset)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_, 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")
|
|
|
|
}
|
2014-07-26 08:28:04 +02:00
|
|
|
}
|
|
|
|
ctx.Resp.Write(buf)
|
2015-01-31 21:27:57 +01:00
|
|
|
_, err = io.Copy(ctx.Resp, dataRc)
|
|
|
|
return err
|
2014-11-17 03:32:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func SingleDownload(ctx *middleware.Context) {
|
|
|
|
blob, err := ctx.Repo.Commit.GetBlobByPath(ctx.Repo.TreeName)
|
|
|
|
if err != nil {
|
|
|
|
if err == git.ErrNotExist {
|
|
|
|
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 18:27:29 +02:00
|
|
|
}
|