mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-08 13:07:41 +00:00
00fec8830a
* fix: push events instead of aggregates * fix: tests * try without aggregate methods and with aggregate methods * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: client secret * fix: query eventtypes * fix: query eventtypes * fix: eventstore index * fix: index * fix: merge new eventstore * fix: remove unnecessary todos * fix: remove unnecessary todos Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
56 lines
1.5 KiB
Go
56 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"
|
|
)
|
|
|
|
const (
|
|
addressEventPrefix = humanEventPrefix + "address."
|
|
HumanAddressChangedType = addressEventPrefix + "changed"
|
|
)
|
|
|
|
type HumanAddressChangedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
Country *string `json:"country,omitempty"`
|
|
Locality *string `json:"locality,omitempty"`
|
|
PostalCode *string `json:"postalCode,omitempty"`
|
|
Region *string `json:"region,omitempty"`
|
|
StreetAddress *string `json:"streetAddress,omitempty"`
|
|
}
|
|
|
|
func (e *HumanAddressChangedEvent) Data() interface{} {
|
|
return e
|
|
}
|
|
|
|
func (e *HumanAddressChangedEvent) UniqueConstraints() []*eventstore.EventUniqueConstraint {
|
|
return nil
|
|
}
|
|
|
|
func NewHumanAddressChangedEvent(ctx context.Context, aggregate *eventstore.Aggregate) *HumanAddressChangedEvent {
|
|
return &HumanAddressChangedEvent{
|
|
BaseEvent: *eventstore.NewBaseEventForPush(
|
|
ctx,
|
|
aggregate,
|
|
HumanAddressChangedType,
|
|
),
|
|
}
|
|
}
|
|
|
|
func HumanAddressChangedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
|
addressChanged := &HumanAddressChangedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
err := json.Unmarshal(event.Data, addressChanged)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "USER-5M0pd", "unable to unmarshal human address changed")
|
|
}
|
|
|
|
return addressChanged, nil
|
|
}
|