#1545 prevent duplicated refs of issues in single commit
This commit is contained in:
parent
1fd5f8edf8
commit
b6131793da
3 changed files with 51 additions and 88 deletions
|
@ -183,14 +183,17 @@ func RenameRepoAction(actUser *User, oldRepoName string, repo *Repository) error
|
||||||
return renameRepoAction(x, actUser, oldRepoName, repo)
|
return renameRepoAction(x, actUser, oldRepoName, repo)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func issueIndexTrimRight(c rune) bool {
|
||||||
|
return !unicode.IsDigit(c)
|
||||||
|
}
|
||||||
|
|
||||||
// updateIssuesCommit checks if issues are manipulated by commit message.
|
// updateIssuesCommit checks if issues are manipulated by commit message.
|
||||||
func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string, commits []*base.PushCommit) error {
|
func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string, commits []*base.PushCommit) error {
|
||||||
for _, c := range commits {
|
for _, c := range commits {
|
||||||
|
refMarked := make(map[int64]bool)
|
||||||
for _, ref := range IssueReferenceKeywordsPat.FindAllString(c.Message, -1) {
|
for _, ref := range IssueReferenceKeywordsPat.FindAllString(c.Message, -1) {
|
||||||
ref := ref[strings.IndexByte(ref, byte(' '))+1:]
|
ref = ref[strings.IndexByte(ref, byte(' '))+1:]
|
||||||
ref = strings.TrimRightFunc(ref, func(c rune) bool {
|
ref = strings.TrimRightFunc(ref, issueIndexTrimRight)
|
||||||
return !unicode.IsDigit(c)
|
|
||||||
})
|
|
||||||
|
|
||||||
if len(ref) == 0 {
|
if len(ref) == 0 {
|
||||||
continue
|
continue
|
||||||
|
@ -199,10 +202,9 @@ func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string
|
||||||
// Add repo name if missing
|
// Add repo name if missing
|
||||||
if ref[0] == '#' {
|
if ref[0] == '#' {
|
||||||
ref = fmt.Sprintf("%s/%s%s", repoUserName, repoName, ref)
|
ref = fmt.Sprintf("%s/%s%s", repoUserName, repoName, ref)
|
||||||
} else if strings.Contains(ref, "/") == false {
|
} else if !strings.Contains(ref, "/") {
|
||||||
// FIXME: We don't support User#ID syntax yet
|
// FIXME: We don't support User#ID syntax yet
|
||||||
// return ErrNotImplemented
|
// return ErrNotImplemented
|
||||||
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -211,6 +213,11 @@ func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if refMarked[issue.ID] {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
refMarked[issue.ID] = true
|
||||||
|
|
||||||
url := fmt.Sprintf("%s/%s/%s/commit/%s", setting.AppSubUrl, repoUserName, repoName, c.Sha1)
|
url := fmt.Sprintf("%s/%s/%s/commit/%s", setting.AppSubUrl, repoUserName, repoName, c.Sha1)
|
||||||
message := fmt.Sprintf(`<a href="%s">%s</a>`, url, c.Message)
|
message := fmt.Sprintf(`<a href="%s">%s</a>`, url, c.Message)
|
||||||
if _, err = CreateComment(u, repo, issue, 0, 0, COMMENT_TYPE_COMMIT_REF, message, nil); err != nil {
|
if _, err = CreateComment(u, repo, issue, 0, 0, COMMENT_TYPE_COMMIT_REF, message, nil); err != nil {
|
||||||
|
@ -218,11 +225,10 @@ func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
refMarked = make(map[int64]bool)
|
||||||
for _, ref := range IssueCloseKeywordsPat.FindAllString(c.Message, -1) {
|
for _, ref := range IssueCloseKeywordsPat.FindAllString(c.Message, -1) {
|
||||||
ref := ref[strings.IndexByte(ref, byte(' '))+1:]
|
ref = ref[strings.IndexByte(ref, byte(' '))+1:]
|
||||||
ref = strings.TrimRightFunc(ref, func(c rune) bool {
|
ref = strings.TrimRightFunc(ref, issueIndexTrimRight)
|
||||||
return !unicode.IsDigit(c)
|
|
||||||
})
|
|
||||||
|
|
||||||
if len(ref) == 0 {
|
if len(ref) == 0 {
|
||||||
continue
|
continue
|
||||||
|
@ -234,7 +240,6 @@ func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string
|
||||||
} else if strings.Contains(ref, "/") == false {
|
} else if strings.Contains(ref, "/") == false {
|
||||||
// We don't support User#ID syntax yet
|
// We don't support User#ID syntax yet
|
||||||
// return ErrNotImplemented
|
// return ErrNotImplemented
|
||||||
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -243,45 +248,24 @@ func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if issue.RepoID == repo.ID {
|
if refMarked[issue.ID] {
|
||||||
if issue.IsClosed {
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
issue.IsClosed = true
|
refMarked[issue.ID] = true
|
||||||
|
|
||||||
if err = issue.GetLabels(); err != nil {
|
if issue.RepoID != repo.ID || issue.IsClosed {
|
||||||
return err
|
continue
|
||||||
}
|
}
|
||||||
for _, label := range issue.Labels {
|
|
||||||
label.NumClosedIssues++
|
|
||||||
|
|
||||||
if err = UpdateLabel(label); err != nil {
|
if err = issue.ChangeStatus(u, true); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if err = UpdateIssue(issue); err != nil {
|
// It is conflict to have close and reopen at same time, so refsMarkd doesn't need to reinit here.
|
||||||
return err
|
|
||||||
} else if err = UpdateIssueUsersByStatus(issue.ID, issue.IsClosed); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if err = ChangeMilestoneIssueStats(issue); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// If commit happened in the referenced repository, it means the issue can be closed.
|
|
||||||
if _, err = CreateComment(u, repo, issue, 0, 0, COMMENT_TYPE_CLOSE, "", nil); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, ref := range IssueReopenKeywordsPat.FindAllString(c.Message, -1) {
|
for _, ref := range IssueReopenKeywordsPat.FindAllString(c.Message, -1) {
|
||||||
ref := ref[strings.IndexByte(ref, byte(' '))+1:]
|
ref = ref[strings.IndexByte(ref, byte(' '))+1:]
|
||||||
ref = strings.TrimRightFunc(ref, func(c rune) bool {
|
ref = strings.TrimRightFunc(ref, issueIndexTrimRight)
|
||||||
return !unicode.IsDigit(c)
|
|
||||||
})
|
|
||||||
|
|
||||||
if len(ref) == 0 {
|
if len(ref) == 0 {
|
||||||
continue
|
continue
|
||||||
|
@ -293,7 +277,6 @@ func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string
|
||||||
} else if strings.Contains(ref, "/") == false {
|
} else if strings.Contains(ref, "/") == false {
|
||||||
// We don't support User#ID syntax yet
|
// We don't support User#ID syntax yet
|
||||||
// return ErrNotImplemented
|
// return ErrNotImplemented
|
||||||
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -302,37 +285,17 @@ func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if issue.RepoID == repo.ID {
|
if refMarked[issue.ID] {
|
||||||
if !issue.IsClosed {
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
issue.IsClosed = false
|
refMarked[issue.ID] = true
|
||||||
|
|
||||||
if err = issue.GetLabels(); err != nil {
|
if issue.RepoID != repo.ID || !issue.IsClosed {
|
||||||
return err
|
continue
|
||||||
}
|
|
||||||
for _, label := range issue.Labels {
|
|
||||||
label.NumClosedIssues--
|
|
||||||
|
|
||||||
if err = UpdateLabel(label); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if err = UpdateIssue(issue); err != nil {
|
if err = issue.ChangeStatus(u, false); err != nil {
|
||||||
return err
|
return err
|
||||||
} else if err = UpdateIssueUsersByStatus(issue.ID, issue.IsClosed); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if err = ChangeMilestoneIssueStats(issue); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// If commit happened in the referenced repository, it means the issue can be closed.
|
|
||||||
if _, err = CreateComment(u, repo, issue, 0, 0, COMMENT_TYPE_REOPEN, "", nil); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,6 @@ import (
|
||||||
"mime/multipart"
|
"mime/multipart"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
"strconv"
|
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -384,25 +383,29 @@ func NewIssue(repo *Repository, issue *Issue, labelIDs []int64, uuids []string)
|
||||||
|
|
||||||
// GetIssueByRef returns an Issue specified by a GFM reference.
|
// GetIssueByRef returns an Issue specified by a GFM reference.
|
||||||
// See https://help.github.com/articles/writing-on-github#references for more information on the syntax.
|
// See https://help.github.com/articles/writing-on-github#references for more information on the syntax.
|
||||||
func GetIssueByRef(ref string) (issue *Issue, err error) {
|
func GetIssueByRef(ref string) (*Issue, error) {
|
||||||
var issueNumber int64
|
|
||||||
var repo *Repository
|
|
||||||
|
|
||||||
n := strings.IndexByte(ref, byte('#'))
|
n := strings.IndexByte(ref, byte('#'))
|
||||||
|
|
||||||
if n == -1 {
|
if n == -1 {
|
||||||
return nil, ErrMissingIssueNumber
|
return nil, ErrMissingIssueNumber
|
||||||
}
|
}
|
||||||
|
|
||||||
if issueNumber, err = strconv.ParseInt(ref[n+1:], 10, 64); err != nil {
|
index, err := com.StrTo(ref[n+1:]).Int64()
|
||||||
return
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
if repo, err = GetRepositoryByRef(ref[:n]); err != nil {
|
repo, err := GetRepositoryByRef(ref[:n])
|
||||||
return
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return GetIssueByIndex(repo.ID, issueNumber)
|
issue, err := GetIssueByIndex(repo.ID, index)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
issue.Repo = repo
|
||||||
|
return issue, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetIssueByIndex returns issue by given index in repository.
|
// GetIssueByIndex returns issue by given index in repository.
|
||||||
|
|
|
@ -1105,15 +1105,12 @@ func DeleteRepository(uid, repoID int64) error {
|
||||||
// See https://help.github.com/articles/writing-on-github#references for more information on the syntax.
|
// See https://help.github.com/articles/writing-on-github#references for more information on the syntax.
|
||||||
func GetRepositoryByRef(ref string) (*Repository, error) {
|
func GetRepositoryByRef(ref string) (*Repository, error) {
|
||||||
n := strings.IndexByte(ref, byte('/'))
|
n := strings.IndexByte(ref, byte('/'))
|
||||||
|
|
||||||
if n < 2 {
|
if n < 2 {
|
||||||
return nil, ErrInvalidReference
|
return nil, ErrInvalidReference
|
||||||
}
|
}
|
||||||
|
|
||||||
userName, repoName := ref[:n], ref[n+1:]
|
userName, repoName := ref[:n], ref[n+1:]
|
||||||
|
|
||||||
user, err := GetUserByName(userName)
|
user, err := GetUserByName(userName)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue