mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
389eb4a27a
* start v2 * start * run * some cleanup * remove v2 pkg again * simplify * webauthn * remove unused config * fix login path in Dockerfile * fix asset_generator.go * health handler * fix grpc web * refactor * merge * build new main.go * run new main.go * update logging pkg * fix error msg * update logging * cleanup * cleanup * go mod tidy * change localDevMode * fix customEndpoints * update logging * comments * change local flag to external configs * fix location generated go code * fix Co-authored-by: fforootd <florian@caos.ch>
57 lines
1.7 KiB
Go
57 lines
1.7 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/caos/zitadel/internal/domain"
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
)
|
|
|
|
type Step12 struct {
|
|
TierName string
|
|
TierDescription string
|
|
AuditLogRetention time.Duration
|
|
LoginPolicyFactors bool
|
|
LoginPolicyIDP bool
|
|
LoginPolicyPasswordless bool
|
|
LoginPolicyRegistration bool
|
|
LoginPolicyUsernameLogin bool
|
|
PasswordComplexityPolicy bool
|
|
LabelPolicy bool
|
|
CustomDomain bool
|
|
}
|
|
|
|
func (s *Step12) Step() domain.Step {
|
|
return domain.Step12
|
|
}
|
|
|
|
func (s *Step12) execute(ctx context.Context, commandSide *Commands) error {
|
|
return commandSide.SetupStep12(ctx, s)
|
|
}
|
|
|
|
func (c *Commands) SetupStep12(ctx context.Context, step *Step12) error {
|
|
fn := func(iam *IAMWriteModel) ([]eventstore.Command, error) {
|
|
featuresWriteModel := NewIAMFeaturesWriteModel()
|
|
featuresEvent, err := c.setDefaultFeatures(ctx, featuresWriteModel, &domain.Features{
|
|
TierName: step.TierName,
|
|
TierDescription: step.TierDescription,
|
|
State: domain.FeaturesStateActive,
|
|
AuditLogRetention: step.AuditLogRetention,
|
|
LoginPolicyFactors: step.LoginPolicyFactors,
|
|
LoginPolicyIDP: step.LoginPolicyIDP,
|
|
LoginPolicyPasswordless: step.LoginPolicyPasswordless,
|
|
LoginPolicyRegistration: step.LoginPolicyRegistration,
|
|
LoginPolicyUsernameLogin: step.LoginPolicyUsernameLogin,
|
|
PasswordComplexityPolicy: step.PasswordComplexityPolicy,
|
|
LabelPolicyPrivateLabel: step.LabelPolicy,
|
|
CustomDomain: step.CustomDomain,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return []eventstore.Command{featuresEvent}, nil
|
|
}
|
|
return c.setup(ctx, step, fn)
|
|
}
|