Unknown 10 years ago
parent
commit
956f011dd3
7 changed files with 43 additions and 14 deletions
  1. 1 1
      README.md
  2. 1 1
      README_ZH.md
  3. 1 0
      cmd/web.go
  4. 1 1
      gogs.go
  5. 3 3
      models/repo.go
  6. 35 7
      routers/repo/download.go
  7. 1 1
      templates/release/list.tmpl

+ 1 - 1
README.md

@@ -5,7 +5,7 @@ Gogs(Go Git Service) is a Self Hosted Git Service in the Go Programming Language
 
 ![Demo](http://gowalker.org/public/gogs_demo.gif)
 
-##### Current version: 0.3.4 Alpha
+##### Current version: 0.3.5 Alpha
 
 ### NOTICES
 

+ 1 - 1
README_ZH.md

@@ -5,7 +5,7 @@ Gogs(Go Git Service) 是一个由 Go 语言编写的自助 Git 托管服务。
 
 ![Demo](http://gowalker.org/public/gogs_demo.gif)
 
-##### 当前版本:0.3.4 Alpha
+##### 当前版本:0.3.5 Alpha
 
 ## 开发目的
 

+ 1 - 0
cmd/web.go

@@ -218,6 +218,7 @@ func runWeb(*cli.Context) {
 		r.Get("/commit/:branchname/**", repo.Diff)
 		r.Get("/releases", repo.Releases)
 		r.Get("/archive/:branchname/:reponame.zip", repo.ZipDownload)
+		r.Get("/archive/:branchname/:reponame.tar.gz", repo.TarGzDownload)
 	}, ignSignIn, middleware.RepoAssignment(true, true))
 
 	m.Group("/:username", func(r martini.Router) {

+ 1 - 1
gogs.go

@@ -17,7 +17,7 @@ import (
 	"github.com/gogits/gogs/modules/base"
 )
 
-const APP_VER = "0.3.4.0515 Alpha"
+const APP_VER = "0.3.5.0516 Alpha"
 
 func init() {
 	base.AppVer = APP_VER

+ 3 - 3
models/repo.go

@@ -125,8 +125,8 @@ func (repo *Repository) GetOwner() (err error) {
 }
 
 // IsRepositoryExist returns true if the repository with given name under user has already existed.
-func IsRepositoryExist(user *User, repoName string) (bool, error) {
-	repo := Repository{OwnerId: user.Id}
+func IsRepositoryExist(u *User, repoName string) (bool, error) {
+	repo := Repository{OwnerId: u.Id}
 	has, err := orm.Where("lower_name = ?", strings.ToLower(repoName)).Get(&repo)
 	if err != nil {
 		return has, err
@@ -134,7 +134,7 @@ func IsRepositoryExist(user *User, repoName string) (bool, error) {
 		return false, nil
 	}
 
-	return com.IsDir(RepoPath(user.Name, repoName)), nil
+	return com.IsDir(RepoPath(u.Name, repoName)), nil
 }
 
 var (

+ 35 - 7
routers/repo/download.go

@@ -11,6 +11,8 @@ import (
 	"github.com/Unknwon/com"
 	"github.com/go-martini/martini"
 
+	"github.com/gogits/git"
+
 	"github.com/gogits/gogs/modules/base"
 	"github.com/gogits/gogs/modules/middleware"
 )
@@ -43,7 +45,7 @@ func SingleDownload(ctx *middleware.Context, params martini.Params) {
 
 func ZipDownload(ctx *middleware.Context, params martini.Params) {
 	commitId := ctx.Repo.CommitId
-	archivesPath := filepath.Join(ctx.Repo.GitRepo.Path, "archives")
+	archivesPath := filepath.Join(ctx.Repo.GitRepo.Path, "archives/zip")
 	if !com.IsDir(archivesPath) {
 		if err := os.Mkdir(archivesPath, 0755); err != nil {
 			ctx.Handle(404, "ZipDownload -> os.Mkdir(archivesPath)", err)
@@ -51,18 +53,44 @@ func ZipDownload(ctx *middleware.Context, params martini.Params) {
 		}
 	}
 
-	zipPath := filepath.Join(archivesPath, commitId+".zip")
+	archivePath := filepath.Join(archivesPath, commitId+".zip")
+
+	if com.IsFile(archivePath) {
+		ctx.ServeFile(archivePath, ctx.Repo.Repository.Name+".zip")
+		return
+	}
+
+	err := ctx.Repo.Commit.CreateArchive(archivePath, git.AT_ZIP)
+	if err != nil {
+		ctx.Handle(404, "ZipDownload -> CreateArchive "+archivePath, err)
+		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) {
+		if err := os.Mkdir(archivesPath, 0755); err != nil {
+			ctx.Handle(404, "TarGzDownload -> os.Mkdir(archivesPath)", err)
+			return
+		}
+	}
+
+	archivePath := filepath.Join(archivesPath, commitId+".tar.gz")
 
-	if com.IsFile(zipPath) {
-		ctx.ServeFile(zipPath, ctx.Repo.Repository.Name+".zip")
+	if com.IsFile(archivePath) {
+		ctx.ServeFile(archivePath, ctx.Repo.Repository.Name+".tar.gz")
 		return
 	}
 
-	err := ctx.Repo.Commit.CreateArchive(zipPath)
+	err := ctx.Repo.Commit.CreateArchive(archivePath, git.AT_TARGZ)
 	if err != nil {
-		ctx.Handle(404, "ZipDownload -> CreateArchive "+zipPath, err)
+		ctx.Handle(404, "TarGzDownload -> CreateArchive "+archivePath, err)
 		return
 	}
 
-	ctx.ServeFile(zipPath, ctx.Repo.Repository.Name+".zip")
+	ctx.ServeFile(archivePath, ctx.Repo.Repository.Name+".tar.gz")
 }

+ 1 - 1
templates/release/list.tmpl

@@ -31,7 +31,7 @@
                     </div>
                     <p class="download">
                         <a class="btn btn-default" href="{{$.RepoLink}}/archive/{{.TagName}}/{{$.Repository.Name}}.zip" rel="nofollow"><i class="fa fa-download"></i>Source Code (ZIP)</a>
-                        <!-- <a class="btn btn-default" href="{release_download_link}"><i class="fa fa-download"></i>Source Code (TAR.GZ)</a> -->
+                        <a class="btn btn-default" href="{{$.RepoLink}}/archive/{{.TagName}}/{{$.Repository.Name}}.tar.gz"><i class="fa fa-download"></i>Source Code (TAR.GZ)</a>
                     </p>
                     <span class="dot">&nbsp;</span>
                 </div>