2014-03-13 06:16:14 +01:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2019-05-01 18:21:05 +02:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2014-03-13 06:16:14 +01:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2014-05-06 17:50:31 +02:00
|
|
|
"fmt"
|
2019-05-10 19:48:28 +02:00
|
|
|
"html"
|
2014-07-26 06:24:27 +02:00
|
|
|
"path"
|
2017-06-25 20:20:29 +02:00
|
|
|
"strconv"
|
2014-04-14 04:20:28 +02:00
|
|
|
"strings"
|
2014-03-13 06:16:14 +01:00
|
|
|
"time"
|
2014-03-22 11:20:00 +01:00
|
|
|
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
2019-08-21 07:16:22 +02:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2019-10-14 00:29:10 +02:00
|
|
|
"code.gitea.io/gitea/modules/references"
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-05-11 12:21:34 +02:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2019-08-15 16:46:21 +02:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2017-12-03 03:20:12 +01:00
|
|
|
|
2019-08-23 18:40:30 +02:00
|
|
|
"github.com/unknwon/com"
|
2019-06-23 17:22:43 +02:00
|
|
|
"xorm.io/builder"
|
2014-03-13 06:16:14 +01:00
|
|
|
)
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// ActionType represents the type of an action.
|
2014-07-26 06:24:27 +02:00
|
|
|
type ActionType int
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// Possible action types.
|
2014-03-13 06:16:14 +01:00
|
|
|
const (
|
2019-11-15 00:52:18 +01:00
|
|
|
ActionCreateRepo ActionType = iota + 1 // 1
|
|
|
|
ActionRenameRepo // 2
|
|
|
|
ActionStarRepo // 3
|
|
|
|
ActionWatchRepo // 4
|
|
|
|
ActionCommitRepo // 5
|
|
|
|
ActionCreateIssue // 6
|
|
|
|
ActionCreatePullRequest // 7
|
|
|
|
ActionTransferRepo // 8
|
|
|
|
ActionPushTag // 9
|
|
|
|
ActionCommentIssue // 10
|
|
|
|
ActionMergePullRequest // 11
|
|
|
|
ActionCloseIssue // 12
|
|
|
|
ActionReopenIssue // 13
|
|
|
|
ActionClosePullRequest // 14
|
|
|
|
ActionReopenPullRequest // 15
|
|
|
|
ActionDeleteTag // 16
|
|
|
|
ActionDeleteBranch // 17
|
|
|
|
ActionMirrorSyncPush // 18
|
|
|
|
ActionMirrorSyncCreate // 19
|
|
|
|
ActionMirrorSyncDelete // 20
|
|
|
|
ActionApprovePullRequest // 21
|
|
|
|
ActionRejectPullRequest // 22
|
2014-03-13 06:16:14 +01:00
|
|
|
)
|
|
|
|
|
2016-11-22 11:43:30 +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 {
|
2017-05-26 03:38:18 +02:00
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
UserID int64 `xorm:"INDEX"` // Receiver user id.
|
|
|
|
OpType ActionType
|
|
|
|
ActUserID int64 `xorm:"INDEX"` // Action user id.
|
|
|
|
ActUser *User `xorm:"-"`
|
|
|
|
RepoID int64 `xorm:"INDEX"`
|
|
|
|
Repo *Repository `xorm:"-"`
|
2017-06-25 20:20:29 +02:00
|
|
|
CommentID int64 `xorm:"INDEX"`
|
|
|
|
Comment *Comment `xorm:"-"`
|
|
|
|
IsDeleted bool `xorm:"INDEX NOT NULL DEFAULT false"`
|
2017-05-26 03:38:18 +02:00
|
|
|
RefName string
|
2019-08-15 16:46:21 +02:00
|
|
|
IsPrivate bool `xorm:"INDEX NOT NULL DEFAULT false"`
|
|
|
|
Content string `xorm:"TEXT"`
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
|
2015-08-19 18:12:43 +02:00
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// GetOpType gets the ActionType of this action.
|
2017-09-20 03:22:42 +02:00
|
|
|
func (a *Action) GetOpType() ActionType {
|
|
|
|
return a.OpType
|
2014-03-15 05:50:51 +01:00
|
|
|
}
|
|
|
|
|
2017-05-26 03:38:18 +02:00
|
|
|
func (a *Action) loadActUser() {
|
|
|
|
if a.ActUser != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var err error
|
|
|
|
a.ActUser, err = GetUserByID(a.ActUserID)
|
|
|
|
if err == nil {
|
|
|
|
return
|
|
|
|
} else if IsErrUserNotExist(err) {
|
|
|
|
a.ActUser = NewGhostUser()
|
|
|
|
} else {
|
2019-04-02 09:48:31 +02:00
|
|
|
log.Error("GetUserByID(%d): %v", a.ActUserID, err)
|
2017-05-26 03:38:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Action) loadRepo() {
|
2017-06-14 02:37:50 +02:00
|
|
|
if a.Repo != nil {
|
2017-05-26 03:38:18 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
var err error
|
|
|
|
a.Repo, err = GetRepositoryByID(a.RepoID)
|
|
|
|
if err != nil {
|
2019-04-02 09:48:31 +02:00
|
|
|
log.Error("GetRepositoryByID(%d): %v", a.RepoID, err)
|
2017-05-26 03:38:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-05 19:48:18 +02:00
|
|
|
// GetActFullName gets the action's user full name.
|
|
|
|
func (a *Action) GetActFullName() string {
|
|
|
|
a.loadActUser()
|
|
|
|
return a.ActUser.FullName
|
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// GetActUserName gets the action's user name.
|
2016-01-11 13:41:43 +01:00
|
|
|
func (a *Action) GetActUserName() string {
|
2017-05-26 03:38:18 +02:00
|
|
|
a.loadActUser()
|
|
|
|
return a.ActUser.Name
|
2014-03-15 05:50:51 +01:00
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// ShortActUserName gets the action's user name trimmed to max 20
|
|
|
|
// chars.
|
2016-01-11 13:41:43 +01:00
|
|
|
func (a *Action) ShortActUserName() string {
|
2017-05-26 03:38:18 +02:00
|
|
|
return base.EllipsisString(a.GetActUserName(), 20)
|
2016-01-11 13:41:43 +01:00
|
|
|
}
|
|
|
|
|
2019-05-08 10:41:35 +02:00
|
|
|
// GetDisplayName gets the action's display name based on DEFAULT_SHOW_FULL_NAME
|
|
|
|
func (a *Action) GetDisplayName() string {
|
|
|
|
if setting.UI.DefaultShowFullName {
|
|
|
|
return a.GetActFullName()
|
|
|
|
}
|
|
|
|
return a.ShortActUserName()
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetDisplayNameTitle gets the action's display name used for the title (tooltip) based on DEFAULT_SHOW_FULL_NAME
|
|
|
|
func (a *Action) GetDisplayNameTitle() string {
|
|
|
|
if setting.UI.DefaultShowFullName {
|
|
|
|
return a.ShortActUserName()
|
|
|
|
}
|
|
|
|
return a.GetActFullName()
|
|
|
|
}
|
|
|
|
|
2017-05-27 05:34:11 +02:00
|
|
|
// GetActAvatar the action's user's avatar link
|
|
|
|
func (a *Action) GetActAvatar() string {
|
|
|
|
a.loadActUser()
|
2017-10-31 09:08:23 +01:00
|
|
|
return a.ActUser.RelAvatarLink()
|
2017-05-27 05:34:11 +02:00
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// GetRepoUserName returns the name of the action repository owner.
|
2016-01-11 13:41:43 +01:00
|
|
|
func (a *Action) GetRepoUserName() string {
|
2017-05-26 03:38:18 +02:00
|
|
|
a.loadRepo()
|
|
|
|
return a.Repo.MustOwner().Name
|
2014-05-09 08:42:50 +02:00
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// ShortRepoUserName returns the name of the action repository owner
|
|
|
|
// trimmed to max 20 chars.
|
2016-01-11 13:41:43 +01:00
|
|
|
func (a *Action) ShortRepoUserName() string {
|
2017-05-26 03:38:18 +02:00
|
|
|
return base.EllipsisString(a.GetRepoUserName(), 20)
|
2016-01-11 13:41:43 +01:00
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// GetRepoName returns the name of the action repository.
|
2016-01-11 13:41:43 +01:00
|
|
|
func (a *Action) GetRepoName() string {
|
2017-05-26 03:38:18 +02:00
|
|
|
a.loadRepo()
|
|
|
|
return a.Repo.Name
|
2014-03-13 06:16:14 +01:00
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// ShortRepoName returns the name of the action repository
|
|
|
|
// trimmed to max 33 chars.
|
2016-01-11 13:41:43 +01:00
|
|
|
func (a *Action) ShortRepoName() string {
|
2017-05-26 03:38:18 +02:00
|
|
|
return base.EllipsisString(a.GetRepoName(), 33)
|
2016-01-11 13:41:43 +01:00
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// GetRepoPath returns the virtual path to the action repository.
|
2016-01-11 13:41:43 +01:00
|
|
|
func (a *Action) GetRepoPath() string {
|
2017-05-26 03:38:18 +02:00
|
|
|
return path.Join(a.GetRepoUserName(), a.GetRepoName())
|
2016-01-15 11:00:39 +01:00
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// ShortRepoPath returns the virtual path to the action repository
|
2017-01-05 01:50:34 +01:00
|
|
|
// trimmed to max 20 + 1 + 33 chars.
|
2016-01-15 11:00:39 +01:00
|
|
|
func (a *Action) ShortRepoPath() string {
|
2016-01-11 13:41:43 +01:00
|
|
|
return path.Join(a.ShortRepoUserName(), a.ShortRepoName())
|
2015-03-12 21:01:23 +01:00
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// GetRepoLink returns relative link to action repository.
|
2016-01-11 13:41:43 +01:00
|
|
|
func (a *Action) GetRepoLink() string {
|
2016-11-27 11:14:25 +01:00
|
|
|
if len(setting.AppSubURL) > 0 {
|
|
|
|
return path.Join(setting.AppSubURL, a.GetRepoPath())
|
2015-03-12 21:01:23 +01:00
|
|
|
}
|
|
|
|
return "/" + a.GetRepoPath()
|
2014-07-26 06:24:27 +02:00
|
|
|
}
|
|
|
|
|
2019-05-01 18:21:05 +02:00
|
|
|
// GetRepositoryFromMatch returns a *Repository from a username and repo strings
|
|
|
|
func GetRepositoryFromMatch(ownerName string, repoName string) (*Repository, error) {
|
|
|
|
var err error
|
|
|
|
refRepo, err := GetRepositoryByOwnerAndName(ownerName, repoName)
|
|
|
|
if err != nil {
|
|
|
|
if IsErrRepoNotExist(err) {
|
|
|
|
log.Warn("Repository referenced in commit but does not exist: %v", err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
log.Error("GetRepositoryByOwnerAndName: %v", err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return refRepo, nil
|
|
|
|
}
|
|
|
|
|
2017-06-25 20:20:29 +02:00
|
|
|
// GetCommentLink returns link to action comment.
|
|
|
|
func (a *Action) GetCommentLink() string {
|
2018-12-13 16:55:43 +01:00
|
|
|
return a.getCommentLink(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Action) getCommentLink(e Engine) string {
|
2017-06-25 20:20:29 +02:00
|
|
|
if a == nil {
|
|
|
|
return "#"
|
|
|
|
}
|
|
|
|
if a.Comment == nil && a.CommentID != 0 {
|
|
|
|
a.Comment, _ = GetCommentByID(a.CommentID)
|
|
|
|
}
|
|
|
|
if a.Comment != nil {
|
|
|
|
return a.Comment.HTMLURL()
|
|
|
|
}
|
|
|
|
if len(a.GetIssueInfos()) == 0 {
|
|
|
|
return "#"
|
|
|
|
}
|
|
|
|
//Return link to issue
|
|
|
|
issueIDString := a.GetIssueInfos()[0]
|
|
|
|
issueID, err := strconv.ParseInt(issueIDString, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return "#"
|
|
|
|
}
|
|
|
|
|
2018-12-13 16:55:43 +01:00
|
|
|
issue, err := getIssueByID(e, issueID)
|
2017-06-25 20:20:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return "#"
|
|
|
|
}
|
|
|
|
|
2018-12-13 16:55:43 +01:00
|
|
|
if err = issue.loadRepo(e); err != nil {
|
|
|
|
return "#"
|
|
|
|
}
|
|
|
|
|
2017-06-25 20:20:29 +02:00
|
|
|
return issue.HTMLURL()
|
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// GetBranch returns the action's repository branch.
|
2016-01-11 13:41:43 +01:00
|
|
|
func (a *Action) GetBranch() string {
|
2014-03-23 11:27:01 +01:00
|
|
|
return a.RefName
|
2014-03-16 16:30:35 +01:00
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// GetContent returns the action's content.
|
2016-01-11 13:41:43 +01:00
|
|
|
func (a *Action) GetContent() string {
|
2014-03-23 11:27:01 +01:00
|
|
|
return a.Content
|
2014-03-23 11:00:09 +01:00
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// GetCreate returns the action creation time.
|
2016-01-11 13:41:43 +01:00
|
|
|
func (a *Action) GetCreate() time.Time {
|
2017-12-11 05:37:04 +01:00
|
|
|
return a.CreatedUnix.AsTime()
|
2014-07-26 06:24:27 +02:00
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// GetIssueInfos returns a list of issues associated with
|
|
|
|
// the action.
|
2016-01-11 13:41:43 +01:00
|
|
|
func (a *Action) GetIssueInfos() []string {
|
2014-07-26 06:24:27 +02:00
|
|
|
return strings.SplitN(a.Content, "|", 2)
|
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// GetIssueTitle returns the title of first issue associated
|
|
|
|
// with the action.
|
2016-01-11 13:41:43 +01:00
|
|
|
func (a *Action) GetIssueTitle() string {
|
2015-11-13 16:05:50 +01:00
|
|
|
index := com.StrTo(a.GetIssueInfos()[0]).MustInt64()
|
|
|
|
issue, err := GetIssueByIndex(a.RepoID, index)
|
2015-11-12 22:16:51 +01:00
|
|
|
if err != nil {
|
2019-04-02 09:48:31 +02:00
|
|
|
log.Error("GetIssueByIndex: %v", err)
|
2015-11-13 18:11:45 +01:00
|
|
|
return "500 when get issue"
|
2015-11-12 22:16:51 +01:00
|
|
|
}
|
2016-08-14 12:32:24 +02:00
|
|
|
return issue.Title
|
2015-11-12 21:09:48 +01:00
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// GetIssueContent returns the content of first issue associated with
|
|
|
|
// this action.
|
2016-01-11 13:41:43 +01:00
|
|
|
func (a *Action) GetIssueContent() string {
|
2015-11-13 18:11:45 +01:00
|
|
|
index := com.StrTo(a.GetIssueInfos()[0]).MustInt64()
|
|
|
|
issue, err := GetIssueByIndex(a.RepoID, index)
|
|
|
|
if err != nil {
|
2019-04-02 09:48:31 +02:00
|
|
|
log.Error("GetIssueByIndex: %v", err)
|
2015-11-13 18:11:45 +01:00
|
|
|
return "500 when get issue"
|
|
|
|
}
|
|
|
|
return issue.Content
|
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// PushCommit represents a commit in a push operation.
|
2015-11-13 23:10:25 +01:00
|
|
|
type PushCommit struct {
|
2016-08-10 07:01:57 +02:00
|
|
|
Sha1 string
|
|
|
|
Message string
|
|
|
|
AuthorEmail string
|
|
|
|
AuthorName string
|
|
|
|
CommitterEmail string
|
|
|
|
CommitterName string
|
|
|
|
Timestamp time.Time
|
2015-11-13 23:10:25 +01:00
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// PushCommits represents list of commits in a push operation.
|
2015-11-13 23:10:25 +01:00
|
|
|
type PushCommits struct {
|
|
|
|
Len int
|
|
|
|
Commits []*PushCommit
|
2016-08-14 13:17:26 +02:00
|
|
|
CompareURL string
|
2015-11-13 23:10:25 +01:00
|
|
|
|
2018-12-13 16:55:43 +01:00
|
|
|
avatars map[string]string
|
|
|
|
emailUsers map[string]*User
|
2015-11-13 23:10:25 +01:00
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// NewPushCommits creates a new PushCommits object.
|
2015-11-13 23:10:25 +01:00
|
|
|
func NewPushCommits() *PushCommits {
|
|
|
|
return &PushCommits{
|
2018-12-13 16:55:43 +01:00
|
|
|
avatars: make(map[string]string),
|
|
|
|
emailUsers: make(map[string]*User),
|
2015-11-13 23:10:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
// ToAPIPayloadCommits converts a PushCommits object to
|
|
|
|
// api.PayloadCommit format.
|
2019-08-21 07:16:22 +02:00
|
|
|
func (pc *PushCommits) ToAPIPayloadCommits(repoPath, repoLink string) ([]*api.PayloadCommit, error) {
|
2015-12-10 02:46:05 +01:00
|
|
|
commits := make([]*api.PayloadCommit, len(pc.Commits))
|
2018-12-13 16:55:43 +01:00
|
|
|
|
|
|
|
if pc.emailUsers == nil {
|
|
|
|
pc.emailUsers = make(map[string]*User)
|
|
|
|
}
|
|
|
|
var err error
|
2016-08-10 03:28:06 +02:00
|
|
|
for i, commit := range pc.Commits {
|
|
|
|
authorUsername := ""
|
2018-12-13 16:55:43 +01:00
|
|
|
author, ok := pc.emailUsers[commit.AuthorEmail]
|
|
|
|
if !ok {
|
|
|
|
author, err = GetUserByEmail(commit.AuthorEmail)
|
|
|
|
if err == nil {
|
|
|
|
authorUsername = author.Name
|
|
|
|
pc.emailUsers[commit.AuthorEmail] = author
|
|
|
|
}
|
|
|
|
} else {
|
2016-08-10 03:28:06 +02:00
|
|
|
authorUsername = author.Name
|
2015-12-10 02:46:05 +01:00
|
|
|
}
|
2018-12-13 16:55:43 +01:00
|
|
|
|
2016-08-10 07:01:57 +02:00
|
|
|
committerUsername := ""
|
2018-12-13 16:55:43 +01:00
|
|
|
committer, ok := pc.emailUsers[commit.CommitterEmail]
|
|
|
|
if !ok {
|
|
|
|
committer, err = GetUserByEmail(commit.CommitterEmail)
|
|
|
|
if err == nil {
|
|
|
|
// TODO: check errors other than email not found.
|
|
|
|
committerUsername = committer.Name
|
|
|
|
pc.emailUsers[commit.CommitterEmail] = committer
|
|
|
|
}
|
|
|
|
} else {
|
2016-08-10 07:01:57 +02:00
|
|
|
committerUsername = committer.Name
|
|
|
|
}
|
2019-08-21 07:16:22 +02:00
|
|
|
|
|
|
|
fileStatus, err := git.GetCommitFileStatus(repoPath, commit.Sha1)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("FileStatus [commit_sha1: %s]: %v", commit.Sha1, err)
|
|
|
|
}
|
|
|
|
|
2015-12-10 02:46:05 +01:00
|
|
|
commits[i] = &api.PayloadCommit{
|
2016-08-10 03:28:06 +02:00
|
|
|
ID: commit.Sha1,
|
|
|
|
Message: commit.Message,
|
|
|
|
URL: fmt.Sprintf("%s/commit/%s", repoLink, commit.Sha1),
|
2016-08-14 13:17:26 +02:00
|
|
|
Author: &api.PayloadUser{
|
2016-08-10 03:28:06 +02:00
|
|
|
Name: commit.AuthorName,
|
|
|
|
Email: commit.AuthorEmail,
|
|
|
|
UserName: authorUsername,
|
2015-12-10 02:46:05 +01:00
|
|
|
},
|
2016-08-14 13:17:26 +02:00
|
|
|
Committer: &api.PayloadUser{
|
2016-08-10 07:01:57 +02:00
|
|
|
Name: commit.CommitterName,
|
|
|
|
Email: commit.CommitterEmail,
|
|
|
|
UserName: committerUsername,
|
|
|
|
},
|
2019-08-21 07:16:22 +02:00
|
|
|
Added: fileStatus.Added,
|
|
|
|
Removed: fileStatus.Removed,
|
|
|
|
Modified: fileStatus.Modified,
|
2016-08-10 03:28:06 +02:00
|
|
|
Timestamp: commit.Timestamp,
|
2015-12-10 02:46:05 +01:00
|
|
|
}
|
|
|
|
}
|
2019-08-21 07:16:22 +02:00
|
|
|
return commits, nil
|
2015-12-10 02:46:05 +01:00
|
|
|
}
|
|
|
|
|
2015-11-13 23:10:25 +01:00
|
|
|
// AvatarLink tries to match user in database with e-mail
|
|
|
|
// in order to show custom avatar, and falls back to general avatar link.
|
2016-11-22 11:43:30 +01:00
|
|
|
func (pc *PushCommits) AvatarLink(email string) string {
|
2019-07-30 03:59:10 +02:00
|
|
|
if pc.avatars == nil {
|
|
|
|
pc.avatars = make(map[string]string)
|
|
|
|
}
|
2018-12-13 16:55:43 +01:00
|
|
|
avatar, ok := pc.avatars[email]
|
|
|
|
if ok {
|
|
|
|
return avatar
|
|
|
|
}
|
|
|
|
|
|
|
|
u, ok := pc.emailUsers[email]
|
2015-11-13 23:10:25 +01:00
|
|
|
if !ok {
|
2018-12-13 16:55:43 +01:00
|
|
|
var err error
|
|
|
|
u, err = GetUserByEmail(email)
|
2015-11-13 23:10:25 +01:00
|
|
|
if err != nil {
|
2016-11-22 11:43:30 +01:00
|
|
|
pc.avatars[email] = base.AvatarLink(email)
|
2015-11-13 23:10:25 +01:00
|
|
|
if !IsErrUserNotExist(err) {
|
2019-04-02 09:48:31 +02:00
|
|
|
log.Error("GetUserByEmail: %v", err)
|
2018-12-13 16:55:43 +01:00
|
|
|
return ""
|
2015-11-13 23:10:25 +01:00
|
|
|
}
|
|
|
|
} else {
|
2018-12-13 16:55:43 +01:00
|
|
|
pc.emailUsers[email] = u
|
2015-11-13 23:10:25 +01:00
|
|
|
}
|
|
|
|
}
|
2018-12-13 16:55:43 +01:00
|
|
|
if u != nil {
|
|
|
|
pc.avatars[email] = u.RelAvatarLink()
|
|
|
|
}
|
2015-11-13 23:10:25 +01:00
|
|
|
|
2016-11-22 11:43:30 +01:00
|
|
|
return pc.avatars[email]
|
2015-11-13 23:10:25 +01:00
|
|
|
}
|
|
|
|
|
2017-12-03 03:20:12 +01:00
|
|
|
// getIssueFromRef returns the issue referenced by a ref. Returns a nil *Issue
|
2019-10-14 00:29:10 +02:00
|
|
|
// if the provided ref references a non-existent issue.
|
|
|
|
func getIssueFromRef(repo *Repository, index int64) (*Issue, error) {
|
|
|
|
issue, err := GetIssueByIndex(repo.ID, index)
|
2017-12-03 03:20:12 +01:00
|
|
|
if err != nil {
|
|
|
|
if IsErrIssueNotExist(err) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return issue, nil
|
|
|
|
}
|
|
|
|
|
2019-10-14 00:29:10 +02:00
|
|
|
func changeIssueStatus(repo *Repository, issue *Issue, doer *User, status bool) error {
|
2019-01-04 10:22:58 +01:00
|
|
|
|
2019-02-05 12:38:11 +01:00
|
|
|
stopTimerIfAvailable := func(doer *User, issue *Issue) error {
|
|
|
|
|
|
|
|
if StopwatchExists(doer.ID, issue.ID) {
|
|
|
|
if err := CreateOrStopIssueStopwatch(doer, issue); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-01-04 10:22:58 +01:00
|
|
|
issue.Repo = repo
|
2019-10-14 00:29:10 +02:00
|
|
|
if err := issue.ChangeStatus(doer, status); err != nil {
|
2019-01-04 10:22:58 +01:00
|
|
|
// Don't return an error when dependencies are open as this would let the push fail
|
|
|
|
if IsErrDependenciesLeft(err) {
|
2019-02-05 12:38:11 +01:00
|
|
|
return stopTimerIfAvailable(doer, issue)
|
2019-01-04 10:22:58 +01:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
2019-02-05 12:38:11 +01:00
|
|
|
|
|
|
|
return stopTimerIfAvailable(doer, issue)
|
2019-01-04 10:22:58 +01:00
|
|
|
}
|
|
|
|
|
2016-08-17 08:06:38 +02:00
|
|
|
// UpdateIssuesCommit checks if issues are manipulated by commit message.
|
2019-01-04 10:22:58 +01:00
|
|
|
func UpdateIssuesCommit(doer *User, repo *Repository, commits []*PushCommit, branchName string) error {
|
2015-09-26 02:35:56 +02:00
|
|
|
// Commits are appended in the reverse order.
|
|
|
|
for i := len(commits) - 1; i >= 0; i-- {
|
|
|
|
c := commits[i]
|
|
|
|
|
2019-10-14 00:29:10 +02:00
|
|
|
type markKey struct {
|
|
|
|
ID int64
|
|
|
|
Action references.XRefAction
|
|
|
|
}
|
|
|
|
|
|
|
|
refMarked := make(map[markKey]bool)
|
2019-05-01 18:21:05 +02:00
|
|
|
var refRepo *Repository
|
2019-10-14 00:29:10 +02:00
|
|
|
var refIssue *Issue
|
2019-05-01 18:21:05 +02:00
|
|
|
var err error
|
2019-10-14 00:29:10 +02:00
|
|
|
for _, ref := range references.FindAllIssueReferences(c.Message) {
|
2019-05-01 18:21:05 +02:00
|
|
|
|
|
|
|
// issue is from another repo
|
2019-10-14 00:29:10 +02:00
|
|
|
if len(ref.Owner) > 0 && len(ref.Name) > 0 {
|
|
|
|
refRepo, err = GetRepositoryFromMatch(ref.Owner, ref.Name)
|
2019-05-01 18:21:05 +02:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
refRepo = repo
|
|
|
|
}
|
2019-10-14 00:29:10 +02:00
|
|
|
if refIssue, err = getIssueFromRef(refRepo, ref.Index); err != nil {
|
2014-07-23 13:48:06 +02:00
|
|
|
return err
|
|
|
|
}
|
2019-10-14 00:29:10 +02:00
|
|
|
if refIssue == nil {
|
2015-09-03 10:34:08 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-10-14 00:29:10 +02:00
|
|
|
perm, err := GetUserRepoPermission(refRepo, doer)
|
|
|
|
if err != nil {
|
2014-07-23 13:48:06 +02:00
|
|
|
return err
|
|
|
|
}
|
2015-02-02 16:34:07 +01:00
|
|
|
|
2019-10-14 00:29:10 +02:00
|
|
|
key := markKey{ID: refIssue.ID, Action: ref.Action}
|
|
|
|
if refMarked[key] {
|
2019-05-01 18:21:05 +02:00
|
|
|
continue
|
|
|
|
}
|
2019-10-14 00:29:10 +02:00
|
|
|
refMarked[key] = true
|
2019-05-01 18:21:05 +02:00
|
|
|
|
2019-11-15 16:20:47 +01:00
|
|
|
// FIXME: this kind of condition is all over the code, it should be consolidated in a single place
|
|
|
|
canclose := perm.IsAdmin() || perm.IsOwner() || perm.CanWrite(UnitTypeIssues) || refIssue.PosterID == doer.ID
|
|
|
|
cancomment := canclose || perm.CanRead(UnitTypeIssues)
|
|
|
|
|
|
|
|
// Don't proceed if the user can't comment
|
|
|
|
if !cancomment {
|
|
|
|
continue
|
2019-05-01 18:21:05 +02:00
|
|
|
}
|
2015-02-07 02:34:49 +01:00
|
|
|
|
2019-11-15 16:20:47 +01:00
|
|
|
message := fmt.Sprintf(`<a href="%s/commit/%s">%s</a>`, repo.Link(), c.Sha1, html.EscapeString(c.Message))
|
|
|
|
if err = CreateRefComment(doer, refRepo, refIssue, message, c.Sha1); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only issues can be closed/reopened this way, and user needs the correct permissions
|
|
|
|
if refIssue.IsPull || !canclose {
|
2019-05-01 18:21:05 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-11-15 16:20:47 +01:00
|
|
|
// Only process closing/reopening keywords
|
|
|
|
if ref.Action != references.XRefActionCloses && ref.Action != references.XRefActionReopens {
|
2019-10-14 00:29:10 +02:00
|
|
|
continue
|
2015-02-07 02:47:21 +01:00
|
|
|
}
|
2019-05-01 18:21:05 +02:00
|
|
|
|
2019-11-15 16:20:47 +01:00
|
|
|
if !repo.CloseIssuesViaCommitInAnyBranch {
|
|
|
|
// If the issue was specified to be in a particular branch, don't allow commits in other branches to close it
|
|
|
|
if refIssue.Ref != "" {
|
|
|
|
if branchName != refIssue.Ref {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// Otherwise, only process commits to the default branch
|
|
|
|
} else if branchName != repo.DefaultBranch {
|
|
|
|
continue
|
2019-05-01 18:21:05 +02:00
|
|
|
}
|
|
|
|
}
|
2019-11-15 16:20:47 +01:00
|
|
|
|
|
|
|
if err := changeIssueStatus(refRepo, refIssue, doer, ref.Action == references.XRefActionCloses); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-02-07 02:47:21 +01:00
|
|
|
}
|
|
|
|
}
|
2014-07-23 13:48:06 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-06-02 02:42:25 +02:00
|
|
|
// GetFeedsOptions options for retrieving feeds
|
|
|
|
type GetFeedsOptions struct {
|
|
|
|
RequestedUser *User
|
|
|
|
RequestingUserID int64
|
|
|
|
IncludePrivate bool // include private actions
|
|
|
|
OnlyPerformedBy bool // only actions performed by requested user
|
2017-06-25 20:20:29 +02:00
|
|
|
IncludeDeleted bool // include deleted actions
|
2017-06-02 02:42:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetFeeds returns actions according to the provided options
|
|
|
|
func GetFeeds(opts GetFeedsOptions) ([]*Action, error) {
|
2017-08-23 03:30:54 +02:00
|
|
|
cond := builder.NewCond()
|
|
|
|
|
2017-06-02 02:42:25 +02:00
|
|
|
var repoIDs []int64
|
|
|
|
if opts.RequestedUser.IsOrganization() {
|
|
|
|
env, err := opts.RequestedUser.AccessibleReposEnv(opts.RequestingUserID)
|
2016-07-24 08:32:46 +02:00
|
|
|
if err != nil {
|
2017-01-25 16:41:38 +01:00
|
|
|
return nil, fmt.Errorf("AccessibleReposEnv: %v", err)
|
2016-02-06 08:52:21 +01:00
|
|
|
}
|
2017-06-02 02:42:25 +02:00
|
|
|
if repoIDs, err = env.RepoIDs(1, opts.RequestedUser.NumRepos); err != nil {
|
2017-01-25 16:41:38 +01:00
|
|
|
return nil, fmt.Errorf("GetUserRepositories: %v", err)
|
2016-02-06 08:52:21 +01:00
|
|
|
}
|
2017-08-23 03:30:54 +02:00
|
|
|
|
|
|
|
cond = cond.And(builder.In("repo_id", repoIDs))
|
|
|
|
}
|
|
|
|
|
2017-08-28 04:26:04 +02:00
|
|
|
cond = cond.And(builder.Eq{"user_id": opts.RequestedUser.ID})
|
2016-02-06 08:52:21 +01:00
|
|
|
|
2017-06-02 02:42:25 +02:00
|
|
|
if opts.OnlyPerformedBy {
|
2017-08-23 03:30:54 +02:00
|
|
|
cond = cond.And(builder.Eq{"act_user_id": opts.RequestedUser.ID})
|
2017-06-02 02:42:25 +02:00
|
|
|
}
|
|
|
|
if !opts.IncludePrivate {
|
2017-08-23 03:30:54 +02:00
|
|
|
cond = cond.And(builder.Eq{"is_private": false})
|
2017-06-02 02:42:25 +02:00
|
|
|
}
|
2017-06-25 20:20:29 +02:00
|
|
|
|
|
|
|
if !opts.IncludeDeleted {
|
2017-08-23 03:30:54 +02:00
|
|
|
cond = cond.And(builder.Eq{"is_deleted": false})
|
2017-06-25 20:20:29 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 03:30:54 +02:00
|
|
|
actions := make([]*Action, 0, 20)
|
2018-02-21 11:55:34 +01:00
|
|
|
|
|
|
|
if err := x.Limit(20).Desc("id").Where(cond).Find(&actions); err != nil {
|
|
|
|
return nil, fmt.Errorf("Find: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ActionList(actions).LoadAttributes(); err != nil {
|
|
|
|
return nil, fmt.Errorf("LoadAttributes: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return actions, nil
|
2014-03-13 06:16:14 +01:00
|
|
|
}
|