mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
65a8efeb0e
* fix: use pointer in events * fix: change user requests to command side * fix: org policy * fix: profile
107 lines
2.7 KiB
Go
107 lines
2.7 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 (
|
|
PasswordLockoutPolicyAddedEventType = "policy.password.lockout.added"
|
|
PasswordLockoutPolicyChangedEventType = "policy.password.lockout.changed"
|
|
PasswordLockoutPolicyRemovedEventType = "policy.password.lockout.removed"
|
|
)
|
|
|
|
type PasswordLockoutPolicyAddedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
MaxAttempts uint64 `json:"maxAttempts,omitempty"`
|
|
ShowLockOutFailures bool `json:"showLockOutFailures,omitempty"`
|
|
}
|
|
|
|
func (e *PasswordLockoutPolicyAddedEvent) Data() interface{} {
|
|
return e
|
|
}
|
|
|
|
func NewPasswordLockoutPolicyAddedEvent(
|
|
base *eventstore.BaseEvent,
|
|
maxAttempts uint64,
|
|
showLockOutFailures bool,
|
|
) *PasswordLockoutPolicyAddedEvent {
|
|
|
|
return &PasswordLockoutPolicyAddedEvent{
|
|
BaseEvent: *base,
|
|
MaxAttempts: maxAttempts,
|
|
ShowLockOutFailures: showLockOutFailures,
|
|
}
|
|
}
|
|
|
|
func PasswordLockoutPolicyAddedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
|
e := &PasswordLockoutPolicyAddedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
|
|
err := json.Unmarshal(event.Data, e)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "POLIC-8XiVd", "unable to unmarshal policy")
|
|
}
|
|
|
|
return e, nil
|
|
}
|
|
|
|
type PasswordLockoutPolicyChangedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
MaxAttempts *uint64 `json:"maxAttempts,omitempty"`
|
|
ShowLockOutFailures *bool `json:"showLockOutFailures,omitempty"`
|
|
}
|
|
|
|
func (e *PasswordLockoutPolicyChangedEvent) Data() interface{} {
|
|
return e
|
|
}
|
|
|
|
func NewPasswordLockoutPolicyChangedEvent(
|
|
base *eventstore.BaseEvent,
|
|
) *PasswordLockoutPolicyChangedEvent {
|
|
return &PasswordLockoutPolicyChangedEvent{
|
|
BaseEvent: *base,
|
|
}
|
|
}
|
|
|
|
func PasswordLockoutPolicyChangedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
|
e := &PasswordLockoutPolicyChangedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
|
|
err := json.Unmarshal(event.Data, e)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "POLIC-lWGRc", "unable to unmarshal policy")
|
|
}
|
|
|
|
return e, nil
|
|
}
|
|
|
|
type PasswordLockoutPolicyRemovedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
}
|
|
|
|
func (e *PasswordLockoutPolicyRemovedEvent) Data() interface{} {
|
|
return nil
|
|
}
|
|
|
|
func NewPasswordLockoutPolicyRemovedEvent(
|
|
base *eventstore.BaseEvent,
|
|
) *PasswordLockoutPolicyRemovedEvent {
|
|
|
|
return &PasswordLockoutPolicyRemovedEvent{
|
|
BaseEvent: *base,
|
|
}
|
|
}
|
|
|
|
func PasswordLockoutPolicyRemovedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
|
return &PasswordLockoutPolicyRemovedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}, nil
|
|
}
|