mirror of
https://github.com/go-gitea/gitea
synced 2024-11-05 05:39:14 +01:00
Move indexer notification to service layer (#26906)
Extract from #22266
This commit is contained in:
parent
a66d883a18
commit
aa678b8098
4 changed files with 22 additions and 8 deletions
|
@ -14,7 +14,6 @@ import (
|
||||||
"code.gitea.io/gitea/modules/log"
|
"code.gitea.io/gitea/modules/log"
|
||||||
"code.gitea.io/gitea/modules/notification/action"
|
"code.gitea.io/gitea/modules/notification/action"
|
||||||
"code.gitea.io/gitea/modules/notification/base"
|
"code.gitea.io/gitea/modules/notification/base"
|
||||||
"code.gitea.io/gitea/modules/notification/indexer"
|
|
||||||
"code.gitea.io/gitea/modules/notification/ui"
|
"code.gitea.io/gitea/modules/notification/ui"
|
||||||
"code.gitea.io/gitea/modules/repository"
|
"code.gitea.io/gitea/modules/repository"
|
||||||
)
|
)
|
||||||
|
@ -30,7 +29,6 @@ func RegisterNotifier(notifier base.Notifier) {
|
||||||
// NewContext registers notification handlers
|
// NewContext registers notification handlers
|
||||||
func NewContext() {
|
func NewContext() {
|
||||||
RegisterNotifier(ui.NewNotifier())
|
RegisterNotifier(ui.NewNotifier())
|
||||||
RegisterNotifier(indexer.NewNotifier())
|
|
||||||
RegisterNotifier(action.NewNotifier())
|
RegisterNotifier(action.NewNotifier())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -15,9 +15,6 @@ import (
|
||||||
"code.gitea.io/gitea/modules/eventsource"
|
"code.gitea.io/gitea/modules/eventsource"
|
||||||
"code.gitea.io/gitea/modules/git"
|
"code.gitea.io/gitea/modules/git"
|
||||||
"code.gitea.io/gitea/modules/highlight"
|
"code.gitea.io/gitea/modules/highlight"
|
||||||
code_indexer "code.gitea.io/gitea/modules/indexer/code"
|
|
||||||
issue_indexer "code.gitea.io/gitea/modules/indexer/issues"
|
|
||||||
stats_indexer "code.gitea.io/gitea/modules/indexer/stats"
|
|
||||||
"code.gitea.io/gitea/modules/log"
|
"code.gitea.io/gitea/modules/log"
|
||||||
"code.gitea.io/gitea/modules/markup"
|
"code.gitea.io/gitea/modules/markup"
|
||||||
"code.gitea.io/gitea/modules/markup/external"
|
"code.gitea.io/gitea/modules/markup/external"
|
||||||
|
@ -41,6 +38,7 @@ import (
|
||||||
"code.gitea.io/gitea/services/auth/source/oauth2"
|
"code.gitea.io/gitea/services/auth/source/oauth2"
|
||||||
"code.gitea.io/gitea/services/automerge"
|
"code.gitea.io/gitea/services/automerge"
|
||||||
"code.gitea.io/gitea/services/cron"
|
"code.gitea.io/gitea/services/cron"
|
||||||
|
indexer_service "code.gitea.io/gitea/services/indexer"
|
||||||
"code.gitea.io/gitea/services/mailer"
|
"code.gitea.io/gitea/services/mailer"
|
||||||
mailer_incoming "code.gitea.io/gitea/services/mailer/incoming"
|
mailer_incoming "code.gitea.io/gitea/services/mailer/incoming"
|
||||||
markup_service "code.gitea.io/gitea/services/markup"
|
markup_service "code.gitea.io/gitea/services/markup"
|
||||||
|
@ -143,9 +141,7 @@ func InitWebInstalled(ctx context.Context) {
|
||||||
mustInit(repo_service.Init)
|
mustInit(repo_service.Init)
|
||||||
|
|
||||||
// Booting long running goroutines.
|
// Booting long running goroutines.
|
||||||
issue_indexer.InitIssueIndexer(false)
|
mustInit(indexer_service.Init)
|
||||||
code_indexer.Init()
|
|
||||||
mustInit(stats_indexer.Init)
|
|
||||||
|
|
||||||
mirror_service.InitSyncMirrors()
|
mirror_service.InitSyncMirrors()
|
||||||
mustInit(webhook.Init)
|
mustInit(webhook.Init)
|
||||||
|
|
20
services/indexer/indexer.go
Normal file
20
services/indexer/indexer.go
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
package indexer
|
||||||
|
|
||||||
|
import (
|
||||||
|
code_indexer "code.gitea.io/gitea/modules/indexer/code"
|
||||||
|
issue_indexer "code.gitea.io/gitea/modules/indexer/issues"
|
||||||
|
stats_indexer "code.gitea.io/gitea/modules/indexer/stats"
|
||||||
|
"code.gitea.io/gitea/modules/notification"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Init initialize the repo indexer
|
||||||
|
func Init() error {
|
||||||
|
notification.RegisterNotifier(NewNotifier())
|
||||||
|
|
||||||
|
issue_indexer.InitIssueIndexer(false)
|
||||||
|
code_indexer.Init()
|
||||||
|
return stats_indexer.Init()
|
||||||
|
}
|
Loading…
Reference in a new issue