mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-14 14:53:21 +00:00
feat: Policy (#79)
* policy added * Make it executable * Make it executable, corrections * password age policy added * password lockout policy added * corrections * policy added * Make it executable * Make it executable, corrections * password age policy added * password lockout policy added * corrections * fix(repository): remove second policy * complaints corrected * Init tests * add some tests * more tests added * systemfefaults added * default values load added * check for default value added * fixes * fixed * create policy if not exists * eventstore tests added Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
This commit is contained in:
@@ -0,0 +1,86 @@
|
||||
package eventsourcing
|
||||
|
||||
import (
|
||||
"context"
|
||||
"strconv"
|
||||
|
||||
"github.com/caos/zitadel/internal/api/auth"
|
||||
caos_errs "github.com/caos/zitadel/internal/errors"
|
||||
es_sdk "github.com/caos/zitadel/internal/eventstore/sdk"
|
||||
pol_model "github.com/caos/zitadel/internal/policy/model"
|
||||
)
|
||||
|
||||
func (es *PolicyEventstore) GetPasswordComplexityPolicy(ctx context.Context, id string) (*pol_model.PasswordComplexityPolicy, error) {
|
||||
policy := es.policyCache.getComplexityPolicy(id)
|
||||
|
||||
query := PasswordComplexityPolicyQuery(id, policy.Sequence)
|
||||
err := es_sdk.Filter(ctx, es.FilterEvents, policy.AppendEvents, query)
|
||||
if caos_errs.IsNotFound(err) && es.passwordComplexityPolicyDefault.Description != "" {
|
||||
policy.Description = es.passwordComplexityPolicyDefault.Description
|
||||
policy.MinLength = es.passwordComplexityPolicyDefault.MinLength
|
||||
policy.HasLowercase = es.passwordComplexityPolicyDefault.HasLowercase
|
||||
policy.HasUppercase = es.passwordComplexityPolicyDefault.HasUppercase
|
||||
policy.HasNumber = es.passwordComplexityPolicyDefault.HasNumber
|
||||
policy.HasSymbol = es.passwordComplexityPolicyDefault.HasSymbol
|
||||
} else if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
es.policyCache.cacheComplexityPolicy(policy)
|
||||
return PasswordComplexityPolicyToModel(policy), nil
|
||||
}
|
||||
|
||||
func (es *PolicyEventstore) CreatePasswordComplexityPolicy(ctx context.Context, policy *pol_model.PasswordComplexityPolicy) (*pol_model.PasswordComplexityPolicy, error) {
|
||||
if !policy.IsValid() {
|
||||
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-9dk45", "Description is required")
|
||||
}
|
||||
ctxData := auth.GetCtxData(ctx)
|
||||
existingPolicy, err := es.GetPasswordComplexityPolicy(ctx, ctxData.OrgID)
|
||||
if err != nil && !caos_errs.IsNotFound(err) {
|
||||
return nil, err
|
||||
}
|
||||
if existingPolicy != nil && existingPolicy.Sequence > 0 {
|
||||
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-yDJ5I", "Policy allready exists")
|
||||
}
|
||||
|
||||
id, err := idGenerator.NextID()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
policy.AggregateID = strconv.FormatUint(id, 10)
|
||||
|
||||
repoPolicy := PasswordComplexityPolicyFromModel(policy)
|
||||
|
||||
createAggregate := PasswordComplexityPolicyCreateAggregate(es.AggregateCreator(), repoPolicy)
|
||||
err = es_sdk.Push(ctx, es.PushAggregates, repoPolicy.AppendEvents, createAggregate)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
es.policyCache.cacheComplexityPolicy(repoPolicy)
|
||||
return PasswordComplexityPolicyToModel(repoPolicy), nil
|
||||
}
|
||||
|
||||
func (es *PolicyEventstore) UpdatePasswordComplexityPolicy(ctx context.Context, policy *pol_model.PasswordComplexityPolicy) (*pol_model.PasswordComplexityPolicy, error) {
|
||||
if !policy.IsValid() {
|
||||
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-9dk45", "Description is required")
|
||||
}
|
||||
ctxData := auth.GetCtxData(ctx)
|
||||
existingPolicy, err := es.GetPasswordComplexityPolicy(ctx, ctxData.OrgID)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if existingPolicy.Sequence <= 0 {
|
||||
return es.CreatePasswordComplexityPolicy(ctx, policy)
|
||||
}
|
||||
repoExisting := PasswordComplexityPolicyFromModel(existingPolicy)
|
||||
repoNew := PasswordComplexityPolicyFromModel(policy)
|
||||
|
||||
updateAggregate := PasswordComplexityPolicyUpdateAggregate(es.AggregateCreator(), repoExisting, repoNew)
|
||||
err = es_sdk.Push(ctx, es.PushAggregates, repoExisting.AppendEvents, updateAggregate)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
es.policyCache.cacheComplexityPolicy(repoExisting)
|
||||
return PasswordComplexityPolicyToModel(repoExisting), nil
|
||||
}
|
||||
Reference in New Issue
Block a user