mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
b5564572bc
This implementation increases parallel write capabilities of the eventstore. Please have a look at the technical advisories: [05](https://zitadel.com/docs/support/advisory/a10005) and [06](https://zitadel.com/docs/support/advisory/a10006). The implementation of eventstore.push is rewritten and stored events are migrated to a new table `eventstore.events2`. If you are using cockroach: make sure that the database user of ZITADEL has `VIEWACTIVITY` grant. This is used to query events.
60 lines
1.3 KiB
Go
60 lines
1.3 KiB
Go
package keypair
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/zitadel/zitadel/internal/crypto"
|
|
"github.com/zitadel/zitadel/internal/errors"
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
)
|
|
|
|
const (
|
|
AddedCertificateEventType = eventTypePrefix + "certificate.added"
|
|
)
|
|
|
|
type AddedCertificateEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
Certificate *Key `json:"certificate"`
|
|
}
|
|
|
|
func (e *AddedCertificateEvent) Payload() interface{} {
|
|
return e
|
|
}
|
|
|
|
func (e *AddedCertificateEvent) UniqueConstraints() []*eventstore.UniqueConstraint {
|
|
return nil
|
|
}
|
|
|
|
func NewAddedCertificateEvent(
|
|
ctx context.Context,
|
|
aggregate *eventstore.Aggregate,
|
|
certificateCrypto *crypto.CryptoValue,
|
|
certificateExpiration time.Time) *AddedCertificateEvent {
|
|
return &AddedCertificateEvent{
|
|
BaseEvent: *eventstore.NewBaseEventForPush(
|
|
ctx,
|
|
aggregate,
|
|
AddedCertificateEventType,
|
|
),
|
|
Certificate: &Key{
|
|
Key: certificateCrypto,
|
|
Expiry: certificateExpiration,
|
|
},
|
|
}
|
|
}
|
|
|
|
func AddedCertificateEventMapper(event eventstore.Event) (eventstore.Event, error) {
|
|
e := &AddedCertificateEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
|
|
err := event.Unmarshal(e)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "KEY-4n9vs", "unable to unmarshal certificate added")
|
|
}
|
|
|
|
return e, nil
|
|
}
|