54 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
// 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"
 | 
						|
 | 
						|
	"github.com/gogits/gogs/modules/base"
 | 
						|
	"github.com/gogits/gogs/modules/git"
 | 
						|
	"github.com/gogits/gogs/modules/middleware"
 | 
						|
)
 | 
						|
 | 
						|
func ServeBlob(ctx *middleware.Context, blob *git.Blob) error {
 | 
						|
	dataRc, err := blob.Data()
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	buf := make([]byte, 1024)
 | 
						|
	n, _ := dataRc.Read(buf)
 | 
						|
	if n > 0 {
 | 
						|
		buf = buf[:n]
 | 
						|
	}
 | 
						|
 | 
						|
	_, isTextFile := base.IsTextFile(buf)
 | 
						|
	_, isImageFile := base.IsImageFile(buf)
 | 
						|
	ctx.Resp.Header().Set("Content-Type", "text/plain")
 | 
						|
	if !isTextFile && !isImageFile {
 | 
						|
		ctx.Resp.Header().Set("Content-Disposition", "attachment; filename="+path.Base(ctx.Repo.TreeName))
 | 
						|
		ctx.Resp.Header().Set("Content-Transfer-Encoding", "binary")
 | 
						|
	}
 | 
						|
	ctx.Resp.Write(buf)
 | 
						|
	_, err = io.Copy(ctx.Resp, dataRc)
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
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)
 | 
						|
	}
 | 
						|
}
 |