1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- // Copyright 2015 - Present, The Gogs Authors. All rights reserved.
- // Copyright 2018 - Present, Gitote. All rights reserved.
- //
- // This source code is licensed under the MIT license found in the
- // LICENSE file in the root directory of this source tree.
- package repo
- import (
- "gitote/gitote/pkg/context"
- "gitote/gitote/pkg/setting"
- "gitote/gitote/pkg/tool"
- "io"
- "path"
- "gitlab.com/gitote/git-module"
- )
- // ServeData download file from io.Reader
- func ServeData(c *context.Context, name string, reader io.Reader) error {
- buf := make([]byte, 1024)
- n, _ := reader.Read(buf)
- if n >= 0 {
- buf = buf[:n]
- }
- if !tool.IsTextFile(buf) {
- if !tool.IsImageFile(buf) {
- c.Resp.Header().Set("Content-Disposition", "attachment; filename=\""+name+"\"")
- c.Resp.Header().Set("Content-Transfer-Encoding", "binary")
- }
- } else if !setting.Repository.EnableRawFileRenderMode || !c.QueryBool("render") {
- c.Resp.Header().Set("Content-Type", "text/plain; charset=utf-8")
- }
- c.Resp.Write(buf)
- _, err := io.Copy(c.Resp, reader)
- return err
- }
- // ServeBlob download a git.Blob
- func ServeBlob(c *context.Context, blob *git.Blob) error {
- dataRc, err := blob.Data()
- if err != nil {
- return err
- }
- return ServeData(c, path.Base(c.Repo.TreePath), dataRc)
- }
- // SingleDownload download a file by repos path
- func SingleDownload(c *context.Context) {
- blob, err := c.Repo.Commit.GetBlobByPath(c.Repo.TreePath)
- if err != nil {
- if git.IsErrNotExist(err) {
- c.Handle(404, "GetBlobByPath", nil)
- } else {
- c.Handle(500, "GetBlobByPath", err)
- }
- return
- }
- if err = ServeBlob(c, blob); err != nil {
- c.Handle(500, "ServeBlob", err)
- }
- }
|