mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-04 08:15:14 +00:00

* feat: uniqueness on events * fix: some tests * fix: add unique username * fix: nice error message * fix: add unique test * fix: add unique test * fix: add unique constraint to events * fix: correct unique constraint on user events * fix: remove user constraint * fix: add unique constraints * fix: add unique constraints * fix: add unique constraints * fix: unnique constraints without interface * fix: unique idp config * fix: unique constraint comments * fix: unique constraints in one table * fix: unique constraints error * fix: fix unique constraint on create user * fix: fix unique constraint on create project * fix: fix unique constraint on idp configs
58 lines
1.6 KiB
Go
58 lines
1.6 KiB
Go
package user
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"github.com/caos/zitadel/internal/errors"
|
|
"github.com/caos/zitadel/internal/eventstore/v2"
|
|
"github.com/caos/zitadel/internal/eventstore/v2/repository"
|
|
"github.com/caos/zitadel/internal/v2/domain"
|
|
"golang.org/x/text/language"
|
|
)
|
|
|
|
const (
|
|
profileEventPrefix = humanEventPrefix + "profile."
|
|
HumanProfileChangedType = profileEventPrefix + "changed"
|
|
)
|
|
|
|
type HumanProfileChangedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
FirstName string `json:"firstName,omitempty"`
|
|
LastName string `json:"lastName,omitempty"`
|
|
NickName *string `json:"nickName,omitempty"`
|
|
DisplayName *string `json:"displayName,omitempty"`
|
|
PreferredLanguage *language.Tag `json:"preferredLanguage,omitempty"`
|
|
Gender *domain.Gender `json:"gender,omitempty"`
|
|
}
|
|
|
|
func (e *HumanProfileChangedEvent) Data() interface{} {
|
|
return e
|
|
}
|
|
|
|
func (e *HumanProfileChangedEvent) UniqueConstraints() []*eventstore.EventUniqueConstraint {
|
|
return nil
|
|
}
|
|
|
|
func NewHumanProfileChangedEvent(
|
|
ctx context.Context) *HumanProfileChangedEvent {
|
|
return &HumanProfileChangedEvent{
|
|
BaseEvent: *eventstore.NewBaseEventForPush(
|
|
ctx,
|
|
HumanProfileChangedType,
|
|
),
|
|
}
|
|
}
|
|
|
|
func HumanProfileChangedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
|
profileChanged := &HumanProfileChangedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
err := json.Unmarshal(event.Data, profileChanged)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "USER-5M0pd", "unable to unmarshal human profile changed")
|
|
}
|
|
|
|
return profileChanged, nil
|
|
}
|