mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
65a8efeb0e
* fix: use pointer in events * fix: change user requests to command side * fix: org policy * fix: profile
54 lines
1.5 KiB
Go
54 lines
1.5 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 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
|
|
}
|