2014-04-02 20:43:31 +04: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 (
2016-03-06 22:44:22 +03:00
"fmt"
2014-07-26 10:28:04 +04:00
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"
2014-04-14 09:57:25 +04:00
"github.com/gogits/gogs/modules/base"
2016-03-11 19:56:52 +03:00
"github.com/gogits/gogs/modules/context"
2014-07-26 10:28:04 +04:00
"github.com/gogits/gogs/modules/log"
2016-02-21 01:10:05 +03:00
"github.com/gogits/gogs/modules/markdown"
2014-04-02 20:43:31 +04:00
)
2014-06-23 07:11:12 +04:00
const (
2015-11-16 07:52:46 +03:00
RELEASES base . TplName = "repo/release/list"
RELEASE_NEW base . TplName = "repo/release/new"
2014-06-23 07:11:12 +04:00
)
2016-07-27 11:57:32 +03:00
// calReleaseNumCommitsBehind calculates given release has how many commits behind release target.
2016-03-11 19:56:52 +03:00
func calReleaseNumCommitsBehind ( repoCtx * context . Repository , release * models . Release , countCache map [ string ] int64 ) error {
2016-03-06 22:44:22 +03:00
// 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 11:57:32 +03:00
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-06 22:44:22 +03:00
}
}
2016-07-27 11:57:32 +03:00
release . NumCommitsBehind = countCache [ release . Target ] - release . NumCommits
2016-03-06 22:44:22 +03:00
return nil
}
2016-03-11 19:56:52 +03:00
func Releases ( ctx * context . Context ) {
2014-12-11 00:37:54 +03:00
ctx . Data [ "Title" ] = ctx . Tr ( "repo.release.releases" )
2015-11-16 19:16:52 +03:00
ctx . Data [ "PageIsReleaseList" ] = true
2014-11-07 06:06:41 +03:00
2014-07-26 10:28:04 +04:00
rawTags , err := ctx . Repo . GitRepo . GetTags ( )
if err != nil {
2014-11-07 06:06:41 +03:00
ctx . Handle ( 500 , "GetTags" , err )
2014-07-26 10:28:04 +04:00
return
}
2016-03-06 22:44:22 +03:00
releases , err := models . GetReleasesByRepoID ( ctx . Repo . Repository . ID )
2014-07-26 10:28:04 +04:00
if err != nil {
2015-11-20 10:38:41 +03:00
ctx . Handle ( 500 , "GetReleasesByRepoID" , err )
2014-11-07 06:06:41 +03:00
return
}
2014-07-26 10:28:04 +04:00
// Temproray cache commits count of used branches to speed up.
2015-12-10 04:46:05 +03:00
countCache := make ( map [ string ] int64 )
2014-07-26 10:28:04 +04:00
tags := make ( [ ] * models . Release , len ( rawTags ) )
for i , rawTag := range rawTags {
2016-03-06 22:44:22 +03:00
for j , r := range releases {
if r == nil || ( r . IsDraft && ! ctx . Repo . IsOwner ( ) ) {
2014-07-26 10:28:04 +04:00
continue
}
2016-03-06 22:44:22 +03:00
if r . TagName == rawTag {
r . Publisher , err = models . GetUserByID ( r . PublisherID )
2014-07-26 10:28:04 +04:00
if err != nil {
2016-02-10 23:35:58 +03:00
if models . IsErrUserNotExist ( err ) {
2016-03-06 22:44:22 +03:00
r . Publisher = models . NewFakeUser ( )
2016-02-10 23:35:58 +03:00
} else {
ctx . Handle ( 500 , "GetUserByID" , err )
return
}
2014-07-26 10:28:04 +04:00
}
2016-03-06 22:44:22 +03:00
if err := calReleaseNumCommitsBehind ( ctx . Repo , r , countCache ) ; err != nil {
ctx . Handle ( 500 , "calReleaseNumCommitsBehind" , err )
return
2014-07-26 10:28:04 +04:00
}
2016-03-06 22:44:22 +03:00
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 10:28:04 +04:00
break
}
}
if tags [ i ] == nil {
2015-12-10 04:46:05 +03:00
commit , err := ctx . Repo . GitRepo . GetTagCommit ( rawTag )
2014-07-26 10:28:04 +04:00
if err != nil {
2015-12-10 04:46:05 +03:00
ctx . Handle ( 500 , "GetTagCommit" , err )
2014-07-26 10:28:04 +04:00
return
}
tags [ i ] = & models . Release {
Title : rawTag ,
TagName : rawTag ,
2015-11-04 06:49:06 +03:00
Sha1 : commit . ID . String ( ) ,
2014-07-26 10:28:04 +04:00
}
2015-12-10 04:46:05 +03:00
tags [ i ] . NumCommits , err = commit . CommitsCount ( )
2014-07-26 10:28:04 +04:00
if err != nil {
ctx . Handle ( 500 , "CommitsCount" , err )
return
}
2014-12-11 00:37:54 +03:00
tags [ i ] . NumCommitsBehind = ctx . Repo . CommitsCount - tags [ i ] . NumCommits
}
}
2016-03-06 22:44:22 +03:00
for _ , r := range releases {
if r == nil {
2014-12-11 00:37:54 +03:00
continue
}
2016-03-06 22:44:22 +03:00
r . Publisher , err = models . GetUserByID ( r . PublisherID )
2014-12-11 00:37:54 +03:00
if err != nil {
2016-02-10 23:35:58 +03:00
if models . IsErrUserNotExist ( err ) {
2016-03-06 22:44:22 +03:00
r . Publisher = models . NewFakeUser ( )
2016-02-10 23:35:58 +03:00
} else {
ctx . Handle ( 500 , "GetUserByID" , err )
return
}
2014-12-11 00:37:54 +03:00
}
2016-03-06 22:44:22 +03:00
if err := calReleaseNumCommitsBehind ( ctx . Repo , r , countCache ) ; err != nil {
ctx . Handle ( 500 , "calReleaseNumCommitsBehind" , err )
return
2014-07-26 10:28:04 +04:00
}
2014-12-11 00:37:54 +03:00
2016-03-06 22:44:22 +03:00
r . Note = markdown . RenderString ( r . Note , ctx . Repo . RepoLink , ctx . Repo . Repository . ComposeMetas ( ) )
tags = append ( tags , r )
2014-07-26 10:28:04 +04:00
}
models . SortReleases ( tags )
ctx . Data [ "Releases" ] = tags
ctx . HTML ( 200 , RELEASES )
}
2016-03-11 19:56:52 +03:00
func NewRelease ( ctx * context . Context ) {
2014-12-11 00:37:54 +03:00
ctx . Data [ "Title" ] = ctx . Tr ( "repo.release.new_release" )
2015-11-16 19:16:52 +03:00
ctx . Data [ "PageIsReleaseList" ] = true
2014-12-11 00:37:54 +03:00
ctx . Data [ "tag_target" ] = ctx . Repo . Repository . DefaultBranch
2014-07-26 10:28:04 +04:00
ctx . HTML ( 200 , RELEASE_NEW )
}
2016-03-11 19:56:52 +03:00
func NewReleasePost ( ctx * context . Context , form auth . NewReleaseForm ) {
2014-12-11 00:37:54 +03:00
ctx . Data [ "Title" ] = ctx . Tr ( "repo.release.new_release" )
2015-11-16 19:16:52 +03:00
ctx . Data [ "PageIsReleaseList" ] = true
2014-07-26 10:28:04 +04:00
if ctx . HasError ( ) {
ctx . HTML ( 200 , RELEASE_NEW )
return
}
2014-11-07 06:06:41 +03:00
if ! ctx . Repo . GitRepo . IsBranchExist ( form . Target ) {
ctx . RenderWithErr ( ctx . Tr ( "form.target_branch_not_exist" ) , RELEASE_NEW , & form )
return
}
2016-08-06 20:02:15 +03:00
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 04:46:05 +03:00
commit , err := ctx . Repo . GitRepo . GetBranchCommit ( form . Target )
2014-07-26 10:28:04 +04:00
if err != nil {
2015-12-10 04:46:05 +03:00
ctx . Handle ( 500 , "GetBranchCommit" , err )
2014-07-26 10:28:04 +04:00
return
}
2014-11-07 06:06:41 +03:00
commitsCount , err := commit . CommitsCount ( )
if err != nil {
ctx . Handle ( 500 , "CommitsCount" , err )
2014-07-26 10:28:04 +04:00
return
}
rel := & models . Release {
2015-11-16 07:52:46 +03:00
RepoID : ctx . Repo . Repository . ID ,
2016-07-23 20:08:22 +03:00
PublisherID : ctx . User . ID ,
2014-07-26 10:28:04 +04:00
Title : form . Title ,
TagName : form . TagName ,
Target : form . Target ,
2015-11-04 06:49:06 +03:00
Sha1 : commit . ID . String ( ) ,
2014-07-26 10:28:04 +04:00
NumCommits : commitsCount ,
Note : form . Content ,
IsDraft : len ( form . Draft ) > 0 ,
IsPrerelease : form . Prerelease ,
2016-08-06 20:02:15 +03:00
CreatedUnix : tagCreatedUnix ,
2014-07-26 10:28:04 +04:00
}
if err = models . CreateRelease ( ctx . Repo . GitRepo , rel ) ; err != nil {
2016-07-23 10:59:19 +03:00
ctx . Data [ "Err_TagName" ] = true
switch {
case models . IsErrReleaseAlreadyExist ( err ) :
2014-12-11 00:37:54 +03:00
ctx . RenderWithErr ( ctx . Tr ( "repo.release.tag_name_already_exist" ) , RELEASE_NEW , & form )
2016-07-23 10:59:19 +03:00
case models . IsErrInvalidTagName ( err ) :
ctx . RenderWithErr ( ctx . Tr ( "repo.release.tag_name_invalid" ) , RELEASE_NEW , & form )
default :
2014-12-11 00:37:54 +03:00
ctx . Handle ( 500 , "CreateRelease" , err )
2014-07-26 10:28:04 +04:00
}
return
}
2015-11-16 07:52:46 +03:00
log . Trace ( "Release created: %s/%s:%s" , ctx . User . LowerName , ctx . Repo . Repository . Name , form . TagName )
2014-07-26 10:28:04 +04:00
ctx . Redirect ( ctx . Repo . RepoLink + "/releases" )
}
2016-03-11 19:56:52 +03:00
func EditRelease ( ctx * context . Context ) {
2015-11-16 07:52:46 +03:00
ctx . Data [ "Title" ] = ctx . Tr ( "repo.release.edit_release" )
2015-11-16 19:16:52 +03:00
ctx . Data [ "PageIsReleaseList" ] = true
2015-11-16 07:52:46 +03:00
ctx . Data [ "PageIsEditRelease" ] = true
2014-07-26 10:28:04 +04:00
tagName := ctx . Params ( ":tagname" )
2015-08-08 17:43:14 +03:00
rel , err := models . GetRelease ( ctx . Repo . Repository . ID , tagName )
2014-07-26 10:28:04 +04:00
if err != nil {
2015-11-16 07:52:46 +03:00
if models . IsErrReleaseNotExist ( err ) {
2014-12-11 00:37:54 +03:00
ctx . Handle ( 404 , "GetRelease" , err )
2014-07-26 10:28:04 +04:00
} else {
2014-12-11 00:37:54 +03:00
ctx . Handle ( 500 , "GetRelease" , err )
2014-07-26 10:28:04 +04:00
}
return
}
2015-11-20 10:38:41 +03:00
ctx . Data [ "ID" ] = rel . ID
2015-11-16 07:52:46 +03:00
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 10:28:04 +04:00
2015-11-16 07:52:46 +03:00
ctx . HTML ( 200 , RELEASE_NEW )
2014-07-26 10:28:04 +04:00
}
2016-03-11 19:56:52 +03:00
func EditReleasePost ( ctx * context . Context , form auth . EditReleaseForm ) {
2015-11-16 07:52:46 +03:00
ctx . Data [ "Title" ] = ctx . Tr ( "repo.release.edit_release" )
2015-11-16 19:16:52 +03:00
ctx . Data [ "PageIsReleaseList" ] = true
2015-11-16 07:52:46 +03:00
ctx . Data [ "PageIsEditRelease" ] = true
2014-07-26 10:28:04 +04:00
tagName := ctx . Params ( ":tagname" )
2015-08-08 17:43:14 +03:00
rel , err := models . GetRelease ( ctx . Repo . Repository . ID , tagName )
2014-07-26 10:28:04 +04:00
if err != nil {
2015-11-16 07:52:46 +03:00
if models . IsErrReleaseNotExist ( err ) {
2014-12-11 00:37:54 +03:00
ctx . Handle ( 404 , "GetRelease" , err )
2014-07-26 10:28:04 +04:00
} else {
2014-12-11 00:37:54 +03:00
ctx . Handle ( 500 , "GetRelease" , err )
2014-07-26 10:28:04 +04:00
}
return
}
2015-11-16 07:52:46 +03:00
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 10:28:04 +04:00
if ctx . HasError ( ) {
2015-11-16 07:52:46 +03:00
ctx . HTML ( 200 , RELEASE_NEW )
2014-07-26 10:28:04 +04:00
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 00:37:54 +03:00
ctx . Handle ( 500 , "UpdateRelease" , err )
2014-07-26 10:28:04 +04:00
return
}
ctx . Redirect ( ctx . Repo . RepoLink + "/releases" )
}
2015-11-20 10:38:41 +03:00
2016-03-11 19:56:52 +03:00
func DeleteRelease ( ctx * context . Context ) {
2015-11-20 10:38:41 +03:00
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" ,
} )
}