mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-05 22:52:46 +00:00
00fec8830a
* fix: push events instead of aggregates * fix: tests * try without aggregate methods and with aggregate methods * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: client secret * fix: query eventtypes * fix: query eventtypes * fix: eventstore index * fix: index * fix: merge new eventstore * fix: remove unnecessary todos * fix: remove unnecessary todos Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
40 lines
1.0 KiB
Go
40 lines
1.0 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/zitadel/internal/eventstore/v2"
|
|
|
|
"github.com/caos/logging"
|
|
|
|
"github.com/caos/zitadel/internal/v2/domain"
|
|
)
|
|
|
|
type Step7 struct {
|
|
OTP bool
|
|
}
|
|
|
|
func (s *Step7) Step() domain.Step {
|
|
return domain.Step7
|
|
}
|
|
|
|
func (s *Step7) execute(ctx context.Context, commandSide *CommandSide) error {
|
|
return commandSide.SetupStep7(ctx, s)
|
|
}
|
|
|
|
func (r *CommandSide) SetupStep7(ctx context.Context, step *Step7) error {
|
|
fn := func(iam *IAMWriteModel) ([]eventstore.EventPusher, error) {
|
|
secondFactorModel := NewIAMSecondFactorWriteModel()
|
|
iamAgg := IAMAggregateFromWriteModel(&secondFactorModel.SecondFactorWriteModel.WriteModel)
|
|
if !step.OTP {
|
|
return []eventstore.EventPusher{}, nil
|
|
}
|
|
event, err := r.addSecondFactorToDefaultLoginPolicy(ctx, iamAgg, secondFactorModel, domain.SecondFactorTypeOTP)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
logging.Log("SETUP-Dggsg").Info("added OTP to 2FA login policy")
|
|
return []eventstore.EventPusher{event}, nil
|
|
}
|
|
return r.setup(ctx, step, fn)
|
|
}
|