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