mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
d8e42744b4
* fix: move eventstore pkgs * fix: move eventstore pkgs * fix: remove v2 view * fix: remove v2 view
59 lines
1.7 KiB
Go
59 lines
1.7 KiB
Go
package user
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
|
|
"github.com/caos/zitadel/internal/domain"
|
|
"github.com/caos/zitadel/internal/errors"
|
|
"github.com/caos/zitadel/internal/eventstore/repository"
|
|
"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, aggregate *eventstore.Aggregate) *HumanProfileChangedEvent {
|
|
return &HumanProfileChangedEvent{
|
|
BaseEvent: *eventstore.NewBaseEventForPush(
|
|
ctx,
|
|
aggregate,
|
|
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
|
|
}
|