mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
3eb909c4b4
* add setup steps * refactoring * omitempty * cleanup * begin org * create org * setup org * setup org * merge * fixes * fixes * fixes * add project * add oidc application * fix app creation * add resourceOwner to writemodels * resource owner * cleanup * global org, iam project and iam member in setup * logs * logs * logs * cleanup * Update internal/v2/command/project.go Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com> * check project state * add org domain commands * add org status changes and member commands * fixes * policies * login policy * fix iam project event * mapper * label policy * change to command * fix * fix * handle change event differently and lot of fixes * fixes * changedEvent handling Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
54 lines
1.5 KiB
Go
54 lines
1.5 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/logging"
|
|
|
|
"github.com/caos/zitadel/internal/v2/domain"
|
|
iam_repo "github.com/caos/zitadel/internal/v2/repository/iam"
|
|
)
|
|
|
|
type Step9 struct {
|
|
Passwordless bool
|
|
}
|
|
|
|
func (s *Step9) Step() domain.Step {
|
|
return domain.Step9
|
|
}
|
|
|
|
func (s *Step9) execute(ctx context.Context, commandSide *CommandSide) error {
|
|
return commandSide.SetupStep9(ctx, s)
|
|
}
|
|
|
|
func (r *CommandSide) SetupStep9(ctx context.Context, step *Step9) error {
|
|
fn := func(iam *IAMWriteModel) (*iam_repo.Aggregate, error) {
|
|
multiFactorModel := NewIAMMultiFactorWriteModel()
|
|
iamAgg := IAMAggregateFromWriteModel(&multiFactorModel.MultiFactoryWriteModel.WriteModel)
|
|
if !step.Passwordless {
|
|
return iamAgg, nil
|
|
}
|
|
err := setPasswordlessAllowedInPolicy(ctx, r, iamAgg)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
logging.Log("SETUP-AEG2t").Info("allowed passwordless in login policy")
|
|
err = r.addMultiFactorToDefaultLoginPolicy(ctx, iamAgg, multiFactorModel, domain.MultiFactorTypeU2FWithPIN)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
logging.Log("SETUP-ADfng").Info("added passwordless to MFA login policy")
|
|
return iamAgg, err
|
|
}
|
|
return r.setup(ctx, step, fn)
|
|
}
|
|
|
|
func setPasswordlessAllowedInPolicy(ctx context.Context, c *CommandSide, iamAgg *iam_repo.Aggregate) error {
|
|
policy, err := c.getDefaultLoginPolicy(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
policy.PasswordlessType = domain.PasswordlessTypeAllowed
|
|
return c.changeDefaultLoginPolicy(ctx, iamAgg, NewIAMLoginPolicyWriteModel(), policy)
|
|
}
|