Fix #186
This commit is contained in:
parent
16e162b669
commit
956f011dd3
7 changed files with 43 additions and 14 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
## 开发目的
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
2
gogs.go
2
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
|
||||
|
|
|
@ -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 (
|
||||
|
|
|
@ -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(zipPath) {
|
||||
ctx.ServeFile(zipPath, ctx.Repo.Repository.Name+".zip")
|
||||
if com.IsFile(archivePath) {
|
||||
ctx.ServeFile(archivePath, ctx.Repo.Repository.Name+".zip")
|
||||
return
|
||||
}
|
||||
|
||||
err := ctx.Repo.Commit.CreateArchive(zipPath)
|
||||
err := ctx.Repo.Commit.CreateArchive(archivePath, git.AT_ZIP)
|
||||
if err != nil {
|
||||
ctx.Handle(404, "ZipDownload -> CreateArchive "+zipPath, err)
|
||||
ctx.Handle(404, "ZipDownload -> CreateArchive "+archivePath, err)
|
||||
return
|
||||
}
|
||||
|
||||
ctx.ServeFile(zipPath, ctx.Repo.Repository.Name+".zip")
|
||||
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(archivePath) {
|
||||
ctx.ServeFile(archivePath, ctx.Repo.Repository.Name+".tar.gz")
|
||||
return
|
||||
}
|
||||
|
||||
err := ctx.Repo.Commit.CreateArchive(archivePath, git.AT_TARGZ)
|
||||
if err != nil {
|
||||
ctx.Handle(404, "TarGzDownload -> CreateArchive "+archivePath, err)
|
||||
return
|
||||
}
|
||||
|
||||
ctx.ServeFile(archivePath, ctx.Repo.Repository.Name+".tar.gz")
|
||||
}
|
||||
|
|
|
@ -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"> </span>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue