mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-15 20:38:00 +00:00
e3528ff0b2
* feat: add default language to eventstore * feat: add secret generator configs events * feat: tests * feat: secret generators in eventstore * feat: secret generators in eventstore * feat: smtp config in eventstore * feat: smtp config in eventstore * feat: smtp config in eventstore * feat: smtp config in eventstore * feat: smtp config in eventstore * fix: migrations * fix migration version * fix test * feat: change secret generator type to enum * feat: change smtp attribute names * feat: change smtp attribute names * feat: remove engryption algorithms from command side * feat: remove engryption algorithms from command side * feat: smtp config * feat: smtp config * format smtp from header Co-authored-by: Livio Amstutz <livio.a@gmail.com>
35 lines
1.3 KiB
Go
35 lines
1.3 KiB
Go
package spooler
|
|
|
|
import (
|
|
"database/sql"
|
|
"net/http"
|
|
|
|
"github.com/caos/zitadel/internal/command"
|
|
sd "github.com/caos/zitadel/internal/config/systemdefaults"
|
|
"github.com/caos/zitadel/internal/crypto"
|
|
v1 "github.com/caos/zitadel/internal/eventstore/v1"
|
|
"github.com/caos/zitadel/internal/eventstore/v1/spooler"
|
|
"github.com/caos/zitadel/internal/notification/repository/eventsourcing/handler"
|
|
"github.com/caos/zitadel/internal/notification/repository/eventsourcing/view"
|
|
"github.com/caos/zitadel/internal/query"
|
|
)
|
|
|
|
type SpoolerConfig struct {
|
|
BulkLimit uint64
|
|
FailureCountUntilSkip uint64
|
|
ConcurrentWorkers int
|
|
Handlers handler.Configs
|
|
}
|
|
|
|
func StartSpooler(c SpoolerConfig, es v1.Eventstore, view *view.View, sql *sql.DB, command *command.Commands, queries *query.Queries, systemDefaults sd.SystemDefaults, dir http.FileSystem, assetsPrefix string, smtpPasswordEncAlg crypto.EncryptionAlgorithm) *spooler.Spooler {
|
|
spoolerConfig := spooler.Config{
|
|
Eventstore: es,
|
|
Locker: &locker{dbClient: sql},
|
|
ConcurrentWorkers: c.ConcurrentWorkers,
|
|
ViewHandlers: handler.Register(c.Handlers, c.BulkLimit, c.FailureCountUntilSkip, view, es, command, queries, systemDefaults, dir, assetsPrefix, smtpPasswordEncAlg),
|
|
}
|
|
spool := spoolerConfig.New()
|
|
spool.Start()
|
|
return spool
|
|
}
|