mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
12be21a3ff
creates events structures for initial projections and read models
42 lines
1.2 KiB
Go
42 lines
1.2 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 machineAddedPayload struct {
|
|
Username string `json:"userName"`
|
|
Name string `json:"name,omitempty"`
|
|
Description string `json:"description,omitempty"`
|
|
AccessTokenType domain.OIDCTokenType `json:"accessTokenType,omitempty"`
|
|
}
|
|
|
|
type MachineAddedEvent eventstore.Event[machineAddedPayload]
|
|
|
|
const MachineAddedType = machinePrefix + ".added"
|
|
|
|
var _ eventstore.TypeChecker = (*MachineAddedEvent)(nil)
|
|
|
|
// ActionType implements eventstore.Typer.
|
|
func (c *MachineAddedEvent) ActionType() string {
|
|
return MachineAddedType
|
|
}
|
|
|
|
func MachineAddedEventFromStorage(event *eventstore.StorageEvent) (e *MachineAddedEvent, _ error) {
|
|
if event.Type != e.ActionType() {
|
|
return nil, zerrors.ThrowInvalidArgument(nil, "USER-WLLoW", "Errors.Invalid.Event.Type")
|
|
}
|
|
|
|
payload, err := eventstore.UnmarshalPayload[machineAddedPayload](event.Payload)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &MachineAddedEvent{
|
|
StorageEvent: event,
|
|
Payload: payload,
|
|
}, nil
|
|
}
|