mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-08 23:14:32 +00:00

* fix: rename iam command side to instance * fix: rename iam command side to instance * fix: rename iam command side to instance * fix: rename iam command side to instance * fix: rename orgiampolicy to domain policy * fix: merge conflicts * fix: protos * fix: md files * implement deprecated org iam policy again Co-authored-by: Livio Amstutz <livio.a@gmail.com>
40 lines
1.0 KiB
Go
40 lines
1.0 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/logging"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
|
|
"github.com/caos/zitadel/internal/domain"
|
|
)
|
|
|
|
type Step3 struct {
|
|
DefaultPasswordAgePolicy domain.PasswordAgePolicy
|
|
}
|
|
|
|
func (s *Step3) Step() domain.Step {
|
|
return domain.Step3
|
|
}
|
|
|
|
func (s *Step3) execute(ctx context.Context, commandSide *Commands) error {
|
|
return commandSide.SetupStep3(ctx, s)
|
|
}
|
|
|
|
func (c *Commands) SetupStep3(ctx context.Context, step *Step3) error {
|
|
fn := func(iam *InstanceWriteModel) ([]eventstore.Command, error) {
|
|
iamAgg := InstanceAggregateFromWriteModel(&iam.WriteModel)
|
|
event, err := c.addDefaultPasswordAgePolicy(ctx, iamAgg, NewInstancePasswordAgePolicyWriteModel(), &domain.PasswordAgePolicy{
|
|
MaxAgeDays: step.DefaultPasswordAgePolicy.MaxAgeDays,
|
|
ExpireWarnDays: step.DefaultPasswordAgePolicy.ExpireWarnDays,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
logging.Log("SETUP-DBqgq").Info("default password age policy set up")
|
|
return []eventstore.Command{event}, nil
|
|
}
|
|
return c.setup(ctx, step, fn)
|
|
}
|