2014-03-12 23:16:14 -06:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2019-05-01 10:21:05 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2014-03-12 23:16:14 -06: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 09:50:31 -06:00
|
|
|
"fmt"
|
2014-07-25 22:24:27 -06:00
|
|
|
"path"
|
2017-06-25 12:20:29 -06:00
|
|
|
"strconv"
|
2014-04-13 20:20:28 -06:00
|
|
|
"strings"
|
2014-03-12 23:16:14 -06:00
|
|
|
"time"
|
2014-03-22 04:20:00 -06:00
|
|
|
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-08-15 08:46:21 -06:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2017-12-02 19:20:12 -07:00
|
|
|
|
2019-08-23 10:40:30 -06:00
|
|
|
"github.com/unknwon/com"
|
2019-06-23 09:22:43 -06:00
|
|
|
"xorm.io/builder"
|
2014-03-12 23:16:14 -06:00
|
|
|
)
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// ActionType represents the type of an action.
|
2014-07-25 22:24:27 -06:00
|
|
|
type ActionType int
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// Possible action types.
|
2014-03-12 23:16:14 -06:00
|
|
|
const (
|
2019-11-14 16:52:18 -07: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
|
2019-12-22 01:29:26 -07:00
|
|
|
ActionCommentPull // 23
|
2014-03-12 23:16:14 -06:00
|
|
|
)
|
|
|
|
|
2016-11-22 03:43:30 -07: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-12 23:16:14 -06:00
|
|
|
type Action struct {
|
2017-05-25 19:38:18 -06: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 12:20:29 -06:00
|
|
|
CommentID int64 `xorm:"INDEX"`
|
|
|
|
Comment *Comment `xorm:"-"`
|
|
|
|
IsDeleted bool `xorm:"INDEX NOT NULL DEFAULT false"`
|
2017-05-25 19:38:18 -06:00
|
|
|
RefName string
|
2019-08-15 08:46:21 -06:00
|
|
|
IsPrivate bool `xorm:"INDEX NOT NULL DEFAULT false"`
|
|
|
|
Content string `xorm:"TEXT"`
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
|
2015-08-19 10:12:43 -06:00
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// GetOpType gets the ActionType of this action.
|
2017-09-19 19:22:42 -06:00
|
|
|
func (a *Action) GetOpType() ActionType {
|
|
|
|
return a.OpType
|
2014-03-14 22:50:51 -06:00
|
|
|
}
|
|
|
|
|
2017-05-25 19:38:18 -06: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 01:48:31 -06:00
|
|
|
log.Error("GetUserByID(%d): %v", a.ActUserID, err)
|
2017-05-25 19:38:18 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Action) loadRepo() {
|
2017-06-13 18:37:50 -06:00
|
|
|
if a.Repo != nil {
|
2017-05-25 19:38:18 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
var err error
|
|
|
|
a.Repo, err = GetRepositoryByID(a.RepoID)
|
|
|
|
if err != nil {
|
2019-04-02 01:48:31 -06:00
|
|
|
log.Error("GetRepositoryByID(%d): %v", a.RepoID, err)
|
2017-05-25 19:38:18 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-05 11:48:18 -06:00
|
|
|
// GetActFullName gets the action's user full name.
|
|
|
|
func (a *Action) GetActFullName() string {
|
|
|
|
a.loadActUser()
|
|
|
|
return a.ActUser.FullName
|
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// GetActUserName gets the action's user name.
|
2016-01-11 05:41:43 -07:00
|
|
|
func (a *Action) GetActUserName() string {
|
2017-05-25 19:38:18 -06:00
|
|
|
a.loadActUser()
|
|
|
|
return a.ActUser.Name
|
2014-03-14 22:50:51 -06:00
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// ShortActUserName gets the action's user name trimmed to max 20
|
|
|
|
// chars.
|
2016-01-11 05:41:43 -07:00
|
|
|
func (a *Action) ShortActUserName() string {
|
2017-05-25 19:38:18 -06:00
|
|
|
return base.EllipsisString(a.GetActUserName(), 20)
|
2016-01-11 05:41:43 -07:00
|
|
|
}
|
|
|
|
|
2020-02-26 15:08:24 -07:00
|
|
|
// GetDisplayName gets the action's display name based on DEFAULT_SHOW_FULL_NAME, or falls back to the username if it is blank.
|
2019-05-08 02:41:35 -06:00
|
|
|
func (a *Action) GetDisplayName() string {
|
|
|
|
if setting.UI.DefaultShowFullName {
|
2020-02-26 15:08:24 -07:00
|
|
|
trimmedFullName := strings.TrimSpace(a.GetActFullName())
|
|
|
|
if len(trimmedFullName) > 0 {
|
|
|
|
return trimmedFullName
|
|
|
|
}
|
2019-05-08 02:41:35 -06:00
|
|
|
}
|
|
|
|
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-26 21:34:11 -06:00
|
|
|
// GetActAvatar the action's user's avatar link
|
|
|
|
func (a *Action) GetActAvatar() string {
|
|
|
|
a.loadActUser()
|
2017-10-31 02:08:23 -06:00
|
|
|
return a.ActUser.RelAvatarLink()
|
2017-05-26 21:34:11 -06:00
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// GetRepoUserName returns the name of the action repository owner.
|
2016-01-11 05:41:43 -07:00
|
|
|
func (a *Action) GetRepoUserName() string {
|
2017-05-25 19:38:18 -06:00
|
|
|
a.loadRepo()
|
2020-01-12 02:36:21 -07:00
|
|
|
return a.Repo.OwnerName
|
2014-05-09 00:42:50 -06:00
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// ShortRepoUserName returns the name of the action repository owner
|
|
|
|
// trimmed to max 20 chars.
|
2016-01-11 05:41:43 -07:00
|
|
|
func (a *Action) ShortRepoUserName() string {
|
2017-05-25 19:38:18 -06:00
|
|
|
return base.EllipsisString(a.GetRepoUserName(), 20)
|
2016-01-11 05:41:43 -07:00
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// GetRepoName returns the name of the action repository.
|
2016-01-11 05:41:43 -07:00
|
|
|
func (a *Action) GetRepoName() string {
|
2017-05-25 19:38:18 -06:00
|
|
|
a.loadRepo()
|
|
|
|
return a.Repo.Name
|
2014-03-12 23:16:14 -06:00
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// ShortRepoName returns the name of the action repository
|
|
|
|
// trimmed to max 33 chars.
|
2016-01-11 05:41:43 -07:00
|
|
|
func (a *Action) ShortRepoName() string {
|
2017-05-25 19:38:18 -06:00
|
|
|
return base.EllipsisString(a.GetRepoName(), 33)
|
2016-01-11 05:41:43 -07:00
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// GetRepoPath returns the virtual path to the action repository.
|
2016-01-11 05:41:43 -07:00
|
|
|
func (a *Action) GetRepoPath() string {
|
2017-05-25 19:38:18 -06:00
|
|
|
return path.Join(a.GetRepoUserName(), a.GetRepoName())
|
2016-01-15 03:00:39 -07:00
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// ShortRepoPath returns the virtual path to the action repository
|
2017-01-04 17:50:34 -07:00
|
|
|
// trimmed to max 20 + 1 + 33 chars.
|
2016-01-15 03:00:39 -07:00
|
|
|
func (a *Action) ShortRepoPath() string {
|
2016-01-11 05:41:43 -07:00
|
|
|
return path.Join(a.ShortRepoUserName(), a.ShortRepoName())
|
2015-03-12 14:01:23 -06:00
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// GetRepoLink returns relative link to action repository.
|
2016-01-11 05:41:43 -07:00
|
|
|
func (a *Action) GetRepoLink() string {
|
2016-11-27 03:14:25 -07:00
|
|
|
if len(setting.AppSubURL) > 0 {
|
|
|
|
return path.Join(setting.AppSubURL, a.GetRepoPath())
|
2015-03-12 14:01:23 -06:00
|
|
|
}
|
|
|
|
return "/" + a.GetRepoPath()
|
2014-07-25 22:24:27 -06:00
|
|
|
}
|
|
|
|
|
2019-05-01 10:21:05 -06: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 12:20:29 -06:00
|
|
|
// GetCommentLink returns link to action comment.
|
|
|
|
func (a *Action) GetCommentLink() string {
|
2018-12-13 08:55:43 -07:00
|
|
|
return a.getCommentLink(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Action) getCommentLink(e Engine) string {
|
2017-06-25 12:20:29 -06:00
|
|
|
if a == nil {
|
|
|
|
return "#"
|
|
|
|
}
|
|
|
|
if a.Comment == nil && a.CommentID != 0 {
|
2020-02-27 16:10:27 -07:00
|
|
|
a.Comment, _ = getCommentByID(e, a.CommentID)
|
2017-06-25 12:20:29 -06:00
|
|
|
}
|
|
|
|
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 08:55:43 -07:00
|
|
|
issue, err := getIssueByID(e, issueID)
|
2017-06-25 12:20:29 -06:00
|
|
|
if err != nil {
|
|
|
|
return "#"
|
|
|
|
}
|
|
|
|
|
2018-12-13 08:55:43 -07:00
|
|
|
if err = issue.loadRepo(e); err != nil {
|
|
|
|
return "#"
|
|
|
|
}
|
|
|
|
|
2017-06-25 12:20:29 -06:00
|
|
|
return issue.HTMLURL()
|
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// GetBranch returns the action's repository branch.
|
2016-01-11 05:41:43 -07:00
|
|
|
func (a *Action) GetBranch() string {
|
2014-03-23 04:27:01 -06:00
|
|
|
return a.RefName
|
2014-03-16 09:30:35 -06:00
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// GetContent returns the action's content.
|
2016-01-11 05:41:43 -07:00
|
|
|
func (a *Action) GetContent() string {
|
2014-03-23 04:27:01 -06:00
|
|
|
return a.Content
|
2014-03-23 04:00:09 -06:00
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// GetCreate returns the action creation time.
|
2016-01-11 05:41:43 -07:00
|
|
|
func (a *Action) GetCreate() time.Time {
|
2017-12-10 21:37:04 -07:00
|
|
|
return a.CreatedUnix.AsTime()
|
2014-07-25 22:24:27 -06:00
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// GetIssueInfos returns a list of issues associated with
|
|
|
|
// the action.
|
2016-01-11 05:41:43 -07:00
|
|
|
func (a *Action) GetIssueInfos() []string {
|
2014-07-25 22:24:27 -06:00
|
|
|
return strings.SplitN(a.Content, "|", 2)
|
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// GetIssueTitle returns the title of first issue associated
|
|
|
|
// with the action.
|
2016-01-11 05:41:43 -07:00
|
|
|
func (a *Action) GetIssueTitle() string {
|
2015-11-13 08:05:50 -07:00
|
|
|
index := com.StrTo(a.GetIssueInfos()[0]).MustInt64()
|
|
|
|
issue, err := GetIssueByIndex(a.RepoID, index)
|
2015-11-12 14:16:51 -07:00
|
|
|
if err != nil {
|
2019-04-02 01:48:31 -06:00
|
|
|
log.Error("GetIssueByIndex: %v", err)
|
2015-11-13 10:11:45 -07:00
|
|
|
return "500 when get issue"
|
2015-11-12 14:16:51 -07:00
|
|
|
}
|
2016-08-14 04:32:24 -06:00
|
|
|
return issue.Title
|
2015-11-12 13:09:48 -07:00
|
|
|
}
|
|
|
|
|
2016-11-22 03:43:30 -07:00
|
|
|
// GetIssueContent returns the content of first issue associated with
|
|
|
|
// this action.
|
2016-01-11 05:41:43 -07:00
|
|
|
func (a *Action) GetIssueContent() string {
|
2015-11-13 10:11:45 -07:00
|
|
|
index := com.StrTo(a.GetIssueInfos()[0]).MustInt64()
|
|
|
|
issue, err := GetIssueByIndex(a.RepoID, index)
|
|
|
|
if err != nil {
|
2019-04-02 01:48:31 -06:00
|
|
|
log.Error("GetIssueByIndex: %v", err)
|
2015-11-13 10:11:45 -07:00
|
|
|
return "500 when get issue"
|
|
|
|
}
|
|
|
|
return issue.Content
|
|
|
|
}
|
|
|
|
|
2017-06-01 18:42:25 -06:00
|
|
|
// GetFeedsOptions options for retrieving feeds
|
|
|
|
type GetFeedsOptions struct {
|
2020-01-13 10:33:46 -07:00
|
|
|
RequestedUser *User // the user we want activity for
|
|
|
|
Actor *User // the user viewing the activity
|
|
|
|
IncludePrivate bool // include private actions
|
|
|
|
OnlyPerformedBy bool // only actions performed by requested user
|
|
|
|
IncludeDeleted bool // include deleted actions
|
2017-06-01 18:42:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetFeeds returns actions according to the provided options
|
|
|
|
func GetFeeds(opts GetFeedsOptions) ([]*Action, error) {
|
2017-08-22 19:30:54 -06:00
|
|
|
cond := builder.NewCond()
|
|
|
|
|
2017-06-01 18:42:25 -06:00
|
|
|
var repoIDs []int64
|
2020-01-13 10:33:46 -07:00
|
|
|
var actorID int64
|
|
|
|
|
|
|
|
if opts.Actor != nil {
|
|
|
|
actorID = opts.Actor.ID
|
|
|
|
}
|
|
|
|
|
2017-06-01 18:42:25 -06:00
|
|
|
if opts.RequestedUser.IsOrganization() {
|
2020-01-13 10:33:46 -07:00
|
|
|
env, err := opts.RequestedUser.AccessibleReposEnv(actorID)
|
2016-07-24 00:32:46 -06:00
|
|
|
if err != nil {
|
2017-01-25 08:41:38 -07:00
|
|
|
return nil, fmt.Errorf("AccessibleReposEnv: %v", err)
|
2016-02-06 00:52:21 -07:00
|
|
|
}
|
2017-06-01 18:42:25 -06:00
|
|
|
if repoIDs, err = env.RepoIDs(1, opts.RequestedUser.NumRepos); err != nil {
|
2017-01-25 08:41:38 -07:00
|
|
|
return nil, fmt.Errorf("GetUserRepositories: %v", err)
|
2016-02-06 00:52:21 -07:00
|
|
|
}
|
2017-08-22 19:30:54 -06:00
|
|
|
|
|
|
|
cond = cond.And(builder.In("repo_id", repoIDs))
|
2020-01-28 04:39:37 -07:00
|
|
|
} else {
|
|
|
|
cond = cond.And(builder.In("repo_id", AccessibleRepoIDsQuery(opts.Actor)))
|
2017-08-22 19:30:54 -06:00
|
|
|
}
|
|
|
|
|
2017-08-27 20:26:04 -06:00
|
|
|
cond = cond.And(builder.Eq{"user_id": opts.RequestedUser.ID})
|
2016-02-06 00:52:21 -07:00
|
|
|
|
2017-06-01 18:42:25 -06:00
|
|
|
if opts.OnlyPerformedBy {
|
2017-08-22 19:30:54 -06:00
|
|
|
cond = cond.And(builder.Eq{"act_user_id": opts.RequestedUser.ID})
|
2017-06-01 18:42:25 -06:00
|
|
|
}
|
|
|
|
if !opts.IncludePrivate {
|
2017-08-22 19:30:54 -06:00
|
|
|
cond = cond.And(builder.Eq{"is_private": false})
|
2017-06-01 18:42:25 -06:00
|
|
|
}
|
2017-06-25 12:20:29 -06:00
|
|
|
|
|
|
|
if !opts.IncludeDeleted {
|
2017-08-22 19:30:54 -06:00
|
|
|
cond = cond.And(builder.Eq{"is_deleted": false})
|
2017-06-25 12:20:29 -06:00
|
|
|
}
|
|
|
|
|
2017-08-22 19:30:54 -06:00
|
|
|
actions := make([]*Action, 0, 20)
|
2018-02-21 03:55:34 -07: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-12 23:16:14 -06:00
|
|
|
}
|