2021-01-04 13:52:13 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-01-15 08:32:59 +00:00
|
|
|
global_model "github.com/caos/zitadel/internal/model"
|
|
|
|
webauthn_helper "github.com/caos/zitadel/internal/webauthn"
|
2021-01-04 13:52:13 +00:00
|
|
|
|
|
|
|
sd "github.com/caos/zitadel/internal/config/systemdefaults"
|
|
|
|
"github.com/caos/zitadel/internal/crypto"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore/v2"
|
|
|
|
"github.com/caos/zitadel/internal/id"
|
|
|
|
"github.com/caos/zitadel/internal/telemetry/tracing"
|
|
|
|
iam_repo "github.com/caos/zitadel/internal/v2/repository/iam"
|
2021-01-15 08:32:59 +00:00
|
|
|
usr_repo "github.com/caos/zitadel/internal/v2/repository/user"
|
2021-01-04 13:52:13 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type CommandSide struct {
|
|
|
|
eventstore *eventstore.Eventstore
|
|
|
|
idGenerator id.Generator
|
2021-01-08 10:33:45 +00:00
|
|
|
iamDomain string
|
2021-01-04 13:52:13 +00:00
|
|
|
|
|
|
|
idpConfigSecretCrypto crypto.Crypto
|
|
|
|
|
2021-01-15 08:32:59 +00:00
|
|
|
userPasswordAlg crypto.HashAlgorithm
|
|
|
|
initializeUserCode crypto.Generator
|
|
|
|
emailVerificationCode crypto.Generator
|
|
|
|
phoneVerificationCode crypto.Generator
|
|
|
|
passwordVerificationCode crypto.Generator
|
|
|
|
machineKeyAlg crypto.EncryptionAlgorithm
|
|
|
|
machineKeySize int
|
|
|
|
//TODO: remove global model, or move to domain
|
|
|
|
multifactors global_model.Multifactors
|
2021-01-12 11:59:51 +00:00
|
|
|
applicationSecretGenerator crypto.Generator
|
2021-01-15 08:32:59 +00:00
|
|
|
|
|
|
|
webauthn *webauthn_helper.WebAuthN
|
2021-01-04 13:52:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
Eventstore *eventstore.Eventstore
|
|
|
|
SystemDefaults sd.SystemDefaults
|
|
|
|
}
|
|
|
|
|
|
|
|
func StartCommandSide(config *Config) (repo *CommandSide, err error) {
|
|
|
|
repo = &CommandSide{
|
|
|
|
eventstore: config.Eventstore,
|
|
|
|
idGenerator: id.SonyFlakeGenerator,
|
2021-01-08 10:33:45 +00:00
|
|
|
iamDomain: config.SystemDefaults.Domain,
|
2021-01-04 13:52:13 +00:00
|
|
|
}
|
|
|
|
iam_repo.RegisterEventMappers(repo.eventstore)
|
2021-01-15 08:32:59 +00:00
|
|
|
usr_repo.RegisterEventMappers(repo.eventstore)
|
2021-01-04 13:52:13 +00:00
|
|
|
|
2021-01-12 11:59:51 +00:00
|
|
|
//TODO: simplify!!!!
|
2021-01-04 13:52:13 +00:00
|
|
|
repo.idpConfigSecretCrypto, err = crypto.NewAESCrypto(config.SystemDefaults.IDPConfigVerificationKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-01-12 11:59:51 +00:00
|
|
|
userEncryptionAlgorithm, err := crypto.NewAESCrypto(config.SystemDefaults.UserVerificationKey)
|
2021-01-04 13:52:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-01-12 11:59:51 +00:00
|
|
|
repo.initializeUserCode = crypto.NewEncryptionGenerator(config.SystemDefaults.SecretGenerators.InitializeUserCode, userEncryptionAlgorithm)
|
|
|
|
repo.emailVerificationCode = crypto.NewEncryptionGenerator(config.SystemDefaults.SecretGenerators.EmailVerificationCode, userEncryptionAlgorithm)
|
|
|
|
repo.phoneVerificationCode = crypto.NewEncryptionGenerator(config.SystemDefaults.SecretGenerators.PhoneVerificationCode, userEncryptionAlgorithm)
|
|
|
|
repo.passwordVerificationCode = crypto.NewEncryptionGenerator(config.SystemDefaults.SecretGenerators.PasswordVerificationCode, userEncryptionAlgorithm)
|
2021-01-04 13:52:13 +00:00
|
|
|
repo.userPasswordAlg = crypto.NewBCrypt(config.SystemDefaults.SecretGenerators.PasswordSaltCost)
|
2021-01-12 11:59:51 +00:00
|
|
|
repo.machineKeyAlg = userEncryptionAlgorithm
|
2021-01-04 13:52:13 +00:00
|
|
|
repo.machineKeySize = int(config.SystemDefaults.SecretGenerators.MachineKeySize)
|
2021-01-12 11:59:51 +00:00
|
|
|
|
2021-01-15 08:32:59 +00:00
|
|
|
aesOTPCrypto, err := crypto.NewAESCrypto(config.SystemDefaults.Multifactors.OTP.VerificationKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
repo.multifactors = global_model.Multifactors{
|
|
|
|
OTP: global_model.OTP{
|
|
|
|
CryptoMFA: aesOTPCrypto,
|
|
|
|
Issuer: config.SystemDefaults.Multifactors.OTP.Issuer,
|
|
|
|
},
|
|
|
|
}
|
2021-01-12 11:59:51 +00:00
|
|
|
passwordAlg := crypto.NewBCrypt(config.SystemDefaults.SecretGenerators.PasswordSaltCost)
|
|
|
|
repo.applicationSecretGenerator = crypto.NewHashGenerator(config.SystemDefaults.SecretGenerators.ClientSecretGenerator, passwordAlg)
|
2021-01-15 08:32:59 +00:00
|
|
|
web, err := webauthn_helper.StartServer(config.SystemDefaults.WebAuthN)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
repo.webauthn = web
|
2021-01-04 13:52:13 +00:00
|
|
|
return repo, nil
|
|
|
|
}
|
|
|
|
|
2021-01-12 11:59:51 +00:00
|
|
|
func (r *CommandSide) getIAMWriteModel(ctx context.Context) (_ *IAMWriteModel, err error) {
|
2021-01-04 13:52:13 +00:00
|
|
|
ctx, span := tracing.NewSpan(ctx)
|
|
|
|
defer func() { span.EndWithError(err) }()
|
|
|
|
|
2021-01-12 11:59:51 +00:00
|
|
|
writeModel := NewIAMWriteModel()
|
2021-01-04 13:52:13 +00:00
|
|
|
err = r.eventstore.FilterToQueryReducer(ctx, writeModel)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return writeModel, nil
|
|
|
|
}
|