2019-01-17 17:23:22 +03: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"
2019-02-19 17:39:39 +03:00
"code.gitea.io/gitea/modules/log"
2019-01-17 17:23:22 +03:00
"code.gitea.io/gitea/modules/notification/base"
)
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 ,
issue * models . Issue , comment * models . Comment ) {
if comment . Type == models . CommentTypeComment {
2019-02-19 17:39:39 +03:00
if issue . Comments == nil {
if err := issue . LoadDiscussComments ( ) ; err != nil {
log . Error ( 4 , "LoadComments failed: %v" , err )
return
}
} else {
issue . Comments = append ( issue . Comments , comment )
}
models . UpdateIssueIndexer ( issue )
2019-01-17 17:23:22 +03:00
}
}
func ( r * indexerNotifier ) NotifyNewIssue ( issue * models . Issue ) {
2019-02-19 17:39:39 +03:00
models . UpdateIssueIndexer ( issue )
2019-01-17 17:23:22 +03:00
}
func ( r * indexerNotifier ) NotifyNewPullRequest ( pr * models . PullRequest ) {
2019-02-19 17:39:39 +03:00
models . UpdateIssueIndexer ( pr . Issue )
2019-01-17 17:23:22 +03:00
}
func ( r * indexerNotifier ) NotifyUpdateComment ( doer * models . User , c * models . Comment , oldContent string ) {
if c . Type == models . CommentTypeComment {
2019-02-19 17:39:39 +03: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 {
log . Error ( 4 , "LoadComments failed: %v" , err )
return
}
}
models . UpdateIssueIndexer ( c . Issue )
2019-01-17 17:23:22 +03:00
}
}
func ( r * indexerNotifier ) NotifyDeleteComment ( doer * models . User , comment * models . Comment ) {
if comment . Type == models . CommentTypeComment {
2019-02-19 17:39:39 +03: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 {
log . Error ( 4 , "LoadComments failed: %v" , err )
return
}
}
// reload comments to delete the old comment
models . UpdateIssueIndexer ( comment . Issue )
2019-01-17 17:23:22 +03:00
}
}
func ( r * indexerNotifier ) NotifyDeleteRepository ( doer * models . User , repo * models . Repository ) {
2019-02-19 17:39:39 +03:00
models . DeleteRepoIssueIndexer ( repo )
2019-01-17 17:23:22 +03:00
}
func ( r * indexerNotifier ) NotifyIssueChangeContent ( doer * models . User , issue * models . Issue , oldContent string ) {
2019-02-19 17:39:39 +03:00
models . UpdateIssueIndexer ( issue )
2019-01-17 17:23:22 +03:00
}
func ( r * indexerNotifier ) NotifyIssueChangeTitle ( doer * models . User , issue * models . Issue , oldTitle string ) {
2019-02-19 17:39:39 +03:00
models . UpdateIssueIndexer ( issue )
2019-01-17 17:23:22 +03:00
}