2020-05-11 08:16:27 +00:00
|
|
|
package eventsourcing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-05-28 11:28:36 +00:00
|
|
|
"github.com/caos/zitadel/internal/id"
|
2020-05-29 06:44:01 +00:00
|
|
|
policy_model "github.com/caos/zitadel/internal/policy/model"
|
|
|
|
|
2020-05-18 10:06:36 +00:00
|
|
|
"github.com/pquerna/otp/totp"
|
|
|
|
|
|
|
|
req_model "github.com/caos/zitadel/internal/auth_request/model"
|
2020-05-11 08:16:27 +00:00
|
|
|
"github.com/caos/zitadel/internal/cache/config"
|
|
|
|
sd "github.com/caos/zitadel/internal/config/systemdefaults"
|
|
|
|
"github.com/caos/zitadel/internal/crypto"
|
|
|
|
caos_errs "github.com/caos/zitadel/internal/errors"
|
|
|
|
es_int "github.com/caos/zitadel/internal/eventstore"
|
2020-05-13 12:22:29 +00:00
|
|
|
es_models "github.com/caos/zitadel/internal/eventstore/models"
|
2020-05-11 08:16:27 +00:00
|
|
|
es_sdk "github.com/caos/zitadel/internal/eventstore/sdk"
|
|
|
|
global_model "github.com/caos/zitadel/internal/model"
|
|
|
|
usr_model "github.com/caos/zitadel/internal/user/model"
|
|
|
|
"github.com/caos/zitadel/internal/user/repository/eventsourcing/model"
|
|
|
|
)
|
|
|
|
|
|
|
|
type UserEventstore struct {
|
|
|
|
es_int.Eventstore
|
|
|
|
userCache *UserCache
|
2020-05-28 11:28:36 +00:00
|
|
|
idGenerator id.Generator
|
2020-05-11 08:16:27 +00:00
|
|
|
PasswordAlg crypto.HashAlgorithm
|
|
|
|
InitializeUserCode crypto.Generator
|
|
|
|
EmailVerificationCode crypto.Generator
|
|
|
|
PhoneVerificationCode crypto.Generator
|
|
|
|
PasswordVerificationCode crypto.Generator
|
|
|
|
Multifactors global_model.Multifactors
|
2020-05-18 10:06:36 +00:00
|
|
|
validateTOTP func(string, string) bool
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type UserConfig struct {
|
|
|
|
es_int.Eventstore
|
|
|
|
Cache *config.CacheConfig
|
|
|
|
PasswordSaltCost int
|
|
|
|
}
|
|
|
|
|
|
|
|
func StartUser(conf UserConfig, systemDefaults sd.SystemDefaults) (*UserEventstore, error) {
|
|
|
|
userCache, err := StartCache(conf.Cache)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
aesCrypto, err := crypto.NewAESCrypto(systemDefaults.UserVerificationKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
initCodeGen := crypto.NewEncryptionGenerator(systemDefaults.SecretGenerators.InitializeUserCode, aesCrypto)
|
|
|
|
emailVerificationCode := crypto.NewEncryptionGenerator(systemDefaults.SecretGenerators.EmailVerificationCode, aesCrypto)
|
|
|
|
phoneVerificationCode := crypto.NewEncryptionGenerator(systemDefaults.SecretGenerators.PhoneVerificationCode, aesCrypto)
|
|
|
|
passwordVerificationCode := crypto.NewEncryptionGenerator(systemDefaults.SecretGenerators.PasswordVerificationCode, aesCrypto)
|
|
|
|
aesOtpCrypto, err := crypto.NewAESCrypto(systemDefaults.Multifactors.OTP.VerificationKey)
|
2020-05-13 12:22:29 +00:00
|
|
|
passwordAlg := crypto.NewBCrypt(systemDefaults.SecretGenerators.PasswordSaltCost)
|
2020-05-26 14:46:16 +00:00
|
|
|
|
2020-05-11 08:16:27 +00:00
|
|
|
return &UserEventstore{
|
|
|
|
Eventstore: conf.Eventstore,
|
|
|
|
userCache: userCache,
|
2020-05-28 11:28:36 +00:00
|
|
|
idGenerator: id.SonyFlakeGenerator,
|
2020-05-11 08:16:27 +00:00
|
|
|
InitializeUserCode: initCodeGen,
|
|
|
|
EmailVerificationCode: emailVerificationCode,
|
|
|
|
PhoneVerificationCode: phoneVerificationCode,
|
|
|
|
PasswordVerificationCode: passwordVerificationCode,
|
2020-05-26 14:46:16 +00:00
|
|
|
Multifactors: global_model.Multifactors{
|
|
|
|
OTP: global_model.OTP{
|
|
|
|
CryptoMFA: aesOtpCrypto,
|
|
|
|
Issuer: systemDefaults.Multifactors.OTP.Issuer,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PasswordAlg: passwordAlg,
|
|
|
|
validateTOTP: totp.Validate,
|
2020-05-11 08:16:27 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) UserByID(ctx context.Context, id string) (*usr_model.User, error) {
|
|
|
|
user := es.userCache.getUser(id)
|
|
|
|
|
|
|
|
query, err := UserByIDQuery(user.AggregateID, user.Sequence)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
err = es_sdk.Filter(ctx, es.FilterEvents, user.AppendEvents, query)
|
|
|
|
if err != nil && caos_errs.IsNotFound(err) && user.Sequence == 0 {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(user)
|
|
|
|
return model.UserToModel(user), nil
|
|
|
|
}
|
|
|
|
|
2020-06-05 05:50:04 +00:00
|
|
|
func (es *UserEventstore) UserEventsByID(ctx context.Context, id string, sequence uint64) ([]*es_models.Event, error) {
|
|
|
|
query, err := UserByIDQuery(id, sequence)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return es.FilterEvents(ctx, query)
|
|
|
|
}
|
|
|
|
|
2020-05-29 06:44:01 +00:00
|
|
|
func (es *UserEventstore) PrepareCreateUser(ctx context.Context, user *usr_model.User, policy *policy_model.PasswordComplexityPolicy, resourceOwner string) (*model.User, []*es_models.Aggregate, error) {
|
2020-05-11 08:16:27 +00:00
|
|
|
user.SetEmailAsUsername()
|
|
|
|
if !user.IsValid() {
|
2020-05-20 12:28:08 +00:00
|
|
|
return nil, nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-9dk45", "User is invalid")
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
2020-05-28 11:28:36 +00:00
|
|
|
|
|
|
|
id, err := es.idGenerator.Next()
|
2020-05-11 08:16:27 +00:00
|
|
|
if err != nil {
|
2020-05-13 12:22:29 +00:00
|
|
|
return nil, nil, err
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
2020-05-28 11:28:36 +00:00
|
|
|
user.AggregateID = id
|
2020-05-11 08:16:27 +00:00
|
|
|
|
2020-05-29 06:44:01 +00:00
|
|
|
err = user.HashPasswordIfExisting(policy, es.PasswordAlg, true)
|
2020-05-11 08:16:27 +00:00
|
|
|
if err != nil {
|
2020-05-13 12:22:29 +00:00
|
|
|
return nil, nil, err
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
|
|
|
err = user.GenerateInitCodeIfNeeded(es.InitializeUserCode)
|
|
|
|
if err != nil {
|
2020-05-13 12:22:29 +00:00
|
|
|
return nil, nil, err
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
|
|
|
err = user.GeneratePhoneCodeIfNeeded(es.PhoneVerificationCode)
|
|
|
|
if err != nil {
|
2020-05-13 12:22:29 +00:00
|
|
|
return nil, nil, err
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repoUser := model.UserFromModel(user)
|
|
|
|
repoInitCode := model.InitCodeFromModel(user.InitCode)
|
|
|
|
repoPhoneCode := model.PhoneCodeFromModel(user.PhoneCode)
|
|
|
|
|
2020-05-28 04:49:22 +00:00
|
|
|
createAggregates, err := UserCreateAggregate(ctx, es.AggregateCreator(), repoUser, repoInitCode, repoPhoneCode, resourceOwner)
|
2020-05-13 12:22:29 +00:00
|
|
|
|
2020-05-28 04:49:22 +00:00
|
|
|
return repoUser, createAggregates, err
|
2020-05-13 12:22:29 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 06:44:01 +00:00
|
|
|
func (es *UserEventstore) CreateUser(ctx context.Context, user *usr_model.User, policy *policy_model.PasswordComplexityPolicy) (*usr_model.User, error) {
|
|
|
|
repoUser, aggregates, err := es.PrepareCreateUser(ctx, user, policy, "")
|
2020-05-13 12:22:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-05-28 04:49:22 +00:00
|
|
|
err = es_sdk.PushAggregates(ctx, es.PushAggregates, repoUser.AppendEvents, aggregates...)
|
2020-05-11 08:16:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
es.userCache.cacheUser(repoUser)
|
|
|
|
return model.UserToModel(repoUser), nil
|
|
|
|
}
|
|
|
|
|
2020-05-29 06:44:01 +00:00
|
|
|
func (es *UserEventstore) PrepareRegisterUser(ctx context.Context, user *usr_model.User, policy *policy_model.PasswordComplexityPolicy, resourceOwner string) (*model.User, []*es_models.Aggregate, error) {
|
2020-05-11 08:16:27 +00:00
|
|
|
user.SetEmailAsUsername()
|
|
|
|
if !user.IsValid() || user.Password == nil || user.SecretString == "" {
|
2020-06-11 11:22:24 +00:00
|
|
|
return nil, nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-9dk45", "Errors.User.InvalidData")
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
2020-05-28 11:28:36 +00:00
|
|
|
id, err := es.idGenerator.Next()
|
2020-05-11 08:16:27 +00:00
|
|
|
if err != nil {
|
2020-05-13 12:22:29 +00:00
|
|
|
return nil, nil, err
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
2020-05-28 11:28:36 +00:00
|
|
|
user.AggregateID = id
|
2020-05-11 08:16:27 +00:00
|
|
|
|
2020-05-29 06:44:01 +00:00
|
|
|
err = user.HashPasswordIfExisting(policy, es.PasswordAlg, false)
|
2020-05-11 08:16:27 +00:00
|
|
|
if err != nil {
|
2020-05-13 12:22:29 +00:00
|
|
|
return nil, nil, err
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
|
|
|
err = user.GenerateEmailCodeIfNeeded(es.EmailVerificationCode)
|
|
|
|
if err != nil {
|
2020-05-13 12:22:29 +00:00
|
|
|
return nil, nil, err
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repoUser := model.UserFromModel(user)
|
|
|
|
repoEmailCode := model.EmailCodeFromModel(user.EmailCode)
|
|
|
|
|
2020-05-28 04:49:22 +00:00
|
|
|
aggregates, err := UserRegisterAggregate(ctx, es.AggregateCreator(), repoUser, resourceOwner, repoEmailCode)
|
|
|
|
return repoUser, aggregates, err
|
2020-05-13 12:22:29 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 06:44:01 +00:00
|
|
|
func (es *UserEventstore) RegisterUser(ctx context.Context, user *usr_model.User, policy *policy_model.PasswordComplexityPolicy, resourceOwner string) (*usr_model.User, error) {
|
|
|
|
repoUser, createAggregates, err := es.PrepareRegisterUser(ctx, user, policy, resourceOwner)
|
2020-05-13 12:22:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-05-28 04:49:22 +00:00
|
|
|
err = es_sdk.PushAggregates(ctx, es.PushAggregates, repoUser.AppendEvents, createAggregates...)
|
2020-05-11 08:16:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
es.userCache.cacheUser(repoUser)
|
|
|
|
return model.UserToModel(repoUser), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) DeactivateUser(ctx context.Context, id string) (*usr_model.User, error) {
|
|
|
|
existing, err := es.UserByID(ctx, id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if existing.IsInactive() {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-die45", "cant deactivate inactive user")
|
|
|
|
}
|
|
|
|
|
|
|
|
repoExisting := model.UserFromModel(existing)
|
|
|
|
aggregate := UserDeactivateAggregate(es.AggregateCreator(), repoExisting)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, aggregate)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(repoExisting)
|
|
|
|
return model.UserToModel(repoExisting), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) ReactivateUser(ctx context.Context, id string) (*usr_model.User, error) {
|
|
|
|
existing, err := es.UserByID(ctx, id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if !existing.IsInactive() {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-do94s", "user must be inactive")
|
|
|
|
}
|
|
|
|
|
|
|
|
repoExisting := model.UserFromModel(existing)
|
|
|
|
aggregate := UserReactivateAggregate(es.AggregateCreator(), repoExisting)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, aggregate)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(repoExisting)
|
|
|
|
return model.UserToModel(repoExisting), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) LockUser(ctx context.Context, id string) (*usr_model.User, error) {
|
|
|
|
existing, err := es.UserByID(ctx, id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if !existing.IsActive() && !existing.IsInitial() {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-di83s", "user must be active or initial")
|
|
|
|
}
|
|
|
|
|
|
|
|
repoExisting := model.UserFromModel(existing)
|
|
|
|
aggregate := UserLockAggregate(es.AggregateCreator(), repoExisting)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, aggregate)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(repoExisting)
|
|
|
|
return model.UserToModel(repoExisting), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) UnlockUser(ctx context.Context, id string) (*usr_model.User, error) {
|
|
|
|
existing, err := es.UserByID(ctx, id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if !existing.IsLocked() {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-dks83", "user must be locked")
|
|
|
|
}
|
|
|
|
|
|
|
|
repoExisting := model.UserFromModel(existing)
|
|
|
|
aggregate := UserUnlockAggregate(es.AggregateCreator(), repoExisting)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, aggregate)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(repoExisting)
|
|
|
|
return model.UserToModel(repoExisting), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) InitializeUserCodeByID(ctx context.Context, userID string) (*usr_model.InitUserCode, error) {
|
|
|
|
if userID == "" {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-d8diw", "userID missing")
|
|
|
|
}
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if user.InitCode != nil {
|
|
|
|
return user.InitCode, nil
|
|
|
|
}
|
|
|
|
return nil, caos_errs.ThrowNotFound(nil, "EVENT-d8e2", "init code not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) CreateInitializeUserCodeByID(ctx context.Context, userID string) (*usr_model.InitUserCode, error) {
|
|
|
|
if userID == "" {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-dic8s", "userID missing")
|
|
|
|
}
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
initCode := new(usr_model.InitUserCode)
|
|
|
|
err = initCode.GenerateInitUserCode(es.InitializeUserCode)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
repoUser := model.UserFromModel(user)
|
|
|
|
repoInitCode := model.InitCodeFromModel(initCode)
|
|
|
|
|
|
|
|
agg := UserInitCodeAggregate(es.AggregateCreator(), repoUser, repoInitCode)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoUser.AppendEvents, agg)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(repoUser)
|
|
|
|
return model.InitCodeToModel(repoUser.InitCode), nil
|
|
|
|
}
|
|
|
|
|
2020-05-20 12:28:08 +00:00
|
|
|
func (es *UserEventstore) InitCodeSent(ctx context.Context, userID string) error {
|
|
|
|
if userID == "" {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-0posw", "userID missing")
|
|
|
|
}
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
repoUser := model.UserFromModel(user)
|
|
|
|
agg := UserInitCodeSentAggregate(es.AggregateCreator(), repoUser)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoUser.AppendEvents, agg)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(repoUser)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-05 05:50:04 +00:00
|
|
|
func (es *UserEventstore) VerifyInitCode(ctx context.Context, policy *policy_model.PasswordComplexityPolicy, userID, verificationCode, password string) error {
|
2020-06-11 11:22:24 +00:00
|
|
|
if userID == "" {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-lo9fd", "Errors.User.UserIDMissing")
|
|
|
|
}
|
|
|
|
if verificationCode == "" {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-lo9fd", "Errors.User.Code.Empty")
|
2020-06-05 05:50:04 +00:00
|
|
|
}
|
|
|
|
pw := &usr_model.Password{SecretString: password}
|
|
|
|
err := pw.HashPasswordIfExisting(policy, es.PasswordAlg, false)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
existing, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if existing.InitCode == nil {
|
2020-06-11 11:22:24 +00:00
|
|
|
return caos_errs.ThrowNotFound(nil, "EVENT-spo9W", "Errors.User.Code.NotFound")
|
2020-06-05 05:50:04 +00:00
|
|
|
}
|
|
|
|
repoPassword := model.PasswordFromModel(pw)
|
|
|
|
repoExisting := model.UserFromModel(existing)
|
|
|
|
var updateAggregate func(ctx context.Context) (*es_models.Aggregate, error)
|
|
|
|
if err := crypto.VerifyCode(existing.InitCode.CreationDate, existing.InitCode.Expiry, existing.InitCode.Code, verificationCode, es.InitializeUserCode); err != nil {
|
|
|
|
updateAggregate = InitCodeCheckFailedAggregate(es.AggregateCreator(), repoExisting)
|
2020-06-11 11:22:24 +00:00
|
|
|
es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, updateAggregate)
|
|
|
|
return err
|
2020-06-05 05:50:04 +00:00
|
|
|
} else {
|
|
|
|
updateAggregate = InitCodeVerifiedAggregate(es.AggregateCreator(), repoExisting, repoPassword)
|
|
|
|
}
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, updateAggregate)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
es.userCache.cacheUser(repoExisting)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-11 08:16:27 +00:00
|
|
|
func (es *UserEventstore) SkipMfaInit(ctx context.Context, userID string) error {
|
|
|
|
if userID == "" {
|
2020-06-11 11:22:24 +00:00
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-dic8s", "Errors.User.UserIDMissing")
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
repoUser := model.UserFromModel(user)
|
|
|
|
agg := SkipMfaAggregate(es.AggregateCreator(), repoUser)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoUser.AppendEvents, agg)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(repoUser)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) UserPasswordByID(ctx context.Context, userID string) (*usr_model.Password, error) {
|
|
|
|
if userID == "" {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-di834", "userID missing")
|
|
|
|
}
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if user.Password != nil {
|
|
|
|
return user.Password, nil
|
|
|
|
}
|
|
|
|
return nil, caos_errs.ThrowNotFound(nil, "EVENT-d8e2", "password not found")
|
|
|
|
}
|
|
|
|
|
2020-05-18 10:06:36 +00:00
|
|
|
func (es *UserEventstore) CheckPassword(ctx context.Context, userID, password string, authRequest *req_model.AuthRequest) error {
|
|
|
|
existing, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if existing.Password == nil {
|
2020-06-11 11:22:24 +00:00
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-s35Fa", "Errors.User.Password.Empty")
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
|
|
|
if err := crypto.CompareHash(existing.Password.SecretCrypto, []byte(password), es.PasswordAlg); err == nil {
|
|
|
|
return es.setPasswordCheckResult(ctx, existing, authRequest, PasswordCheckSucceededAggregate)
|
|
|
|
}
|
|
|
|
if err := es.setPasswordCheckResult(ctx, existing, authRequest, PasswordCheckFailedAggregate); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-06-11 11:22:24 +00:00
|
|
|
return caos_errs.ThrowInvalidArgument(nil, "EVENT-452ad", "Errors.User.Password.Invalid")
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
|
|
|
|
2020-05-18 10:06:36 +00:00
|
|
|
func (es *UserEventstore) setPasswordCheckResult(ctx context.Context, user *usr_model.User, authRequest *req_model.AuthRequest, check func(*es_models.AggregateCreator, *model.User, *model.AuthRequest) es_sdk.AggregateFunc) error {
|
|
|
|
repoUser := model.UserFromModel(user)
|
|
|
|
repoAuthRequest := model.AuthRequestFromModel(authRequest)
|
|
|
|
agg := check(es.AggregateCreator(), repoUser, repoAuthRequest)
|
|
|
|
err := es_sdk.Push(ctx, es.PushAggregates, repoUser.AppendEvents, agg)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(repoUser)
|
|
|
|
return nil
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 06:44:01 +00:00
|
|
|
func (es *UserEventstore) SetOneTimePassword(ctx context.Context, policy *policy_model.PasswordComplexityPolicy, password *usr_model.Password) (*usr_model.Password, error) {
|
2020-05-11 08:16:27 +00:00
|
|
|
user, err := es.UserByID(ctx, password.AggregateID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-29 06:44:01 +00:00
|
|
|
return es.changedPassword(ctx, user, policy, password.SecretString, true)
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
2020-05-11 08:16:27 +00:00
|
|
|
|
2020-05-29 06:44:01 +00:00
|
|
|
func (es *UserEventstore) SetPassword(ctx context.Context, policy *policy_model.PasswordComplexityPolicy, userID, code, password string) error {
|
2020-05-18 10:06:36 +00:00
|
|
|
user, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if user.PasswordCode == nil {
|
2020-06-11 11:22:24 +00:00
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-65sdr", "Errors.User.Code.NotFound")
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
|
|
|
if err := crypto.VerifyCode(user.PasswordCode.CreationDate, user.PasswordCode.Expiry, user.PasswordCode.Code, code, es.PasswordVerificationCode); err != nil {
|
2020-06-11 11:22:24 +00:00
|
|
|
return err
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
2020-05-29 06:44:01 +00:00
|
|
|
_, err = es.changedPassword(ctx, user, policy, password, false)
|
2020-05-18 10:06:36 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-05-29 06:44:01 +00:00
|
|
|
func (es *UserEventstore) ChangePassword(ctx context.Context, policy *policy_model.PasswordComplexityPolicy, userID, old, new string) (*usr_model.Password, error) {
|
2020-05-18 10:06:36 +00:00
|
|
|
user, err := es.UserByID(ctx, userID)
|
2020-05-11 08:16:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-18 10:06:36 +00:00
|
|
|
if user.Password == nil {
|
2020-06-11 11:22:24 +00:00
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-Fds3s", "Errors.User.Password.Empty")
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
|
|
|
if err := crypto.CompareHash(user.Password.SecretCrypto, []byte(old), es.PasswordAlg); err != nil {
|
2020-06-11 11:22:24 +00:00
|
|
|
return nil, caos_errs.ThrowInvalidArgument(nil, "EVENT-s56a3", "Errors.User.Password.Invalid")
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
2020-05-29 06:44:01 +00:00
|
|
|
return es.changedPassword(ctx, user, policy, new, false)
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
2020-05-11 08:16:27 +00:00
|
|
|
|
2020-05-29 06:44:01 +00:00
|
|
|
func (es *UserEventstore) changedPassword(ctx context.Context, user *usr_model.User, policy *policy_model.PasswordComplexityPolicy, password string, onetime bool) (*usr_model.Password, error) {
|
|
|
|
pw := &usr_model.Password{SecretString: password}
|
|
|
|
err := pw.HashPasswordIfExisting(policy, es.PasswordAlg, onetime)
|
2020-05-18 10:06:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-29 06:44:01 +00:00
|
|
|
repoPassword := model.PasswordFromModel(pw)
|
2020-05-11 08:16:27 +00:00
|
|
|
repoUser := model.UserFromModel(user)
|
|
|
|
agg := PasswordChangeAggregate(es.AggregateCreator(), repoUser, repoPassword)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoUser.AppendEvents, agg)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(repoUser)
|
|
|
|
|
|
|
|
return model.PasswordToModel(repoUser.Password), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) RequestSetPassword(ctx context.Context, userID string, notifyType usr_model.NotificationType) error {
|
|
|
|
if userID == "" {
|
2020-06-11 11:22:24 +00:00
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-dic8s", "Errors.User.UserIDMissing")
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
passwordCode := new(model.PasswordCode)
|
|
|
|
err = es.generatePasswordCode(passwordCode, notifyType)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
repoUser := model.UserFromModel(user)
|
|
|
|
agg := RequestSetPassword(es.AggregateCreator(), repoUser, passwordCode)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoUser.AppendEvents, agg)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(repoUser)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-20 12:28:08 +00:00
|
|
|
func (es *UserEventstore) PasswordCodeSent(ctx context.Context, userID string) error {
|
|
|
|
if userID == "" {
|
2020-06-11 11:22:24 +00:00
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-s09ow", "Errors.User.UserIDMissing")
|
2020-05-20 12:28:08 +00:00
|
|
|
}
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
repoUser := model.UserFromModel(user)
|
|
|
|
agg := PasswordCodeSentAggregate(es.AggregateCreator(), repoUser)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoUser.AppendEvents, agg)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(repoUser)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-11 08:16:27 +00:00
|
|
|
func (es *UserEventstore) ProfileByID(ctx context.Context, userID string) (*usr_model.Profile, error) {
|
|
|
|
if userID == "" {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-di834", "userID missing")
|
|
|
|
}
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if user.Profile != nil {
|
|
|
|
return user.Profile, nil
|
|
|
|
}
|
|
|
|
return nil, caos_errs.ThrowNotFound(nil, "EVENT-dk23f", "profile not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) ChangeProfile(ctx context.Context, profile *usr_model.Profile) (*usr_model.Profile, error) {
|
|
|
|
if !profile.IsValid() {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-d82i3", "profile is invalid")
|
|
|
|
}
|
|
|
|
existing, err := es.UserByID(ctx, profile.AggregateID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
repoExisting := model.UserFromModel(existing)
|
|
|
|
repoNew := model.ProfileFromModel(profile)
|
|
|
|
|
|
|
|
updateAggregate := ProfileChangeAggregate(es.AggregateCreator(), repoExisting, repoNew)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, updateAggregate)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
es.userCache.cacheUser(repoExisting)
|
|
|
|
return model.ProfileToModel(repoExisting.Profile), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) EmailByID(ctx context.Context, userID string) (*usr_model.Email, error) {
|
|
|
|
if userID == "" {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-di834", "userID missing")
|
|
|
|
}
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if user.Email != nil {
|
|
|
|
return user.Email, nil
|
|
|
|
}
|
|
|
|
return nil, caos_errs.ThrowNotFound(nil, "EVENT-dki89", "email not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) ChangeEmail(ctx context.Context, email *usr_model.Email) (*usr_model.Email, error) {
|
|
|
|
if !email.IsValid() {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-lco09", "email is invalid")
|
|
|
|
}
|
|
|
|
existing, err := es.UserByID(ctx, email.AggregateID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
emailCode, err := email.GenerateEmailCodeIfNeeded(es.EmailVerificationCode)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
repoExisting := model.UserFromModel(existing)
|
|
|
|
repoNew := model.EmailFromModel(email)
|
|
|
|
repoEmailCode := model.EmailCodeFromModel(emailCode)
|
|
|
|
|
2020-05-28 04:49:22 +00:00
|
|
|
updateAggregates, err := EmailChangeAggregate(ctx, es.AggregateCreator(), repoExisting, repoNew, repoEmailCode)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
err = es_sdk.PushAggregates(ctx, es.PushAggregates, repoExisting.AppendEvents, updateAggregates...)
|
2020-05-11 08:16:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
es.userCache.cacheUser(repoExisting)
|
|
|
|
return model.EmailToModel(repoExisting.Email), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) VerifyEmail(ctx context.Context, userID, verificationCode string) error {
|
2020-06-11 11:22:24 +00:00
|
|
|
if userID == "" {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-lo9fd", "Errors.User.UserIDMissing")
|
|
|
|
}
|
|
|
|
if verificationCode == "" {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-skDws", "Errors.User.Code.Empty")
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
|
|
|
existing, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if existing.EmailCode == nil {
|
2020-06-11 11:22:24 +00:00
|
|
|
return caos_errs.ThrowNotFound(nil, "EVENT-lso9w", "Errors.User.Code.NotFound")
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
2020-06-05 05:50:04 +00:00
|
|
|
|
|
|
|
err = crypto.VerifyCode(existing.EmailCode.CreationDate, existing.EmailCode.Expiry, existing.EmailCode.Code, verificationCode, es.EmailVerificationCode)
|
|
|
|
if err == nil {
|
|
|
|
return es.setEmailVerifyResult(ctx, existing, EmailVerifiedAggregate)
|
|
|
|
}
|
|
|
|
if err := es.setEmailVerifyResult(ctx, existing, EmailVerificationFailedAggregate); err != nil {
|
2020-05-11 08:16:27 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-06-11 11:22:24 +00:00
|
|
|
return caos_errs.ThrowInvalidArgument(err, "EVENT-dtGaa", "Errors.User.Code.Invalid")
|
2020-06-05 05:50:04 +00:00
|
|
|
}
|
2020-05-11 08:16:27 +00:00
|
|
|
|
2020-06-05 05:50:04 +00:00
|
|
|
func (es *UserEventstore) setEmailVerifyResult(ctx context.Context, existing *usr_model.User, check func(aggCreator *es_models.AggregateCreator, existing *model.User) es_sdk.AggregateFunc) error {
|
2020-05-11 08:16:27 +00:00
|
|
|
repoExisting := model.UserFromModel(existing)
|
2020-06-05 05:50:04 +00:00
|
|
|
err := es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, check(es.AggregateCreator(), repoExisting))
|
2020-05-11 08:16:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(repoExisting)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) CreateEmailVerificationCode(ctx context.Context, userID string) error {
|
|
|
|
if userID == "" {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-lco09", "userID missing")
|
|
|
|
}
|
|
|
|
existing, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if existing.Email == nil {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-pdo9s", "no email existing")
|
|
|
|
}
|
|
|
|
if existing.IsEmailVerified {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-pdo9s", "email already verified")
|
|
|
|
}
|
|
|
|
|
|
|
|
emailCode := new(usr_model.EmailCode)
|
|
|
|
err = emailCode.GenerateEmailCode(es.EmailVerificationCode)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
repoExisting := model.UserFromModel(existing)
|
|
|
|
repoEmailCode := model.EmailCodeFromModel(emailCode)
|
|
|
|
updateAggregate := EmailVerificationCodeAggregate(es.AggregateCreator(), repoExisting, repoEmailCode)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, updateAggregate)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
es.userCache.cacheUser(repoExisting)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-20 12:28:08 +00:00
|
|
|
func (es *UserEventstore) EmailVerificationCodeSent(ctx context.Context, userID string) error {
|
|
|
|
if userID == "" {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-spo0w", "userID missing")
|
|
|
|
}
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
repoUser := model.UserFromModel(user)
|
|
|
|
agg := EmailCodeSentAggregate(es.AggregateCreator(), repoUser)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoUser.AppendEvents, agg)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(repoUser)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-11 08:16:27 +00:00
|
|
|
func (es *UserEventstore) PhoneByID(ctx context.Context, userID string) (*usr_model.Phone, error) {
|
|
|
|
if userID == "" {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-do9se", "userID missing")
|
|
|
|
}
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if user.Phone != nil {
|
|
|
|
return user.Phone, nil
|
|
|
|
}
|
|
|
|
return nil, caos_errs.ThrowNotFound(nil, "EVENT-pos9e", "phone not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) ChangePhone(ctx context.Context, phone *usr_model.Phone) (*usr_model.Phone, error) {
|
|
|
|
if !phone.IsValid() {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-do9s4", "phone is invalid")
|
|
|
|
}
|
|
|
|
existing, err := es.UserByID(ctx, phone.AggregateID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
phoneCode, err := phone.GeneratePhoneCodeIfNeeded(es.PhoneVerificationCode)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
repoExisting := model.UserFromModel(existing)
|
|
|
|
repoNew := model.PhoneFromModel(phone)
|
|
|
|
repoPhoneCode := model.PhoneCodeFromModel(phoneCode)
|
|
|
|
|
|
|
|
updateAggregate := PhoneChangeAggregate(es.AggregateCreator(), repoExisting, repoNew, repoPhoneCode)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, updateAggregate)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
es.userCache.cacheUser(repoExisting)
|
|
|
|
return model.PhoneToModel(repoExisting.Phone), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) VerifyPhone(ctx context.Context, userID, verificationCode string) error {
|
|
|
|
if userID == "" || verificationCode == "" {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-dsi8s", "userId or Code empty")
|
|
|
|
}
|
|
|
|
existing, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if existing.PhoneCode == nil {
|
|
|
|
return caos_errs.ThrowNotFound(nil, "EVENT-slp0s", "code not found")
|
|
|
|
}
|
2020-06-05 05:50:04 +00:00
|
|
|
|
|
|
|
err = crypto.VerifyCode(existing.PhoneCode.CreationDate, existing.PhoneCode.Expiry, existing.PhoneCode.Code, verificationCode, es.PhoneVerificationCode)
|
|
|
|
if err == nil {
|
|
|
|
return es.setPhoneVerifyResult(ctx, existing, PhoneVerifiedAggregate)
|
|
|
|
}
|
|
|
|
if err := es.setPhoneVerifyResult(ctx, existing, PhoneVerificationFailedAggregate); err != nil {
|
2020-05-11 08:16:27 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-06-05 05:50:04 +00:00
|
|
|
return caos_errs.ThrowInvalidArgument(err, "EVENT-dsf4G", "invalid code")
|
|
|
|
}
|
2020-05-11 08:16:27 +00:00
|
|
|
|
2020-06-05 05:50:04 +00:00
|
|
|
func (es *UserEventstore) setPhoneVerifyResult(ctx context.Context, existing *usr_model.User, check func(aggCreator *es_models.AggregateCreator, existing *model.User) es_sdk.AggregateFunc) error {
|
2020-05-11 08:16:27 +00:00
|
|
|
repoExisting := model.UserFromModel(existing)
|
2020-06-05 05:50:04 +00:00
|
|
|
err := es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, check(es.AggregateCreator(), repoExisting))
|
2020-05-11 08:16:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(repoExisting)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) CreatePhoneVerificationCode(ctx context.Context, userID string) error {
|
|
|
|
if userID == "" {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-do9sw", "userID missing")
|
|
|
|
}
|
|
|
|
existing, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if existing.Phone == nil {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-sp9fs", "no phone existing")
|
|
|
|
}
|
|
|
|
if existing.IsPhoneVerified {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-sleis", "phone already verified")
|
|
|
|
}
|
|
|
|
|
|
|
|
phoneCode := new(usr_model.PhoneCode)
|
|
|
|
err = phoneCode.GeneratePhoneCode(es.PhoneVerificationCode)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
repoExisting := model.UserFromModel(existing)
|
|
|
|
repoPhoneCode := model.PhoneCodeFromModel(phoneCode)
|
|
|
|
updateAggregate := PhoneVerificationCodeAggregate(es.AggregateCreator(), repoExisting, repoPhoneCode)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, updateAggregate)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
es.userCache.cacheUser(repoExisting)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-20 12:28:08 +00:00
|
|
|
func (es *UserEventstore) PhoneVerificationCodeSent(ctx context.Context, userID string) error {
|
|
|
|
if userID == "" {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-sp0wa", "userID missing")
|
|
|
|
}
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
repoUser := model.UserFromModel(user)
|
|
|
|
agg := PhoneCodeSentAggregate(es.AggregateCreator(), repoUser)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoUser.AppendEvents, agg)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
es.userCache.cacheUser(repoUser)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-11 08:16:27 +00:00
|
|
|
func (es *UserEventstore) AddressByID(ctx context.Context, userID string) (*usr_model.Address, error) {
|
|
|
|
if userID == "" {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-di8ws", "userID missing")
|
|
|
|
}
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if user.Address != nil {
|
|
|
|
return user.Address, nil
|
|
|
|
}
|
|
|
|
return nil, caos_errs.ThrowNotFound(nil, "EVENT-so9wa", "address not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) ChangeAddress(ctx context.Context, address *usr_model.Address) (*usr_model.Address, error) {
|
|
|
|
existing, err := es.UserByID(ctx, address.AggregateID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
repoExisting := model.UserFromModel(existing)
|
|
|
|
repoNew := model.AddressFromModel(address)
|
|
|
|
|
|
|
|
updateAggregate := AddressChangeAggregate(es.AggregateCreator(), repoExisting, repoNew)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, updateAggregate)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
es.userCache.cacheUser(repoExisting)
|
|
|
|
return model.AddressToModel(repoExisting.Address), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) AddOTP(ctx context.Context, userID string) (*usr_model.OTP, error) {
|
|
|
|
existing, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if existing.IsOTPReady() {
|
2020-06-11 11:22:24 +00:00
|
|
|
return nil, caos_errs.ThrowAlreadyExists(nil, "EVENT-do9se", "Errors.User.Mfa.Otp.AlreadyReady")
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
|
|
|
key, err := totp.Generate(totp.GenerateOpts{Issuer: es.Multifactors.OTP.Issuer, AccountName: userID})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
encryptedSecret, err := crypto.Encrypt([]byte(key.Secret()), es.Multifactors.OTP.CryptoMFA)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
repoOtp := &model.OTP{Secret: encryptedSecret}
|
|
|
|
repoExisting := model.UserFromModel(existing)
|
|
|
|
updateAggregate := MfaOTPAddAggregate(es.AggregateCreator(), repoExisting, repoOtp)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, updateAggregate)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
es.userCache.cacheUser(repoExisting)
|
|
|
|
otp := model.OTPToModel(repoExisting.OTP)
|
|
|
|
otp.Url = key.URL()
|
|
|
|
otp.SecretString = key.Secret()
|
|
|
|
return otp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) RemoveOTP(ctx context.Context, userID string) error {
|
|
|
|
existing, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if existing.OTP == nil {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-sp0de", "no otp existing")
|
|
|
|
}
|
|
|
|
repoExisting := model.UserFromModel(existing)
|
|
|
|
updateAggregate := MfaOTPRemoveAggregate(es.AggregateCreator(), repoExisting)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, updateAggregate)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
es.userCache.cacheUser(repoExisting)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-18 10:06:36 +00:00
|
|
|
func (es *UserEventstore) CheckMfaOTPSetup(ctx context.Context, userID, code string) error {
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
2020-05-11 08:16:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-06-11 11:22:24 +00:00
|
|
|
if user.OTP == nil {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-sd5NJ", "Errors.Users.Mfa.Otp.NotExisting")
|
|
|
|
}
|
|
|
|
if user.IsOTPReady() {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-sd5NJ", "Errors.Users.Mfa.Otp.AlreadyReady")
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
|
|
|
if err := es.verifyMfaOTP(user.OTP, code); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
repoUser := model.UserFromModel(user)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoUser.AppendEvents, MfaOTPVerifyAggregate(es.AggregateCreator(), repoUser))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
2020-05-18 10:06:36 +00:00
|
|
|
|
|
|
|
es.userCache.cacheUser(repoUser)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) CheckMfaOTP(ctx context.Context, userID, code string, authRequest *req_model.AuthRequest) error {
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
2020-05-11 08:16:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-05-18 10:06:36 +00:00
|
|
|
if !user.IsOTPReady() {
|
2020-06-11 11:22:24 +00:00
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-sd5NJ", "Errors.User.Mfa.Otp.NotReady")
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
2020-05-11 08:16:27 +00:00
|
|
|
|
2020-05-18 10:06:36 +00:00
|
|
|
repoUser := model.UserFromModel(user)
|
|
|
|
repoAuthReq := model.AuthRequestFromModel(authRequest)
|
|
|
|
var aggregate func(*es_models.AggregateCreator, *model.User, *model.AuthRequest) es_sdk.AggregateFunc
|
2020-06-11 11:22:24 +00:00
|
|
|
var checkErr error
|
|
|
|
if checkErr = es.verifyMfaOTP(user.OTP, code); checkErr != nil {
|
2020-05-18 10:06:36 +00:00
|
|
|
aggregate = MfaOTPCheckFailedAggregate
|
|
|
|
} else {
|
|
|
|
aggregate = MfaOTPCheckSucceededAggregate
|
|
|
|
}
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoUser.AppendEvents, aggregate(es.AggregateCreator(), repoUser, repoAuthReq))
|
2020-06-11 11:22:24 +00:00
|
|
|
if checkErr != nil {
|
|
|
|
return checkErr
|
|
|
|
}
|
2020-05-18 10:06:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
es.userCache.cacheUser(repoUser)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (es *UserEventstore) verifyMfaOTP(otp *usr_model.OTP, code string) error {
|
|
|
|
decrypt, err := crypto.DecryptString(otp.Secret, es.Multifactors.OTP.CryptoMFA)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
valid := es.validateTOTP(code, decrypt)
|
2020-05-11 08:16:27 +00:00
|
|
|
if !valid {
|
2020-06-11 11:22:24 +00:00
|
|
|
return caos_errs.ThrowInvalidArgument(nil, "EVENT-8isk2", "Errors.User.Mfa.Otp.InvalidCode")
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2020-05-18 10:06:36 +00:00
|
|
|
|
|
|
|
func (es *UserEventstore) SignOut(ctx context.Context, agentID, userID string) error {
|
|
|
|
user, err := es.UserByID(ctx, userID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
repoUser := model.UserFromModel(user)
|
|
|
|
err = es_sdk.Push(ctx, es.PushAggregates, repoUser.AppendEvents, SignOutAggregate(es.AggregateCreator(), repoUser, agentID))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
es.userCache.cacheUser(repoUser)
|
|
|
|
return nil
|
|
|
|
}
|