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