2023-03-28 22:09:06 +00:00
|
|
|
package notification
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/zitadel/zitadel/internal/command"
|
|
|
|
"github.com/zitadel/zitadel/internal/crypto"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
|
|
"github.com/zitadel/zitadel/internal/notification/handlers"
|
|
|
|
_ "github.com/zitadel/zitadel/internal/notification/statik"
|
|
|
|
"github.com/zitadel/zitadel/internal/query"
|
|
|
|
"github.com/zitadel/zitadel/internal/query/projection"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Start(
|
|
|
|
ctx context.Context,
|
2023-08-24 09:41:52 +00:00
|
|
|
userHandlerCustomConfig, quotaHandlerCustomConfig, telemetryHandlerCustomConfig projection.CustomConfig,
|
2023-07-06 06:38:13 +00:00
|
|
|
telemetryCfg handlers.TelemetryPusherConfig,
|
2023-07-06 17:31:08 +00:00
|
|
|
externalDomain string,
|
2023-03-28 22:09:06 +00:00
|
|
|
externalPort uint16,
|
|
|
|
externalSecure bool,
|
|
|
|
commands *command.Commands,
|
|
|
|
queries *query.Queries,
|
|
|
|
es *eventstore.Eventstore,
|
2023-08-24 09:41:52 +00:00
|
|
|
otpEmailTmpl string,
|
2023-03-28 22:09:06 +00:00
|
|
|
fileSystemPath string,
|
2023-08-24 09:41:52 +00:00
|
|
|
userEncryption, smtpEncryption, smsEncryption crypto.EncryptionAlgorithm,
|
2023-03-28 22:09:06 +00:00
|
|
|
) {
|
2023-12-05 11:12:01 +00:00
|
|
|
q := handlers.NewNotificationQueries(queries, es, externalDomain, externalPort, externalSecure, fileSystemPath, userEncryption, smtpEncryption, smsEncryption)
|
2023-10-10 13:20:53 +00:00
|
|
|
c := newChannels(q)
|
2023-10-19 10:19:10 +00:00
|
|
|
handlers.NewUserNotifier(ctx, projection.ApplyCustomConfig(userHandlerCustomConfig), commands, q, c, otpEmailTmpl).Start(ctx)
|
|
|
|
handlers.NewQuotaNotifier(ctx, projection.ApplyCustomConfig(quotaHandlerCustomConfig), commands, q, c).Start(ctx)
|
2023-07-06 06:38:13 +00:00
|
|
|
if telemetryCfg.Enabled {
|
2023-10-19 10:19:10 +00:00
|
|
|
handlers.NewTelemetryPusher(ctx, telemetryCfg, projection.ApplyCustomConfig(telemetryHandlerCustomConfig), commands, q, c).Start(ctx)
|
2023-07-06 06:38:13 +00:00
|
|
|
}
|
2023-03-28 22:09:06 +00:00
|
|
|
}
|