mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
c2e6e782a8
* 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 * idps * fixes * fixes * fixes * changedEvent handling * fix change events * remove creation date Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
50 lines
1.7 KiB
Go
50 lines
1.7 KiB
Go
package admin
|
|
|
|
import (
|
|
"github.com/caos/logging"
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
"github.com/caos/zitadel/internal/v2/domain"
|
|
"github.com/caos/zitadel/pkg/grpc/admin"
|
|
"github.com/golang/protobuf/ptypes"
|
|
"google.golang.org/protobuf/types/known/timestamppb"
|
|
)
|
|
|
|
func passwordComplexityPolicyToDomain(policy *admin.DefaultPasswordComplexityPolicyRequest) *domain.PasswordComplexityPolicy {
|
|
return &domain.PasswordComplexityPolicy{
|
|
MinLength: policy.MinLength,
|
|
HasUppercase: policy.HasUppercase,
|
|
HasLowercase: policy.HasLowercase,
|
|
HasNumber: policy.HasNumber,
|
|
HasSymbol: policy.HasSymbol,
|
|
}
|
|
}
|
|
|
|
func passwordComplexityPolicyFromDomain(policy *domain.PasswordComplexityPolicy) *admin.DefaultPasswordComplexityPolicy {
|
|
return &admin.DefaultPasswordComplexityPolicy{
|
|
MinLength: policy.MinLength,
|
|
HasUppercase: policy.HasUppercase,
|
|
HasLowercase: policy.HasLowercase,
|
|
HasNumber: policy.HasNumber,
|
|
HasSymbol: policy.HasSymbol,
|
|
ChangeDate: timestamppb.New(policy.ChangeDate),
|
|
}
|
|
}
|
|
|
|
func passwordComplexityPolicyViewFromModel(policy *iam_model.PasswordComplexityPolicyView) *admin.DefaultPasswordComplexityPolicyView {
|
|
creationDate, err := ptypes.TimestampProto(policy.CreationDate)
|
|
logging.Log("GRPC-rTs9f").OnError(err).Debug("date parse failed")
|
|
|
|
changeDate, err := ptypes.TimestampProto(policy.ChangeDate)
|
|
logging.Log("GRPC-ks9Zt").OnError(err).Debug("date parse failed")
|
|
|
|
return &admin.DefaultPasswordComplexityPolicyView{
|
|
MinLength: policy.MinLength,
|
|
HasUppercase: policy.HasUppercase,
|
|
HasLowercase: policy.HasLowercase,
|
|
HasNumber: policy.HasNumber,
|
|
HasSymbol: policy.HasSymbol,
|
|
CreationDate: creationDate,
|
|
ChangeDate: changeDate,
|
|
}
|
|
}
|