2014-03-13 06:16:14 +01: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 models
|
|
|
|
|
|
|
|
import (
|
2014-03-16 16:02:59 +01:00
|
|
|
"encoding/json"
|
2014-05-06 17:50:31 +02:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2014-07-26 06:24:27 +02:00
|
|
|
"path"
|
2014-07-23 13:48:06 +02:00
|
|
|
"regexp"
|
2014-04-14 04:20:28 +02:00
|
|
|
"strings"
|
2014-03-13 06:16:14 +01:00
|
|
|
"time"
|
2014-07-24 10:15:05 +02:00
|
|
|
"unicode"
|
2014-03-22 11:20:00 +01:00
|
|
|
|
2014-03-23 11:27:01 +01:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-07-26 06:24:27 +02:00
|
|
|
"github.com/gogits/gogs/modules/git"
|
2014-03-22 11:20:00 +01:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-05-26 02:11:25 +02:00
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-03-13 06:16:14 +01:00
|
|
|
)
|
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
type ActionType int
|
|
|
|
|
2014-03-13 06:16:14 +01:00
|
|
|
const (
|
2014-07-26 06:24:27 +02:00
|
|
|
CREATE_REPO ActionType = iota + 1 // 1
|
|
|
|
DELETE_REPO // 2
|
|
|
|
STAR_REPO // 3
|
|
|
|
FOLLOW_REPO // 4
|
|
|
|
COMMIT_REPO // 5
|
|
|
|
CREATE_ISSUE // 6
|
|
|
|
PULL_REQUEST // 7
|
|
|
|
TRANSFER_REPO // 8
|
|
|
|
PUSH_TAG // 9
|
|
|
|
COMMENT_ISSUE // 10
|
2014-03-13 06:16:14 +01:00
|
|
|
)
|
|
|
|
|
2014-07-23 13:48:06 +02:00
|
|
|
var (
|
|
|
|
ErrNotImplemented = errors.New("Not implemented yet")
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// Same as Github. See https://help.github.com/articles/closing-issues-via-commit-messages
|
2015-02-07 02:47:21 +01:00
|
|
|
IssueCloseKeywords = []string{"close", "closes", "closed", "fix", "fixes", "fixed", "resolve", "resolves", "resolved"}
|
|
|
|
IssueReopenKeywords = []string{"reopen", "reopens", "reopened"}
|
|
|
|
|
|
|
|
IssueCloseKeywordsPat, IssueReopenKeywordsPat *regexp.Regexp
|
|
|
|
IssueReferenceKeywordsPat *regexp.Regexp
|
2014-07-23 13:48:06 +02:00
|
|
|
)
|
|
|
|
|
2015-02-07 02:47:21 +01:00
|
|
|
func assembleKeywordsPattern(words []string) string {
|
|
|
|
return fmt.Sprintf(`(?i)(?:%s) \S+`, strings.Join(words, "|"))
|
|
|
|
}
|
|
|
|
|
2014-07-23 13:48:06 +02:00
|
|
|
func init() {
|
2015-02-07 02:47:21 +01:00
|
|
|
IssueCloseKeywordsPat = regexp.MustCompile(assembleKeywordsPattern(IssueCloseKeywords))
|
|
|
|
IssueReopenKeywordsPat = regexp.MustCompile(assembleKeywordsPattern(IssueReopenKeywords))
|
2015-02-07 02:34:49 +01:00
|
|
|
IssueReferenceKeywordsPat = regexp.MustCompile(`(?i)(?:)(^| )\S+`)
|
2014-07-23 13:48:06 +02:00
|
|
|
}
|
|
|
|
|
2014-03-27 16:37:33 +01:00
|
|
|
// Action represents user operation type and other information to repository.,
|
|
|
|
// it implemented interface base.Actioner so that can be used in template render.
|
2014-03-13 06:16:14 +01:00
|
|
|
type Action struct {
|
2015-03-18 02:51:39 +01:00
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
UserID int64 // Receiver user id.
|
2014-07-26 06:24:27 +02:00
|
|
|
OpType ActionType
|
2015-03-18 02:51:39 +01:00
|
|
|
ActUserID int64 // Action user id.
|
2014-05-03 07:37:49 +02:00
|
|
|
ActUserName string // Action user name.
|
|
|
|
ActEmail string
|
2014-11-21 16:58:08 +01:00
|
|
|
ActAvatar string `xorm:"-"`
|
2015-03-18 02:51:39 +01:00
|
|
|
RepoID int64
|
2014-05-03 07:37:49 +02:00
|
|
|
RepoUserName string
|
|
|
|
RepoName string
|
|
|
|
RefName string
|
|
|
|
IsPrivate bool `xorm:"NOT NULL DEFAULT false"`
|
|
|
|
Content string `xorm:"TEXT"`
|
|
|
|
Created time.Time `xorm:"created"`
|
2014-03-15 05:50:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a Action) GetOpType() int {
|
2014-07-26 06:24:27 +02:00
|
|
|
return int(a.OpType)
|
2014-03-15 05:50:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a Action) GetActUserName() string {
|
|
|
|
return a.ActUserName
|
|
|
|
}
|
|
|
|
|
2014-03-29 12:50:25 +01:00
|
|
|
func (a Action) GetActEmail() string {
|
|
|
|
return a.ActEmail
|
|
|
|
}
|
|
|
|
|
2014-05-09 08:42:50 +02:00
|
|
|
func (a Action) GetRepoUserName() string {
|
|
|
|
return a.RepoUserName
|
|
|
|
}
|
|
|
|
|
2014-03-15 05:50:51 +01:00
|
|
|
func (a Action) GetRepoName() string {
|
|
|
|
return a.RepoName
|
2014-03-13 06:16:14 +01:00
|
|
|
}
|
|
|
|
|
2015-03-12 21:01:23 +01:00
|
|
|
func (a Action) GetRepoPath() string {
|
|
|
|
return path.Join(a.RepoUserName, a.RepoName)
|
|
|
|
}
|
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
func (a Action) GetRepoLink() string {
|
2015-03-12 21:01:23 +01:00
|
|
|
if len(setting.AppSubUrl) > 0 {
|
|
|
|
return path.Join(setting.AppSubUrl, a.GetRepoPath())
|
|
|
|
}
|
|
|
|
return "/" + a.GetRepoPath()
|
2014-07-26 06:24:27 +02:00
|
|
|
}
|
|
|
|
|
2014-03-23 11:27:01 +01:00
|
|
|
func (a Action) GetBranch() string {
|
|
|
|
return a.RefName
|
2014-03-16 16:30:35 +01:00
|
|
|
}
|
|
|
|
|
2014-03-23 11:27:01 +01:00
|
|
|
func (a Action) GetContent() string {
|
|
|
|
return a.Content
|
2014-03-23 11:00:09 +01:00
|
|
|
}
|
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
func (a Action) GetCreate() time.Time {
|
|
|
|
return a.Created
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a Action) GetIssueInfos() []string {
|
|
|
|
return strings.SplitN(a.Content, "|", 2)
|
|
|
|
}
|
|
|
|
|
2014-07-24 10:15:05 +02:00
|
|
|
func updateIssuesCommit(userId, repoId int64, repoUserName, repoName string, commits []*base.PushCommit) error {
|
2014-07-23 13:48:06 +02:00
|
|
|
for _, c := range commits {
|
2015-02-07 02:47:21 +01:00
|
|
|
for _, ref := range IssueReferenceKeywordsPat.FindAllString(c.Message, -1) {
|
2014-07-23 13:48:06 +02:00
|
|
|
ref := ref[strings.IndexByte(ref, byte(' '))+1:]
|
2014-07-24 10:15:05 +02:00
|
|
|
ref = strings.TrimRightFunc(ref, func(c rune) bool {
|
2015-02-07 02:34:49 +01:00
|
|
|
return !unicode.IsDigit(c)
|
|
|
|
})
|
2014-07-23 13:48:06 +02:00
|
|
|
|
|
|
|
if len(ref) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add repo name if missing
|
|
|
|
if ref[0] == '#' {
|
|
|
|
ref = fmt.Sprintf("%s/%s%s", repoUserName, repoName, ref)
|
|
|
|
} else if strings.Contains(ref, "/") == false {
|
2015-02-07 02:34:49 +01:00
|
|
|
// FIXME: We don't support User#ID syntax yet
|
2014-07-23 13:48:06 +02:00
|
|
|
// return ErrNotImplemented
|
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
issue, err := GetIssueByRef(ref)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-09-20 02:11:34 +02:00
|
|
|
url := fmt.Sprintf("%s/%s/%s/commit/%s", setting.AppSubUrl, repoUserName, repoName, c.Sha1)
|
2014-07-24 10:15:05 +02:00
|
|
|
message := fmt.Sprintf(`<a href="%s">%s</a>`, url, c.Message)
|
2015-07-24 15:02:49 +02:00
|
|
|
if _, err = CreateComment(userId, issue.RepoId, issue.ID, 0, 0, COMMENT_TYPE_COMMIT, message, nil); err != nil {
|
2014-07-23 13:48:06 +02:00
|
|
|
return err
|
|
|
|
}
|
2015-02-02 16:34:07 +01:00
|
|
|
}
|
|
|
|
|
2015-02-07 02:47:21 +01:00
|
|
|
for _, ref := range IssueCloseKeywordsPat.FindAllString(c.Message, -1) {
|
2015-02-02 16:34:07 +01:00
|
|
|
ref := ref[strings.IndexByte(ref, byte(' '))+1:]
|
|
|
|
ref = strings.TrimRightFunc(ref, func(c rune) bool {
|
2015-02-07 02:34:49 +01:00
|
|
|
return !unicode.IsDigit(c)
|
|
|
|
})
|
2015-02-02 16:34:07 +01:00
|
|
|
|
|
|
|
if len(ref) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add repo name if missing
|
|
|
|
if ref[0] == '#' {
|
|
|
|
ref = fmt.Sprintf("%s/%s%s", repoUserName, repoName, ref)
|
|
|
|
} else if strings.Contains(ref, "/") == false {
|
|
|
|
// We don't support User#ID syntax yet
|
|
|
|
// return ErrNotImplemented
|
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
issue, err := GetIssueByRef(ref)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-07-23 13:48:06 +02:00
|
|
|
|
2014-07-24 10:15:05 +02:00
|
|
|
if issue.RepoId == repoId {
|
|
|
|
if issue.IsClosed {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
issue.IsClosed = true
|
2014-07-23 13:54:46 +02:00
|
|
|
|
2015-02-23 20:32:44 +01:00
|
|
|
if err = issue.GetLabels(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, label := range issue.Labels {
|
|
|
|
label.NumClosedIssues++
|
|
|
|
|
|
|
|
if err = UpdateLabel(label); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-24 10:15:05 +02:00
|
|
|
if err = UpdateIssue(issue); err != nil {
|
|
|
|
return err
|
2015-07-24 15:02:49 +02:00
|
|
|
} else if err = UpdateIssueUserPairsByStatus(issue.ID, issue.IsClosed); err != nil {
|
2014-10-14 11:31:35 +02:00
|
|
|
return err
|
|
|
|
}
|
2014-07-24 10:15:05 +02:00
|
|
|
|
|
|
|
if err = ChangeMilestoneIssueStats(issue); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// If commit happened in the referenced repository, it means the issue can be closed.
|
2015-07-24 15:02:49 +02:00
|
|
|
if _, err = CreateComment(userId, repoId, issue.ID, 0, 0, COMMENT_TYPE_CLOSE, "", nil); err != nil {
|
2014-07-24 10:15:05 +02:00
|
|
|
return err
|
|
|
|
}
|
2014-07-23 13:48:06 +02:00
|
|
|
}
|
|
|
|
}
|
2015-02-07 02:34:49 +01:00
|
|
|
|
2015-02-07 02:47:21 +01:00
|
|
|
for _, ref := range IssueReopenKeywordsPat.FindAllString(c.Message, -1) {
|
|
|
|
ref := ref[strings.IndexByte(ref, byte(' '))+1:]
|
|
|
|
ref = strings.TrimRightFunc(ref, func(c rune) bool {
|
|
|
|
return !unicode.IsDigit(c)
|
|
|
|
})
|
2014-07-23 13:48:06 +02:00
|
|
|
|
2015-02-07 02:47:21 +01:00
|
|
|
if len(ref) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add repo name if missing
|
|
|
|
if ref[0] == '#' {
|
|
|
|
ref = fmt.Sprintf("%s/%s%s", repoUserName, repoName, ref)
|
|
|
|
} else if strings.Contains(ref, "/") == false {
|
|
|
|
// We don't support User#ID syntax yet
|
|
|
|
// return ErrNotImplemented
|
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
issue, err := GetIssueByRef(ref)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if issue.RepoId == repoId {
|
|
|
|
if !issue.IsClosed {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
issue.IsClosed = false
|
|
|
|
|
2015-02-23 20:32:44 +01:00
|
|
|
if err = issue.GetLabels(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, label := range issue.Labels {
|
|
|
|
label.NumClosedIssues--
|
|
|
|
|
|
|
|
if err = UpdateLabel(label); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-07 02:47:21 +01:00
|
|
|
if err = UpdateIssue(issue); err != nil {
|
|
|
|
return err
|
2015-07-24 15:02:49 +02:00
|
|
|
} else if err = UpdateIssueUserPairsByStatus(issue.ID, issue.IsClosed); err != nil {
|
2015-02-07 02:47:21 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = ChangeMilestoneIssueStats(issue); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// If commit happened in the referenced repository, it means the issue can be closed.
|
2015-07-24 15:02:49 +02:00
|
|
|
if _, err = CreateComment(userId, repoId, issue.ID, 0, 0, COMMENT_TYPE_REOPEN, "", nil); err != nil {
|
2015-02-07 02:47:21 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-23 13:48:06 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-03-27 16:37:33 +01:00
|
|
|
// CommitRepoAction adds new action for committing repository.
|
2014-05-03 07:37:49 +02:00
|
|
|
func CommitRepoAction(userId, repoUserId int64, userName, actEmail string,
|
2014-08-26 14:20:18 +02:00
|
|
|
repoId int64, repoUserName, repoName string, refFullName string, commit *base.PushCommits, oldCommitId string, newCommitId string) error {
|
2014-04-14 03:00:12 +02:00
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
opType := COMMIT_REPO
|
2014-04-14 03:00:12 +02:00
|
|
|
// Check it's tag push or branch.
|
2014-05-06 17:50:31 +02:00
|
|
|
if strings.HasPrefix(refFullName, "refs/tags/") {
|
2014-07-26 06:24:27 +02:00
|
|
|
opType = PUSH_TAG
|
2014-04-14 04:20:28 +02:00
|
|
|
commit = &base.PushCommits{}
|
|
|
|
}
|
|
|
|
|
2014-10-11 03:40:51 +02:00
|
|
|
repoLink := fmt.Sprintf("%s%s/%s", setting.AppUrl, repoUserName, repoName)
|
|
|
|
// if not the first commit, set the compareUrl
|
|
|
|
if !strings.HasPrefix(oldCommitId, "0000000") {
|
|
|
|
commit.CompareUrl = fmt.Sprintf("%s/compare/%s...%s", repoLink, oldCommitId, newCommitId)
|
|
|
|
}
|
2014-03-24 14:32:24 +01:00
|
|
|
|
2014-03-27 17:48:29 +01:00
|
|
|
bs, err := json.Marshal(commit)
|
2014-03-16 16:02:59 +01:00
|
|
|
if err != nil {
|
2014-05-06 17:50:31 +02:00
|
|
|
return errors.New("action.CommitRepoAction(json): " + err.Error())
|
2014-03-16 16:02:59 +01:00
|
|
|
}
|
2014-03-20 04:39:00 +01:00
|
|
|
|
2014-10-11 03:40:51 +02:00
|
|
|
refName := git.RefEndName(refFullName)
|
|
|
|
|
2014-03-27 16:37:33 +01:00
|
|
|
// Change repository bare status and update last updated time.
|
2014-05-03 07:37:49 +02:00
|
|
|
repo, err := GetRepositoryByName(repoUserId, repoName)
|
2014-03-22 09:44:57 +01:00
|
|
|
if err != nil {
|
2014-05-06 17:50:31 +02:00
|
|
|
return errors.New("action.CommitRepoAction(GetRepositoryByName): " + err.Error())
|
2014-03-22 09:44:57 +01:00
|
|
|
}
|
2014-03-22 16:59:14 +01:00
|
|
|
repo.IsBare = false
|
2015-03-16 09:52:11 +01:00
|
|
|
if err = UpdateRepository(repo, false); err != nil {
|
2014-05-06 17:50:31 +02:00
|
|
|
return errors.New("action.CommitRepoAction(UpdateRepository): " + err.Error())
|
2014-03-22 09:44:57 +01:00
|
|
|
}
|
2014-03-25 13:53:11 +01:00
|
|
|
|
2014-07-24 10:15:05 +02:00
|
|
|
err = updateIssuesCommit(userId, repoId, repoUserName, repoName, commit.Commits)
|
2014-07-23 13:48:06 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Debug("action.CommitRepoAction(updateIssuesCommit): ", err)
|
|
|
|
}
|
|
|
|
|
2015-03-18 02:51:39 +01:00
|
|
|
if err = NotifyWatchers(&Action{
|
|
|
|
ActUserID: userId,
|
|
|
|
ActUserName: userName,
|
|
|
|
ActEmail: actEmail,
|
|
|
|
OpType: opType,
|
|
|
|
Content: string(bs),
|
|
|
|
RepoID: repoId,
|
|
|
|
RepoUserName: repoUserName,
|
|
|
|
RepoName: repoName,
|
|
|
|
RefName: refName,
|
|
|
|
IsPrivate: repo.IsPrivate,
|
|
|
|
}); err != nil {
|
2014-05-06 17:50:31 +02:00
|
|
|
return errors.New("action.CommitRepoAction(NotifyWatchers): " + err.Error())
|
2014-05-01 14:35:05 +02:00
|
|
|
|
2014-05-06 17:50:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// New push event hook.
|
2014-05-08 14:18:03 +02:00
|
|
|
if err := repo.GetOwner(); err != nil {
|
|
|
|
return errors.New("action.CommitRepoAction(GetOwner): " + err.Error())
|
|
|
|
}
|
|
|
|
|
2014-05-06 17:50:31 +02:00
|
|
|
ws, err := GetActiveWebhooksByRepoId(repoId)
|
|
|
|
if err != nil {
|
2014-09-04 13:17:00 +02:00
|
|
|
return errors.New("action.CommitRepoAction(GetActiveWebhooksByRepoId): " + err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if repo belongs to org and append additional webhooks
|
|
|
|
if repo.Owner.IsOrganization() {
|
|
|
|
// get hooks for org
|
|
|
|
orgws, err := GetActiveWebhooksByOrgId(repo.OwnerId)
|
|
|
|
if err != nil {
|
|
|
|
return errors.New("action.CommitRepoAction(GetActiveWebhooksByOrgId): " + err.Error())
|
|
|
|
}
|
|
|
|
ws = append(ws, orgws...)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(ws) == 0 {
|
2014-05-06 17:50:31 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-09-17 15:11:51 +02:00
|
|
|
pusher_email, pusher_name := "", ""
|
|
|
|
pusher, err := GetUserByName(userName)
|
|
|
|
if err == nil {
|
|
|
|
pusher_email = pusher.Email
|
|
|
|
pusher_name = pusher.GetFullNameFallback()
|
|
|
|
}
|
|
|
|
|
2014-06-08 10:45:34 +02:00
|
|
|
commits := make([]*PayloadCommit, len(commit.Commits))
|
2014-05-06 17:50:31 +02:00
|
|
|
for i, cmt := range commit.Commits {
|
2014-09-17 15:11:51 +02:00
|
|
|
author_username := ""
|
|
|
|
author, err := GetUserByEmail(cmt.AuthorEmail)
|
|
|
|
if err == nil {
|
|
|
|
author_username = author.Name
|
|
|
|
}
|
2014-06-08 10:45:34 +02:00
|
|
|
commits[i] = &PayloadCommit{
|
2014-05-06 17:50:31 +02:00
|
|
|
Id: cmt.Sha1,
|
|
|
|
Message: cmt.Message,
|
2014-05-08 14:18:03 +02:00
|
|
|
Url: fmt.Sprintf("%s/commit/%s", repoLink, cmt.Sha1),
|
2014-06-08 10:45:34 +02:00
|
|
|
Author: &PayloadAuthor{
|
2014-09-17 15:11:51 +02:00
|
|
|
Name: cmt.AuthorName,
|
|
|
|
Email: cmt.AuthorEmail,
|
|
|
|
UserName: author_username,
|
2014-05-06 17:50:31 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2014-06-08 10:45:34 +02:00
|
|
|
p := &Payload{
|
2014-05-06 17:50:31 +02:00
|
|
|
Ref: refFullName,
|
|
|
|
Commits: commits,
|
2014-06-08 10:45:34 +02:00
|
|
|
Repo: &PayloadRepo{
|
2014-05-08 14:18:03 +02:00
|
|
|
Id: repo.Id,
|
|
|
|
Name: repo.LowerName,
|
|
|
|
Url: repoLink,
|
|
|
|
Description: repo.Description,
|
|
|
|
Website: repo.Website,
|
|
|
|
Watchers: repo.NumWatches,
|
2014-06-08 10:45:34 +02:00
|
|
|
Owner: &PayloadAuthor{
|
2014-09-17 15:11:51 +02:00
|
|
|
Name: repo.Owner.GetFullNameFallback(),
|
|
|
|
Email: repo.Owner.Email,
|
|
|
|
UserName: repo.Owner.Name,
|
2014-05-08 14:18:03 +02:00
|
|
|
},
|
|
|
|
Private: repo.IsPrivate,
|
|
|
|
},
|
2014-06-08 10:45:34 +02:00
|
|
|
Pusher: &PayloadAuthor{
|
2014-09-17 15:11:51 +02:00
|
|
|
Name: pusher_name,
|
|
|
|
Email: pusher_email,
|
|
|
|
UserName: userName,
|
2014-05-06 17:50:31 +02:00
|
|
|
},
|
2014-08-26 14:20:18 +02:00
|
|
|
Before: oldCommitId,
|
|
|
|
After: newCommitId,
|
2014-10-11 03:40:51 +02:00
|
|
|
CompareUrl: commit.CompareUrl,
|
2014-05-06 17:50:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, w := range ws {
|
|
|
|
w.GetEvent()
|
|
|
|
if !w.HasPushEvent() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2015-03-18 09:51:02 +01:00
|
|
|
var payload BasePayload
|
2014-08-24 14:59:47 +02:00
|
|
|
switch w.HookTaskType {
|
|
|
|
case SLACK:
|
2015-03-18 09:51:02 +01:00
|
|
|
s, err := GetSlackPayload(p, w.Meta)
|
|
|
|
if err != nil {
|
|
|
|
return errors.New("action.GetSlackPayload: " + err.Error())
|
2014-08-24 14:59:47 +02:00
|
|
|
}
|
2015-03-18 09:51:02 +01:00
|
|
|
payload = s
|
2014-08-24 14:59:47 +02:00
|
|
|
default:
|
2015-03-18 09:51:02 +01:00
|
|
|
payload = p
|
|
|
|
p.Secret = w.Secret
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = CreateHookTask(&HookTask{
|
2015-07-25 15:32:04 +02:00
|
|
|
RepoID: repo.Id,
|
|
|
|
HookID: w.Id,
|
2015-03-18 09:51:02 +01:00
|
|
|
Type: w.HookTaskType,
|
|
|
|
Url: w.Url,
|
|
|
|
BasePayload: payload,
|
|
|
|
ContentType: w.ContentType,
|
|
|
|
EventType: HOOK_EVENT_PUSH,
|
|
|
|
IsSsl: w.IsSsl,
|
|
|
|
}); err != nil {
|
|
|
|
return fmt.Errorf("CreateHookTask: %v", err)
|
2014-08-24 14:59:47 +02:00
|
|
|
}
|
2014-05-06 17:50:31 +02:00
|
|
|
}
|
2014-09-10 14:53:16 +02:00
|
|
|
|
2014-03-20 04:39:00 +01:00
|
|
|
return nil
|
2014-03-16 05:18:34 +01:00
|
|
|
}
|
|
|
|
|
2015-02-13 06:58:46 +01:00
|
|
|
func newRepoAction(e Engine, u *User, repo *Repository) (err error) {
|
|
|
|
if err = notifyWatchers(e, &Action{
|
2015-03-18 02:51:39 +01:00
|
|
|
ActUserID: u.Id,
|
2015-02-13 06:58:46 +01:00
|
|
|
ActUserName: u.Name,
|
|
|
|
ActEmail: u.Email,
|
|
|
|
OpType: CREATE_REPO,
|
2015-03-18 02:51:39 +01:00
|
|
|
RepoID: repo.Id,
|
2015-02-13 06:58:46 +01:00
|
|
|
RepoUserName: repo.Owner.Name,
|
|
|
|
RepoName: repo.Name,
|
2015-03-18 02:51:39 +01:00
|
|
|
IsPrivate: repo.IsPrivate,
|
|
|
|
}); err != nil {
|
2015-02-13 06:58:46 +01:00
|
|
|
return fmt.Errorf("notify watchers '%d/%s'", u.Id, repo.Id)
|
2014-03-27 17:48:29 +01:00
|
|
|
}
|
2014-03-22 11:20:00 +01:00
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
log.Trace("action.NewRepoAction: %s/%s", u.Name, repo.Name)
|
2014-03-13 06:16:14 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-02-13 06:58:46 +01:00
|
|
|
// NewRepoAction adds new action for creating repository.
|
|
|
|
func NewRepoAction(u *User, repo *Repository) (err error) {
|
|
|
|
return newRepoAction(x, u, repo)
|
|
|
|
}
|
|
|
|
|
2015-02-23 08:15:53 +01:00
|
|
|
func transferRepoAction(e Engine, actUser, oldOwner, newOwner *User, repo *Repository) (err error) {
|
2014-09-26 04:36:07 +02:00
|
|
|
action := &Action{
|
2015-03-18 02:51:39 +01:00
|
|
|
ActUserID: actUser.Id,
|
2015-02-23 08:15:53 +01:00
|
|
|
ActUserName: actUser.Name,
|
|
|
|
ActEmail: actUser.Email,
|
2014-09-26 04:36:07 +02:00
|
|
|
OpType: TRANSFER_REPO,
|
2015-03-18 02:51:39 +01:00
|
|
|
RepoID: repo.Id,
|
2015-02-23 08:15:53 +01:00
|
|
|
RepoUserName: newOwner.Name,
|
2014-09-26 04:36:07 +02:00
|
|
|
RepoName: repo.Name,
|
|
|
|
IsPrivate: repo.IsPrivate,
|
2015-02-23 08:15:53 +01:00
|
|
|
Content: path.Join(oldOwner.LowerName, repo.LowerName),
|
2014-09-26 04:36:07 +02:00
|
|
|
}
|
2015-02-13 06:58:46 +01:00
|
|
|
if err = notifyWatchers(e, action); err != nil {
|
2015-02-23 08:15:53 +01:00
|
|
|
return fmt.Errorf("notify watchers '%d/%s'", actUser.Id, repo.Id)
|
2014-04-05 00:31:09 +02:00
|
|
|
}
|
|
|
|
|
2014-09-26 04:42:31 +02:00
|
|
|
// Remove watch for organization.
|
|
|
|
if repo.Owner.IsOrganization() {
|
2015-02-13 06:58:46 +01:00
|
|
|
if err = watchRepo(e, repo.Owner.Id, repo.Id, false); err != nil {
|
|
|
|
return fmt.Errorf("watch repository: %v", err)
|
2014-09-26 04:42:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-23 08:15:53 +01:00
|
|
|
log.Trace("action.TransferRepoAction: %s/%s", actUser.Name, repo.Name)
|
2015-02-13 06:58:46 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// TransferRepoAction adds new action for transferring repository.
|
2015-02-23 08:15:53 +01:00
|
|
|
func TransferRepoAction(actUser, oldOwner, newOwner *User, repo *Repository) (err error) {
|
|
|
|
return transferRepoAction(x, actUser, oldOwner, newOwner, repo)
|
2014-04-05 00:31:09 +02:00
|
|
|
}
|
|
|
|
|
2014-03-15 10:30:59 +01:00
|
|
|
// GetFeeds returns action list of given user in given context.
|
2014-07-27 05:53:16 +02:00
|
|
|
func GetFeeds(uid, offset int64, isProfile bool) ([]*Action, error) {
|
2014-05-09 01:17:43 +02:00
|
|
|
actions := make([]*Action, 0, 20)
|
2014-07-27 05:53:16 +02:00
|
|
|
sess := x.Limit(20, int(offset)).Desc("id").Where("user_id=?", uid)
|
2014-03-15 05:50:51 +01:00
|
|
|
if isProfile {
|
2014-09-30 00:58:04 +02:00
|
|
|
sess.And("is_private=?", false).And("act_user_id=?", uid)
|
2014-03-15 05:50:51 +01:00
|
|
|
}
|
|
|
|
err := sess.Find(&actions)
|
2014-03-13 06:16:14 +01:00
|
|
|
return actions, err
|
|
|
|
}
|