2019-01-17 15:23:22 +01:00
|
|
|
// Copyright 2019 The Gitea 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 indexer
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/models"
|
2020-01-24 19:00:49 +01:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2019-12-08 20:15:35 +01:00
|
|
|
code_indexer "code.gitea.io/gitea/modules/indexer/code"
|
2019-02-21 01:54:05 +01:00
|
|
|
issue_indexer "code.gitea.io/gitea/modules/indexer/issues"
|
2020-02-11 10:34:17 +01:00
|
|
|
stats_indexer "code.gitea.io/gitea/modules/indexer/stats"
|
2019-02-19 15:39:39 +01:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2019-01-17 15:23:22 +01:00
|
|
|
"code.gitea.io/gitea/modules/notification/base"
|
2020-01-10 10:34:21 +01:00
|
|
|
"code.gitea.io/gitea/modules/repository"
|
2019-12-08 20:15:35 +01:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-01-17 15:23:22 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type indexerNotifier struct {
|
|
|
|
base.NullNotifier
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ base.Notifier = &indexerNotifier{}
|
|
|
|
)
|
|
|
|
|
|
|
|
// NewNotifier create a new indexerNotifier notifier
|
|
|
|
func NewNotifier() base.Notifier {
|
|
|
|
return &indexerNotifier{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *indexerNotifier) NotifyCreateIssueComment(doer *models.User, repo *models.Repository,
|
2021-01-02 18:04:02 +01:00
|
|
|
issue *models.Issue, comment *models.Comment, mentions []*models.User) {
|
2019-01-17 15:23:22 +01:00
|
|
|
if comment.Type == models.CommentTypeComment {
|
2019-02-19 15:39:39 +01:00
|
|
|
if issue.Comments == nil {
|
|
|
|
if err := issue.LoadDiscussComments(); err != nil {
|
2019-04-02 09:48:31 +02:00
|
|
|
log.Error("LoadComments failed: %v", err)
|
2019-02-19 15:39:39 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
issue.Comments = append(issue.Comments, comment)
|
|
|
|
}
|
|
|
|
|
2019-02-21 01:54:05 +01:00
|
|
|
issue_indexer.UpdateIssueIndexer(issue)
|
2019-01-17 15:23:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-02 18:04:02 +01:00
|
|
|
func (r *indexerNotifier) NotifyNewIssue(issue *models.Issue, mentions []*models.User) {
|
2019-02-21 01:54:05 +01:00
|
|
|
issue_indexer.UpdateIssueIndexer(issue)
|
2019-01-17 15:23:22 +01:00
|
|
|
}
|
|
|
|
|
2021-01-02 18:04:02 +01:00
|
|
|
func (r *indexerNotifier) NotifyNewPullRequest(pr *models.PullRequest, mentions []*models.User) {
|
2019-02-21 01:54:05 +01:00
|
|
|
issue_indexer.UpdateIssueIndexer(pr.Issue)
|
2019-01-17 15:23:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *indexerNotifier) NotifyUpdateComment(doer *models.User, c *models.Comment, oldContent string) {
|
|
|
|
if c.Type == models.CommentTypeComment {
|
2019-02-19 15:39:39 +01:00
|
|
|
var found bool
|
|
|
|
if c.Issue.Comments != nil {
|
|
|
|
for i := 0; i < len(c.Issue.Comments); i++ {
|
|
|
|
if c.Issue.Comments[i].ID == c.ID {
|
|
|
|
c.Issue.Comments[i] = c
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
if err := c.Issue.LoadDiscussComments(); err != nil {
|
2019-04-02 09:48:31 +02:00
|
|
|
log.Error("LoadComments failed: %v", err)
|
2019-02-19 15:39:39 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-21 01:54:05 +01:00
|
|
|
issue_indexer.UpdateIssueIndexer(c.Issue)
|
2019-01-17 15:23:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *indexerNotifier) NotifyDeleteComment(doer *models.User, comment *models.Comment) {
|
|
|
|
if comment.Type == models.CommentTypeComment {
|
2019-10-30 11:02:46 +01:00
|
|
|
if err := comment.LoadIssue(); err != nil {
|
|
|
|
log.Error("LoadIssue: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-02-19 15:39:39 +01:00
|
|
|
var found bool
|
|
|
|
if comment.Issue.Comments != nil {
|
|
|
|
for i := 0; i < len(comment.Issue.Comments); i++ {
|
|
|
|
if comment.Issue.Comments[i].ID == comment.ID {
|
|
|
|
comment.Issue.Comments = append(comment.Issue.Comments[:i], comment.Issue.Comments[i+1:]...)
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
if err := comment.Issue.LoadDiscussComments(); err != nil {
|
2019-04-02 09:48:31 +02:00
|
|
|
log.Error("LoadComments failed: %v", err)
|
2019-02-19 15:39:39 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// reload comments to delete the old comment
|
2019-02-21 01:54:05 +01:00
|
|
|
issue_indexer.UpdateIssueIndexer(comment.Issue)
|
2019-01-17 15:23:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *indexerNotifier) NotifyDeleteRepository(doer *models.User, repo *models.Repository) {
|
2019-02-21 01:54:05 +01:00
|
|
|
issue_indexer.DeleteRepoIssueIndexer(repo)
|
2019-12-08 20:15:35 +01:00
|
|
|
if setting.Indexer.RepoIndexerEnabled {
|
|
|
|
code_indexer.DeleteRepoFromIndexer(repo)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *indexerNotifier) NotifyMigrateRepository(doer *models.User, u *models.User, repo *models.Repository) {
|
2019-12-12 22:46:43 +01:00
|
|
|
issue_indexer.UpdateRepoIndexer(repo)
|
2019-12-08 20:15:35 +01:00
|
|
|
if setting.Indexer.RepoIndexerEnabled && !repo.IsEmpty {
|
|
|
|
code_indexer.UpdateRepoIndexer(repo)
|
|
|
|
}
|
2020-02-11 10:34:17 +01:00
|
|
|
if err := stats_indexer.UpdateRepoIndexer(repo); err != nil {
|
|
|
|
log.Error("stats_indexer.UpdateRepoIndexer(%d) failed: %v", repo.ID, err)
|
|
|
|
}
|
2019-12-08 20:15:35 +01:00
|
|
|
}
|
|
|
|
|
2020-10-30 22:59:02 +01:00
|
|
|
func (r *indexerNotifier) NotifyPushCommits(pusher *models.User, repo *models.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits) {
|
|
|
|
if setting.Indexer.RepoIndexerEnabled && opts.RefFullName == git.BranchPrefix+repo.DefaultBranch {
|
2019-12-08 20:15:35 +01:00
|
|
|
code_indexer.UpdateRepoIndexer(repo)
|
|
|
|
}
|
2020-02-11 10:34:17 +01:00
|
|
|
if err := stats_indexer.UpdateRepoIndexer(repo); err != nil {
|
|
|
|
log.Error("stats_indexer.UpdateRepoIndexer(%d) failed: %v", repo.ID, err)
|
|
|
|
}
|
2019-01-17 15:23:22 +01:00
|
|
|
}
|
|
|
|
|
2020-10-30 22:59:02 +01:00
|
|
|
func (r *indexerNotifier) NotifySyncPushCommits(pusher *models.User, repo *models.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits) {
|
|
|
|
if setting.Indexer.RepoIndexerEnabled && opts.RefFullName == git.BranchPrefix+repo.DefaultBranch {
|
2020-05-08 16:58:40 +02:00
|
|
|
code_indexer.UpdateRepoIndexer(repo)
|
|
|
|
}
|
|
|
|
if err := stats_indexer.UpdateRepoIndexer(repo); err != nil {
|
|
|
|
log.Error("stats_indexer.UpdateRepoIndexer(%d) failed: %v", repo.ID, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-17 15:23:22 +01:00
|
|
|
func (r *indexerNotifier) NotifyIssueChangeContent(doer *models.User, issue *models.Issue, oldContent string) {
|
2019-02-21 01:54:05 +01:00
|
|
|
issue_indexer.UpdateIssueIndexer(issue)
|
2019-01-17 15:23:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *indexerNotifier) NotifyIssueChangeTitle(doer *models.User, issue *models.Issue, oldTitle string) {
|
2019-02-21 01:54:05 +01:00
|
|
|
issue_indexer.UpdateIssueIndexer(issue)
|
2019-01-17 15:23:22 +01:00
|
|
|
}
|
2020-09-08 18:29:51 +02:00
|
|
|
|
|
|
|
func (r *indexerNotifier) NotifyIssueChangeRef(doer *models.User, issue *models.Issue, oldRef string) {
|
|
|
|
issue_indexer.UpdateIssueIndexer(issue)
|
|
|
|
}
|