mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
8dcbbc87ca
* fix: adaot config to commands (and queries) * remove dependency on vv2 in v1 * add queries user to operator * set password for queries on tests * set password for queries on tests * fix config
39 lines
1.1 KiB
Go
39 lines
1.1 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/logging"
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
|
|
"github.com/caos/zitadel/internal/domain"
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
)
|
|
|
|
type Step3 struct {
|
|
DefaultPasswordAgePolicy iam_model.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 *IAMWriteModel) ([]eventstore.EventPusher, error) {
|
|
iamAgg := IAMAggregateFromWriteModel(&iam.WriteModel)
|
|
event, err := c.addDefaultPasswordAgePolicy(ctx, iamAgg, NewIAMPasswordAgePolicyWriteModel(), &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.EventPusher{event}, nil
|
|
}
|
|
return c.setup(ctx, step, fn)
|
|
}
|