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 (
|
2016-03-07 01:14:22 +05:30
|
|
|
"fmt"
|
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/auth"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/markdown"
|
2016-11-11 17:41:45 +05:30
|
|
|
"github.com/Unknwon/paginater"
|
2014-04-02 22:13:31 +05:30
|
|
|
)
|
|
|
|
|
2014-06-23 08:41:12 +05:30
|
|
|
const (
|
2016-11-24 12:34:31 +05:30
|
|
|
tplReleases base.TplName = "repo/release/list"
|
|
|
|
tplReleaseNew base.TplName = "repo/release/new"
|
2014-06-23 08:41:12 +05:30
|
|
|
)
|
|
|
|
|
2016-07-27 14:27:32 +05:30
|
|
|
// calReleaseNumCommitsBehind calculates given release has how many commits behind release target.
|
2016-03-11 22:26:52 +05:30
|
|
|
func calReleaseNumCommitsBehind(repoCtx *context.Repository, release *models.Release, countCache map[string]int64) error {
|
2016-03-07 01:14:22 +05:30
|
|
|
// Fast return if release target is same as default branch.
|
|
|
|
if repoCtx.BranchName == release.Target {
|
|
|
|
release.NumCommitsBehind = repoCtx.CommitsCount - release.NumCommits
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get count if not exists
|
|
|
|
if _, ok := countCache[release.Target]; !ok {
|
2016-07-27 14:27:32 +05:30
|
|
|
if repoCtx.GitRepo.IsBranchExist(release.Target) {
|
|
|
|
commit, err := repoCtx.GitRepo.GetBranchCommit(release.Target)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("GetBranchCommit: %v", err)
|
|
|
|
}
|
|
|
|
countCache[release.Target], err = commit.CommitsCount()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("CommitsCount: %v", err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Use NumCommits of the newest release on that target
|
|
|
|
countCache[release.Target] = release.NumCommits
|
2016-03-07 01:14:22 +05:30
|
|
|
}
|
|
|
|
}
|
2016-07-27 14:27:32 +05:30
|
|
|
release.NumCommitsBehind = countCache[release.Target] - release.NumCommits
|
2016-03-07 01:14:22 +05:30
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Releases render releases list page
|
2016-03-11 22:26:52 +05:30
|
|
|
func Releases(ctx *context.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
|
|
|
|
}
|
|
|
|
|
2016-11-05 00:58:07 +05:30
|
|
|
page := ctx.QueryInt("page")
|
|
|
|
if page <= 1 {
|
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
releases, err := models.GetReleasesByRepoID(ctx.Repo.Repository.ID, page, 10)
|
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 {
|
2016-03-07 01:14:22 +05:30
|
|
|
for j, r := range releases {
|
|
|
|
if r == nil || (r.IsDraft && !ctx.Repo.IsOwner()) {
|
2014-07-26 11:58:04 +05:30
|
|
|
continue
|
|
|
|
}
|
2016-03-07 01:14:22 +05:30
|
|
|
if r.TagName == rawTag {
|
|
|
|
r.Publisher, err = models.GetUserByID(r.PublisherID)
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2016-02-11 02:05:58 +05:30
|
|
|
if models.IsErrUserNotExist(err) {
|
2016-08-14 16:02:24 +05:30
|
|
|
r.Publisher = models.NewGhostUser()
|
2016-02-11 02:05:58 +05:30
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "GetUserByID", err)
|
|
|
|
return
|
|
|
|
}
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
2016-03-07 01:14:22 +05:30
|
|
|
|
|
|
|
if err := calReleaseNumCommitsBehind(ctx.Repo, r, countCache); err != nil {
|
|
|
|
ctx.Handle(500, "calReleaseNumCommitsBehind", err)
|
|
|
|
return
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
2016-03-07 01:14:22 +05:30
|
|
|
r.Note = markdown.RenderString(r.Note, ctx.Repo.RepoLink, ctx.Repo.Repository.ComposeMetas())
|
|
|
|
tags[i] = r
|
|
|
|
releases[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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-07 01:14:22 +05:30
|
|
|
for _, r := range releases {
|
|
|
|
if r == nil {
|
2014-12-11 03:07:54 +05:30
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-03-07 01:14:22 +05:30
|
|
|
r.Publisher, err = models.GetUserByID(r.PublisherID)
|
2014-12-11 03:07:54 +05:30
|
|
|
if err != nil {
|
2016-02-11 02:05:58 +05:30
|
|
|
if models.IsErrUserNotExist(err) {
|
2016-08-14 16:02:24 +05:30
|
|
|
r.Publisher = models.NewGhostUser()
|
2016-02-11 02:05:58 +05:30
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "GetUserByID", err)
|
|
|
|
return
|
|
|
|
}
|
2014-12-11 03:07:54 +05:30
|
|
|
}
|
2016-03-07 01:14:22 +05:30
|
|
|
|
|
|
|
if err := calReleaseNumCommitsBehind(ctx.Repo, r, countCache); err != nil {
|
|
|
|
ctx.Handle(500, "calReleaseNumCommitsBehind", err)
|
|
|
|
return
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
2014-12-11 03:07:54 +05:30
|
|
|
|
2016-03-07 01:14:22 +05:30
|
|
|
r.Note = markdown.RenderString(r.Note, ctx.Repo.RepoLink, ctx.Repo.Repository.ComposeMetas())
|
|
|
|
tags = append(tags, r)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
2016-11-05 00:58:07 +05:30
|
|
|
pager := paginater.New(ctx.Repo.Repository.NumTags, 10, page, 5)
|
|
|
|
ctx.Data["Page"] = pager
|
2014-07-26 11:58:04 +05:30
|
|
|
models.SortReleases(tags)
|
|
|
|
ctx.Data["Releases"] = tags
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.HTML(200, tplReleases)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// NewRelease render creating release page
|
2016-03-11 22:26:52 +05:30
|
|
|
func NewRelease(ctx *context.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
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.HTML(200, tplReleaseNew)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// NewReleasePost response for creating a release
|
2016-03-11 22:26:52 +05:30
|
|
|
func NewReleasePost(ctx *context.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() {
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.HTML(200, tplReleaseNew)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-07 08:36:41 +05:30
|
|
|
if !ctx.Repo.GitRepo.IsBranchExist(form.Target) {
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.target_branch_not_exist"), tplReleaseNew, &form)
|
2014-11-07 08:36:41 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-06 22:32:15 +05:30
|
|
|
var tagCreatedUnix int64
|
|
|
|
tag, err := ctx.Repo.GitRepo.GetTag(form.TagName)
|
|
|
|
if err == nil {
|
|
|
|
commit, err := tag.Commit()
|
|
|
|
if err == nil {
|
|
|
|
tagCreatedUnix = commit.Author.When.Unix()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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,
|
2016-07-23 22:38:22 +05:30
|
|
|
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,
|
2016-08-06 22:32:15 +05:30
|
|
|
CreatedUnix: tagCreatedUnix,
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if err = models.CreateRelease(ctx.Repo.GitRepo, rel); err != nil {
|
2016-07-23 13:29:19 +05:30
|
|
|
ctx.Data["Err_TagName"] = true
|
|
|
|
switch {
|
|
|
|
case models.IsErrReleaseAlreadyExist(err):
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.release.tag_name_already_exist"), tplReleaseNew, &form)
|
2016-07-23 13:29:19 +05:30
|
|
|
case models.IsErrInvalidTagName(err):
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.release.tag_name_invalid"), tplReleaseNew, &form)
|
2016-07-23 13:29:19 +05:30
|
|
|
default:
|
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")
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// EditRelease render release edit page
|
2016-03-11 22:26:52 +05:30
|
|
|
func EditRelease(ctx *context.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
|
|
|
|
2016-08-12 02:15:42 +05:30
|
|
|
tagName := ctx.Params("*")
|
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
|
2016-11-14 22:00:22 +05:30
|
|
|
ctx.Data["IsDraft"] = rel.IsDraft
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.HTML(200, tplReleaseNew)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// EditReleasePost response for edit release
|
2016-03-11 22:26:52 +05:30
|
|
|
func EditReleasePost(ctx *context.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
|
|
|
|
2016-08-12 02:15:42 +05:30
|
|
|
tagName := ctx.Params("*")
|
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() {
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.HTML(200, tplReleaseNew)
|
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
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// DeleteRelease delete a release
|
2016-03-11 22:26:52 +05:30
|
|
|
func DeleteRelease(ctx *context.Context) {
|
2016-12-16 17:12:39 +05:30
|
|
|
if err := models.DeleteReleaseByID(ctx.QueryInt64("id"), ctx.User); err != nil {
|
2015-11-20 13:08:41 +05:30
|
|
|
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",
|
|
|
|
})
|
|
|
|
}
|