mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
21ffe1b0cb
* fix: split command query side * fix: split command query side * fix: members in correct pkg structure * fix: label policy in correct pkg structure * fix: structure * fix: structure of login policy * fix: identityprovider structure * fix: org iam policy structure * fix: password age policy structure * fix: password complexity policy structure * fix: password lockout policy structure * fix: idp structure * fix: user events structure * fix: user write model * fix: profile email changed command * fix: address changed command * fix: user states * fix: user * fix: org structure and add human * begin iam setup command side * setup * step2 * step2 * fix: add user * step2 * isvalid * fix: folder structure v2 business Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
115 lines
3.0 KiB
Go
115 lines
3.0 KiB
Go
package policy
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/caos/zitadel/internal/errors"
|
|
"github.com/caos/zitadel/internal/eventstore/v2"
|
|
"github.com/caos/zitadel/internal/eventstore/v2/repository"
|
|
)
|
|
|
|
const (
|
|
PasswordComplexityPolicyAddedEventType = "policy.password.complexity.added"
|
|
PasswordComplexityPolicyChangedEventType = "policy.password.complexity.changed"
|
|
PasswordComplexityPolicyRemovedEventType = "policy.password.complexity.removed"
|
|
)
|
|
|
|
type PasswordComplexityPolicyAddedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
MinLength uint64 `json:"minLength,omitempty"`
|
|
HasLowercase bool `json:"hasLowercase"`
|
|
HasUpperCase bool `json:"hasUppercase"`
|
|
HasNumber bool `json:"hasNumber"`
|
|
HasSymbol bool `json:"hasSymbol"`
|
|
}
|
|
|
|
func (e *PasswordComplexityPolicyAddedEvent) Data() interface{} {
|
|
return e
|
|
}
|
|
|
|
func NewPasswordComplexityPolicyAddedEvent(
|
|
base *eventstore.BaseEvent,
|
|
minLength uint64,
|
|
hasLowerCase,
|
|
hasUpperCase,
|
|
hasNumber,
|
|
hasSymbol bool,
|
|
) *PasswordComplexityPolicyAddedEvent {
|
|
return &PasswordComplexityPolicyAddedEvent{
|
|
BaseEvent: *base,
|
|
MinLength: minLength,
|
|
HasLowercase: hasLowerCase,
|
|
HasNumber: hasNumber,
|
|
HasSymbol: hasSymbol,
|
|
HasUpperCase: hasUpperCase,
|
|
}
|
|
}
|
|
|
|
func PasswordComplexityPolicyAddedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
|
e := &PasswordComplexityPolicyAddedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
|
|
err := json.Unmarshal(event.Data, e)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "POLIC-wYxlM", "unable to unmarshal policy")
|
|
}
|
|
|
|
return e, nil
|
|
}
|
|
|
|
type PasswordComplexityPolicyChangedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
MinLength uint64 `json:"minLength"`
|
|
HasLowercase bool `json:"hasLowercase"`
|
|
HasUpperCase bool `json:"hasUppercase"`
|
|
HasNumber bool `json:"hasNumber"`
|
|
HasSymbol bool `json:"hasSymbol"`
|
|
}
|
|
|
|
func (e *PasswordComplexityPolicyChangedEvent) Data() interface{} {
|
|
return e
|
|
}
|
|
|
|
func NewPasswordComplexityPolicyChangedEvent(
|
|
base *eventstore.BaseEvent,
|
|
) *PasswordComplexityPolicyChangedEvent {
|
|
return &PasswordComplexityPolicyChangedEvent{
|
|
BaseEvent: *base,
|
|
}
|
|
}
|
|
|
|
func PasswordComplexityPolicyChangedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
|
e := &PasswordComplexityPolicyChangedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
|
|
err := json.Unmarshal(event.Data, e)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "POLIC-zBGB0", "unable to unmarshal policy")
|
|
}
|
|
|
|
return e, nil
|
|
}
|
|
|
|
type PasswordComplexityPolicyRemovedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
}
|
|
|
|
func (e *PasswordComplexityPolicyRemovedEvent) Data() interface{} {
|
|
return nil
|
|
}
|
|
|
|
func NewPasswordComplexityPolicyRemovedEvent(base *eventstore.BaseEvent) *PasswordComplexityPolicyRemovedEvent {
|
|
return &PasswordComplexityPolicyRemovedEvent{
|
|
BaseEvent: *base,
|
|
}
|
|
}
|
|
|
|
func PasswordComplexityPolicyRemovedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
|
return &PasswordComplexityPolicyRemovedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}, nil
|
|
}
|