mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-15 04:18:01 +00:00
39 lines
1.0 KiB
Go
39 lines
1.0 KiB
Go
|
package user
|
||
|
|
||
|
import (
|
||
|
"github.com/zitadel/zitadel/internal/domain"
|
||
|
"github.com/zitadel/zitadel/internal/v2/eventstore"
|
||
|
"github.com/zitadel/zitadel/internal/zerrors"
|
||
|
)
|
||
|
|
||
|
type humanPhoneChangedPayload struct {
|
||
|
PhoneNumber domain.PhoneNumber `json:"phone,omitempty"`
|
||
|
}
|
||
|
|
||
|
type HumanPhoneChangedEvent eventstore.Event[humanPhoneChangedPayload]
|
||
|
|
||
|
const HumanPhoneChangedType = humanPrefix + ".phone.changed"
|
||
|
|
||
|
var _ eventstore.TypeChecker = (*HumanPhoneChangedEvent)(nil)
|
||
|
|
||
|
// ActionType implements eventstore.Typer.
|
||
|
func (c *HumanPhoneChangedEvent) ActionType() string {
|
||
|
return HumanPhoneChangedType
|
||
|
}
|
||
|
|
||
|
func HumanPhoneChangedEventFromStorage(event *eventstore.StorageEvent) (e *HumanPhoneChangedEvent, _ error) {
|
||
|
if event.Type != e.ActionType() {
|
||
|
return nil, zerrors.ThrowInvalidArgument(nil, "USER-d6hGS", "Errors.Invalid.Event.Type")
|
||
|
}
|
||
|
|
||
|
payload, err := eventstore.UnmarshalPayload[humanPhoneChangedPayload](event.Payload)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return &HumanPhoneChangedEvent{
|
||
|
StorageEvent: event,
|
||
|
Payload: payload,
|
||
|
}, nil
|
||
|
}
|