2020-04-07 13:23:04 +02:00
|
|
|
package eventsourcing
|
|
|
|
|
2021-02-22 14:08:47 +01:00
|
|
|
//
|
|
|
|
//import (
|
|
|
|
// "github.com/caos/zitadel/internal/cache/config"
|
|
|
|
// sd "github.com/caos/zitadel/internal/config/systemdefaults"
|
|
|
|
// "github.com/caos/zitadel/internal/crypto"
|
|
|
|
// es_int "github.com/caos/zitadel/internal/eventstore"
|
|
|
|
// "github.com/caos/zitadel/internal/id"
|
|
|
|
//)
|
|
|
|
//
|
|
|
|
//const (
|
|
|
|
// projectOwnerRole = "PROJECT_OWNER"
|
|
|
|
// projectOwnerGlobalRole = "PROJECT_OWNER_GLOBAL"
|
|
|
|
//)
|
|
|
|
//
|
|
|
|
//type ProjectEventstore struct {
|
|
|
|
// es_int.Eventstore
|
|
|
|
// projectCache *ProjectCache
|
|
|
|
// passwordAlg crypto.HashAlgorithm
|
|
|
|
// pwGenerator crypto.Generator
|
|
|
|
// idGenerator id.Generator
|
|
|
|
// ClientKeySize int
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//type ProjectConfig struct {
|
|
|
|
// es_int.Eventstore
|
|
|
|
// Cache *config.CacheConfig
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//func StartProject(conf ProjectConfig, systemDefaults sd.SystemDefaults) (*ProjectEventstore, error) {
|
|
|
|
// projectCache, err := StartCache(conf.Cache)
|
|
|
|
// if err != nil {
|
|
|
|
// return nil, err
|
|
|
|
// }
|
|
|
|
// passwordAlg := crypto.NewBCrypt(systemDefaults.SecretGenerators.PasswordSaltCost)
|
|
|
|
// pwGenerator := crypto.NewHashGenerator(systemDefaults.SecretGenerators.ClientSecretGenerator, passwordAlg)
|
|
|
|
// return &ProjectEventstore{
|
|
|
|
// Eventstore: conf.Eventstore,
|
|
|
|
// projectCache: projectCache,
|
|
|
|
// passwordAlg: passwordAlg,
|
|
|
|
// pwGenerator: pwGenerator,
|
|
|
|
// idGenerator: id.SonyFlakeGenerator,
|
|
|
|
// ClientKeySize: int(systemDefaults.SecretGenerators.ApplicationKeySize),
|
|
|
|
// }, nil
|
|
|
|
//}
|