2014-04-02 22:13:31 +05:30
|
|
|
// 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 (
|
2014-07-26 11:58:04 +05:30
|
|
|
"github.com/gogits/gogs/models"
|
|
|
|
"github.com/gogits/gogs/modules/auth"
|
2014-04-14 11:27:25 +05:30
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-07-26 11:58:04 +05:30
|
|
|
"github.com/gogits/gogs/modules/log"
|
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-04-02 22:13:31 +05:30
|
|
|
)
|
|
|
|
|
2014-06-23 08:41:12 +05:30
|
|
|
const (
|
2015-11-16 10:22:46 +05:30
|
|
|
RELEASES base.TplName = "repo/release/list"
|
|
|
|
RELEASE_NEW base.TplName = "repo/release/new"
|
2014-06-23 08:41:12 +05:30
|
|
|
)
|
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
func Releases(ctx *middleware.Context) {
|
2014-12-11 03:07:54 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.release.releases")
|
2015-11-16 21:46:52 +05:30
|
|
|
ctx.Data["PageIsReleaseList"] = true
|
2014-11-07 08:36:41 +05:30
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
rawTags, err := ctx.Repo.GitRepo.GetTags()
|
|
|
|
if err != nil {
|
2014-11-07 08:36:41 +05:30
|
|
|
ctx.Handle(500, "GetTags", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-11-20 13:08:41 +05:30
|
|
|
rels, err := models.GetReleasesByRepoID(ctx.Repo.Repository.ID)
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2015-11-20 13:08:41 +05:30
|
|
|
ctx.Handle(500, "GetReleasesByRepoID", err)
|
2014-11-07 08:36:41 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
// Temproray cache commits count of used branches to speed up.
|
2015-12-10 07:16:05 +05:30
|
|
|
countCache := make(map[string]int64)
|
2014-07-26 11:58:04 +05:30
|
|
|
|
|
|
|
tags := make([]*models.Release, len(rawTags))
|
|
|
|
for i, rawTag := range rawTags {
|
2014-12-11 03:07:54 +05:30
|
|
|
for j, rel := range rels {
|
2015-02-16 16:21:56 +05:30
|
|
|
if rel == nil || (rel.IsDraft && !ctx.Repo.IsOwner()) {
|
2014-07-26 11:58:04 +05:30
|
|
|
continue
|
|
|
|
}
|
|
|
|
if rel.TagName == rawTag {
|
2015-11-16 10:22:46 +05:30
|
|
|
rel.Publisher, err = models.GetUserByID(rel.PublisherID)
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(500, "GetUserByID", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
2014-12-11 03:07:54 +05:30
|
|
|
// FIXME: duplicated code.
|
2014-07-26 11:58:04 +05:30
|
|
|
// Get corresponding target if it's not the current branch.
|
|
|
|
if ctx.Repo.BranchName != rel.Target {
|
|
|
|
// Get count if not exists.
|
|
|
|
if _, ok := countCache[rel.Target]; !ok {
|
2015-12-10 07:16:05 +05:30
|
|
|
commit, err := ctx.Repo.GitRepo.GetBranchCommit(ctx.Repo.BranchName)
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(500, "GetBranchCommit", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
2014-11-07 08:36:41 +05:30
|
|
|
countCache[ctx.Repo.BranchName], err = commit.CommitsCount()
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(500, "CommitsCount", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2014-11-07 08:36:41 +05:30
|
|
|
rel.NumCommitsBehind = countCache[ctx.Repo.BranchName] - rel.NumCommits
|
2014-07-26 11:58:04 +05:30
|
|
|
} else {
|
2014-12-11 03:07:54 +05:30
|
|
|
rel.NumCommitsBehind = ctx.Repo.CommitsCount - rel.NumCommits
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
2015-12-05 08:00:33 +05:30
|
|
|
rel.Note = base.RenderMarkdownString(rel.Note, ctx.Repo.RepoLink, ctx.Repo.Repository.ComposeMetas())
|
2014-07-26 11:58:04 +05:30
|
|
|
tags[i] = rel
|
2014-12-11 03:07:54 +05:30
|
|
|
rels[j] = nil // Mark as used.
|
2014-07-26 11:58:04 +05:30
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if tags[i] == nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
commit, err := ctx.Repo.GitRepo.GetTagCommit(rawTag)
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(500, "GetTagCommit", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
tags[i] = &models.Release{
|
|
|
|
Title: rawTag,
|
|
|
|
TagName: rawTag,
|
2015-11-04 09:19:06 +05:30
|
|
|
Sha1: commit.ID.String(),
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
2015-12-10 07:16:05 +05:30
|
|
|
tags[i].NumCommits, err = commit.CommitsCount()
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "CommitsCount", err)
|
|
|
|
return
|
|
|
|
}
|
2014-12-11 03:07:54 +05:30
|
|
|
tags[i].NumCommitsBehind = ctx.Repo.CommitsCount - tags[i].NumCommits
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, rel := range rels {
|
|
|
|
if rel == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2015-11-16 10:22:46 +05:30
|
|
|
rel.Publisher, err = models.GetUserByID(rel.PublisherID)
|
2014-12-11 03:07:54 +05:30
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(500, "GetUserByID", err)
|
2014-12-11 03:07:54 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
// FIXME: duplicated code.
|
|
|
|
// Get corresponding target if it's not the current branch.
|
|
|
|
if ctx.Repo.BranchName != rel.Target {
|
|
|
|
// Get count if not exists.
|
|
|
|
if _, ok := countCache[rel.Target]; !ok {
|
2015-12-10 07:16:05 +05:30
|
|
|
commit, err := ctx.Repo.GitRepo.GetBranchCommit(ctx.Repo.BranchName)
|
2014-12-11 03:07:54 +05:30
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(500, "GetBranchCommit", err)
|
2014-12-11 03:07:54 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
countCache[ctx.Repo.BranchName], err = commit.CommitsCount()
|
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(500, "CommitsCount", err)
|
2014-12-11 03:07:54 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rel.NumCommitsBehind = countCache[ctx.Repo.BranchName] - rel.NumCommits
|
|
|
|
} else {
|
|
|
|
rel.NumCommitsBehind = ctx.Repo.CommitsCount - rel.NumCommits
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
2014-12-11 03:07:54 +05:30
|
|
|
|
2015-12-05 08:00:33 +05:30
|
|
|
rel.Note = base.RenderMarkdownString(rel.Note, ctx.Repo.RepoLink, ctx.Repo.Repository.ComposeMetas())
|
2014-12-11 03:07:54 +05:30
|
|
|
tags = append(tags, rel)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
models.SortReleases(tags)
|
|
|
|
ctx.Data["Releases"] = tags
|
|
|
|
ctx.HTML(200, RELEASES)
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRelease(ctx *middleware.Context) {
|
2014-12-11 03:07:54 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.release.new_release")
|
2015-11-16 21:46:52 +05:30
|
|
|
ctx.Data["PageIsReleaseList"] = true
|
2014-12-11 03:07:54 +05:30
|
|
|
ctx.Data["tag_target"] = ctx.Repo.Repository.DefaultBranch
|
2014-07-26 11:58:04 +05:30
|
|
|
ctx.HTML(200, RELEASE_NEW)
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewReleasePost(ctx *middleware.Context, form auth.NewReleaseForm) {
|
2014-12-11 03:07:54 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.release.new_release")
|
2015-11-16 21:46:52 +05:30
|
|
|
ctx.Data["PageIsReleaseList"] = true
|
2014-07-26 11:58:04 +05:30
|
|
|
|
|
|
|
if ctx.HasError() {
|
|
|
|
ctx.HTML(200, RELEASE_NEW)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-07 08:36:41 +05:30
|
|
|
if !ctx.Repo.GitRepo.IsBranchExist(form.Target) {
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.target_branch_not_exist"), RELEASE_NEW, &form)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-12-10 07:16:05 +05:30
|
|
|
commit, err := ctx.Repo.GitRepo.GetBranchCommit(form.Target)
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(500, "GetBranchCommit", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-07 08:36:41 +05:30
|
|
|
commitsCount, err := commit.CommitsCount()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "CommitsCount", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
rel := &models.Release{
|
2015-11-16 10:22:46 +05:30
|
|
|
RepoID: ctx.Repo.Repository.ID,
|
|
|
|
PublisherID: ctx.User.Id,
|
2014-07-26 11:58:04 +05:30
|
|
|
Title: form.Title,
|
|
|
|
TagName: form.TagName,
|
|
|
|
Target: form.Target,
|
2015-11-04 09:19:06 +05:30
|
|
|
Sha1: commit.ID.String(),
|
2014-07-26 11:58:04 +05:30
|
|
|
NumCommits: commitsCount,
|
|
|
|
Note: form.Content,
|
|
|
|
IsDraft: len(form.Draft) > 0,
|
|
|
|
IsPrerelease: form.Prerelease,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = models.CreateRelease(ctx.Repo.GitRepo, rel); err != nil {
|
2015-11-16 10:22:46 +05:30
|
|
|
if models.IsErrReleaseAlreadyExist(err) {
|
|
|
|
ctx.Data["Err_TagName"] = true
|
2014-12-11 03:07:54 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.release.tag_name_already_exist"), RELEASE_NEW, &form)
|
2014-07-26 11:58:04 +05:30
|
|
|
} else {
|
2014-12-11 03:07:54 +05:30
|
|
|
ctx.Handle(500, "CreateRelease", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2015-11-16 10:22:46 +05:30
|
|
|
log.Trace("Release created: %s/%s:%s", ctx.User.LowerName, ctx.Repo.Repository.Name, form.TagName)
|
2014-07-26 11:58:04 +05:30
|
|
|
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/releases")
|
|
|
|
}
|
|
|
|
|
|
|
|
func EditRelease(ctx *middleware.Context) {
|
2015-11-16 10:22:46 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.release.edit_release")
|
2015-11-16 21:46:52 +05:30
|
|
|
ctx.Data["PageIsReleaseList"] = true
|
2015-11-16 10:22:46 +05:30
|
|
|
ctx.Data["PageIsEditRelease"] = true
|
2014-07-26 11:58:04 +05:30
|
|
|
|
|
|
|
tagName := ctx.Params(":tagname")
|
2015-08-08 20:13:14 +05:30
|
|
|
rel, err := models.GetRelease(ctx.Repo.Repository.ID, tagName)
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2015-11-16 10:22:46 +05:30
|
|
|
if models.IsErrReleaseNotExist(err) {
|
2014-12-11 03:07:54 +05:30
|
|
|
ctx.Handle(404, "GetRelease", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
} else {
|
2014-12-11 03:07:54 +05:30
|
|
|
ctx.Handle(500, "GetRelease", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2015-11-20 13:08:41 +05:30
|
|
|
ctx.Data["ID"] = rel.ID
|
2015-11-16 10:22:46 +05:30
|
|
|
ctx.Data["tag_name"] = rel.TagName
|
|
|
|
ctx.Data["tag_target"] = rel.Target
|
|
|
|
ctx.Data["title"] = rel.Title
|
|
|
|
ctx.Data["content"] = rel.Note
|
|
|
|
ctx.Data["prerelease"] = rel.IsPrerelease
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2015-11-16 10:22:46 +05:30
|
|
|
ctx.HTML(200, RELEASE_NEW)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
func EditReleasePost(ctx *middleware.Context, form auth.EditReleaseForm) {
|
2015-11-16 10:22:46 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.release.edit_release")
|
2015-11-16 21:46:52 +05:30
|
|
|
ctx.Data["PageIsReleaseList"] = true
|
2015-11-16 10:22:46 +05:30
|
|
|
ctx.Data["PageIsEditRelease"] = true
|
2014-07-26 11:58:04 +05:30
|
|
|
|
|
|
|
tagName := ctx.Params(":tagname")
|
2015-08-08 20:13:14 +05:30
|
|
|
rel, err := models.GetRelease(ctx.Repo.Repository.ID, tagName)
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2015-11-16 10:22:46 +05:30
|
|
|
if models.IsErrReleaseNotExist(err) {
|
2014-12-11 03:07:54 +05:30
|
|
|
ctx.Handle(404, "GetRelease", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
} else {
|
2014-12-11 03:07:54 +05:30
|
|
|
ctx.Handle(500, "GetRelease", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2015-11-16 10:22:46 +05:30
|
|
|
ctx.Data["tag_name"] = rel.TagName
|
|
|
|
ctx.Data["tag_target"] = rel.Target
|
|
|
|
ctx.Data["title"] = rel.Title
|
|
|
|
ctx.Data["content"] = rel.Note
|
|
|
|
ctx.Data["prerelease"] = rel.IsPrerelease
|
2014-07-26 11:58:04 +05:30
|
|
|
|
|
|
|
if ctx.HasError() {
|
2015-11-16 10:22:46 +05:30
|
|
|
ctx.HTML(200, RELEASE_NEW)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
rel.Title = form.Title
|
|
|
|
rel.Note = form.Content
|
|
|
|
rel.IsDraft = len(form.Draft) > 0
|
|
|
|
rel.IsPrerelease = form.Prerelease
|
|
|
|
if err = models.UpdateRelease(ctx.Repo.GitRepo, rel); err != nil {
|
2014-12-11 03:07:54 +05:30
|
|
|
ctx.Handle(500, "UpdateRelease", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/releases")
|
|
|
|
}
|
2015-11-20 13:08:41 +05:30
|
|
|
|
|
|
|
func DeleteRelease(ctx *middleware.Context) {
|
|
|
|
if err := models.DeleteReleaseByID(ctx.QueryInt64("id")); err != nil {
|
|
|
|
ctx.Flash.Error("DeleteReleaseByID: " + err.Error())
|
|
|
|
} else {
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.release.deletion_success"))
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.JSON(200, map[string]interface{}{
|
|
|
|
"redirect": ctx.Repo.RepoLink + "/releases",
|
|
|
|
})
|
|
|
|
}
|