mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
d8e42744b4
* fix: move eventstore pkgs * fix: move eventstore pkgs * fix: remove v2 view * fix: remove v2 view
110 lines
2.7 KiB
Go
110 lines
2.7 KiB
Go
package user
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
"time"
|
|
|
|
"github.com/caos/zitadel/internal/domain"
|
|
"github.com/caos/zitadel/internal/errors"
|
|
"github.com/caos/zitadel/internal/eventstore/repository"
|
|
)
|
|
|
|
const (
|
|
machineKeyEventPrefix = machineEventPrefix + "key."
|
|
MachineKeyAddedEventType = machineKeyEventPrefix + "added"
|
|
MachineKeyRemovedEventType = machineKeyEventPrefix + "removed"
|
|
)
|
|
|
|
type MachineKeyAddedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
KeyID string `json:"keyId,omitempty"`
|
|
KeyType domain.AuthNKeyType `json:"type,omitempty"`
|
|
ExpirationDate time.Time `json:"expirationDate,omitempty"`
|
|
PublicKey []byte `json:"publicKey,omitempty"`
|
|
}
|
|
|
|
func (e *MachineKeyAddedEvent) Data() interface{} {
|
|
return e
|
|
}
|
|
|
|
func (e *MachineKeyAddedEvent) UniqueConstraints() []*eventstore.EventUniqueConstraint {
|
|
return nil
|
|
}
|
|
|
|
func NewMachineKeyAddedEvent(
|
|
ctx context.Context,
|
|
aggregate *eventstore.Aggregate,
|
|
keyID string,
|
|
keyType domain.AuthNKeyType,
|
|
expirationDate time.Time,
|
|
publicKey []byte,
|
|
) *MachineKeyAddedEvent {
|
|
return &MachineKeyAddedEvent{
|
|
BaseEvent: *eventstore.NewBaseEventForPush(
|
|
ctx,
|
|
aggregate,
|
|
MachineKeyAddedEventType,
|
|
),
|
|
KeyID: keyID,
|
|
KeyType: keyType,
|
|
ExpirationDate: expirationDate,
|
|
PublicKey: publicKey,
|
|
}
|
|
}
|
|
|
|
func MachineKeyAddedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
|
machineKeyAdded := &MachineKeyAddedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
err := json.Unmarshal(event.Data, machineKeyAdded)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "USER-p0ovS", "unable to unmarshal machine key removed")
|
|
}
|
|
|
|
return machineKeyAdded, nil
|
|
}
|
|
|
|
type MachineKeyRemovedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
KeyID string `json:"keyId,omitempty"`
|
|
}
|
|
|
|
func (e *MachineKeyRemovedEvent) Data() interface{} {
|
|
return e
|
|
}
|
|
|
|
func (e *MachineKeyRemovedEvent) UniqueConstraints() []*eventstore.EventUniqueConstraint {
|
|
return nil
|
|
}
|
|
|
|
func NewMachineKeyRemovedEvent(
|
|
ctx context.Context,
|
|
aggregate *eventstore.Aggregate,
|
|
keyID string,
|
|
) *MachineKeyRemovedEvent {
|
|
return &MachineKeyRemovedEvent{
|
|
BaseEvent: *eventstore.NewBaseEventForPush(
|
|
ctx,
|
|
aggregate,
|
|
MachineKeyRemovedEventType,
|
|
),
|
|
KeyID: keyID,
|
|
}
|
|
}
|
|
|
|
func MachineKeyRemovedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
|
machineRemoved := &MachineKeyRemovedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
err := json.Unmarshal(event.Data, machineRemoved)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "USER-5Gm9s", "unable to unmarshal machine key removed")
|
|
}
|
|
|
|
return machineRemoved, nil
|
|
}
|