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 (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/Unknwon/com"
|
|
|
|
"github.com/go-martini/martini"
|
|
|
|
|
2014-05-16 17:41:08 +00:00
|
|
|
"github.com/gogits/git"
|
|
|
|
|
2014-04-15 16:27:29 +00:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
|
|
|
)
|
|
|
|
|
|
|
|
func SingleDownload(ctx *middleware.Context, params martini.Params) {
|
|
|
|
treename := params["_1"]
|
|
|
|
|
|
|
|
blob, err := ctx.Repo.Commit.GetBlobByPath(treename)
|
|
|
|
if err != nil {
|
2014-05-26 00:11:25 +00:00
|
|
|
ctx.Handle(500, "repo.SingleDownload(GetBlobByPath)", err)
|
2014-04-15 16:27:29 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
data, err := blob.Data()
|
|
|
|
if err != nil {
|
2014-05-26 00:11:25 +00:00
|
|
|
ctx.Handle(500, "repo.SingleDownload(Data)", err)
|
2014-04-15 16:27:29 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
contentType, isTextFile := base.IsTextFile(data)
|
|
|
|
_, isImageFile := base.IsImageFile(data)
|
|
|
|
ctx.Res.Header().Set("Content-Type", contentType)
|
|
|
|
if !isTextFile && !isImageFile {
|
|
|
|
ctx.Res.Header().Set("Content-Disposition", "attachment; filename="+filepath.Base(treename))
|
|
|
|
ctx.Res.Header().Set("Content-Transfer-Encoding", "binary")
|
|
|
|
}
|
|
|
|
ctx.Res.Write(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ZipDownload(ctx *middleware.Context, params martini.Params) {
|
|
|
|
commitId := ctx.Repo.CommitId
|
2014-05-16 17:41:08 +00:00
|
|
|
archivesPath := filepath.Join(ctx.Repo.GitRepo.Path, "archives/zip")
|
2014-04-15 16:27:29 +00:00
|
|
|
if !com.IsDir(archivesPath) {
|
2014-05-26 00:11:25 +00:00
|
|
|
if err := os.MkdirAll(archivesPath, 0655); err != nil {
|
|
|
|
ctx.Handle(500, "ZipDownload -> os.Mkdir(archivesPath)", err)
|
2014-04-15 16:27:29 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-16 17:41:08 +00:00
|
|
|
archivePath := filepath.Join(archivesPath, commitId+".zip")
|
|
|
|
|
|
|
|
if com.IsFile(archivePath) {
|
|
|
|
ctx.ServeFile(archivePath, ctx.Repo.Repository.Name+".zip")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-26 00:11:25 +00:00
|
|
|
if err := ctx.Repo.Commit.CreateArchive(archivePath, git.AT_ZIP); err != nil {
|
|
|
|
ctx.Handle(500, "ZipDownload -> CreateArchive "+archivePath, err)
|
2014-05-16 17:41:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.ServeFile(archivePath, ctx.Repo.Repository.Name+".zip")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TarGzDownload(ctx *middleware.Context, params martini.Params) {
|
|
|
|
commitId := ctx.Repo.CommitId
|
|
|
|
archivesPath := filepath.Join(ctx.Repo.GitRepo.Path, "archives/targz")
|
|
|
|
if !com.IsDir(archivesPath) {
|
2014-05-16 20:24:26 +00:00
|
|
|
if err := os.MkdirAll(archivesPath, 0755); err != nil {
|
2014-05-26 00:11:25 +00:00
|
|
|
ctx.Handle(500, "TarGzDownload -> os.Mkdir(archivesPath)", err)
|
2014-05-16 17:41:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
archivePath := filepath.Join(archivesPath, commitId+".tar.gz")
|
2014-04-15 16:27:29 +00:00
|
|
|
|
2014-05-16 17:41:08 +00:00
|
|
|
if com.IsFile(archivePath) {
|
|
|
|
ctx.ServeFile(archivePath, ctx.Repo.Repository.Name+".tar.gz")
|
2014-04-15 16:27:29 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-26 00:11:25 +00:00
|
|
|
if err := ctx.Repo.Commit.CreateArchive(archivePath, git.AT_TARGZ); err != nil {
|
|
|
|
ctx.Handle(500, "TarGzDownload -> CreateArchive "+archivePath, err)
|
2014-04-15 16:27:29 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-16 17:41:08 +00:00
|
|
|
ctx.ServeFile(archivePath, ctx.Repo.Repository.Name+".tar.gz")
|
2014-04-15 16:27:29 +00:00
|
|
|
}
|