mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 13:07:31 +00:00
chore: move the go code into a subfolder
This commit is contained in:
33
apps/api/internal/repository/milestone/aggregate.go
Normal file
33
apps/api/internal/repository/milestone/aggregate.go
Normal file
@@ -0,0 +1,33 @@
|
||||
package milestone
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/zitadel/zitadel/internal/api/authz"
|
||||
"github.com/zitadel/zitadel/internal/eventstore"
|
||||
)
|
||||
|
||||
const (
|
||||
AggregateType = "milestone"
|
||||
AggregateVersion = "v2"
|
||||
)
|
||||
|
||||
type Aggregate struct {
|
||||
eventstore.Aggregate
|
||||
}
|
||||
|
||||
func NewAggregate(ctx context.Context) *Aggregate {
|
||||
return NewInstanceAggregate(authz.GetInstance(ctx).InstanceID())
|
||||
}
|
||||
|
||||
func NewInstanceAggregate(instanceID string) *Aggregate {
|
||||
return &Aggregate{
|
||||
Aggregate: eventstore.Aggregate{
|
||||
Type: AggregateType,
|
||||
Version: AggregateVersion,
|
||||
ID: instanceID,
|
||||
ResourceOwner: instanceID,
|
||||
InstanceID: instanceID,
|
||||
},
|
||||
}
|
||||
}
|
139
apps/api/internal/repository/milestone/events.go
Normal file
139
apps/api/internal/repository/milestone/events.go
Normal file
@@ -0,0 +1,139 @@
|
||||
package milestone
|
||||
|
||||
import (
|
||||
"context"
|
||||
"time"
|
||||
|
||||
"github.com/zitadel/zitadel/internal/eventstore"
|
||||
)
|
||||
|
||||
//go:generate enumer -type Type -json -linecomment
|
||||
type Type int
|
||||
|
||||
const (
|
||||
InstanceCreated Type = iota + 1
|
||||
AuthenticationSucceededOnInstance
|
||||
ProjectCreated
|
||||
ApplicationCreated
|
||||
AuthenticationSucceededOnApplication
|
||||
InstanceDeleted
|
||||
)
|
||||
|
||||
const (
|
||||
eventTypePrefix = "milestone.v2."
|
||||
ReachedEventType = eventTypePrefix + "reached"
|
||||
PushedEventType = eventTypePrefix + "pushed"
|
||||
)
|
||||
|
||||
type ReachedEvent struct {
|
||||
*eventstore.BaseEvent `json:"-"`
|
||||
MilestoneType Type `json:"type"`
|
||||
ReachedDate *time.Time `json:"reachedDate,omitempty"` // Defaults to [eventstore.BaseEvent.Creation] when empty
|
||||
}
|
||||
|
||||
// Payload implements eventstore.Command.
|
||||
func (e *ReachedEvent) Payload() any {
|
||||
return e
|
||||
}
|
||||
|
||||
func (e *ReachedEvent) UniqueConstraints() []*eventstore.UniqueConstraint {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (e *ReachedEvent) SetBaseEvent(b *eventstore.BaseEvent) {
|
||||
e.BaseEvent = b
|
||||
}
|
||||
|
||||
func (e *ReachedEvent) GetReachedDate() time.Time {
|
||||
if e.ReachedDate != nil {
|
||||
return *e.ReachedDate
|
||||
}
|
||||
return e.Creation
|
||||
}
|
||||
|
||||
func NewReachedEvent(
|
||||
ctx context.Context,
|
||||
aggregate *Aggregate,
|
||||
typ Type,
|
||||
) *ReachedEvent {
|
||||
return NewReachedEventWithDate(ctx, aggregate, typ, nil)
|
||||
}
|
||||
|
||||
// NewReachedEventWithDate creates a [ReachedEvent] with a fixed Reached Date.
|
||||
func NewReachedEventWithDate(
|
||||
ctx context.Context,
|
||||
aggregate *Aggregate,
|
||||
typ Type,
|
||||
reachedDate *time.Time,
|
||||
) *ReachedEvent {
|
||||
return &ReachedEvent{
|
||||
BaseEvent: eventstore.NewBaseEventForPush(
|
||||
ctx,
|
||||
&aggregate.Aggregate,
|
||||
ReachedEventType,
|
||||
),
|
||||
MilestoneType: typ,
|
||||
ReachedDate: reachedDate,
|
||||
}
|
||||
}
|
||||
|
||||
type PushedEvent struct {
|
||||
*eventstore.BaseEvent `json:"-"`
|
||||
MilestoneType Type `json:"type"`
|
||||
ExternalDomain string `json:"externalDomain"`
|
||||
PrimaryDomain string `json:"primaryDomain"`
|
||||
Endpoints []string `json:"endpoints"`
|
||||
PushedDate *time.Time `json:"pushedDate,omitempty"` // Defaults to [eventstore.BaseEvent.Creation] when empty
|
||||
}
|
||||
|
||||
// Payload implements eventstore.Command.
|
||||
func (p *PushedEvent) Payload() any {
|
||||
return p
|
||||
}
|
||||
|
||||
func (p *PushedEvent) UniqueConstraints() []*eventstore.UniqueConstraint {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (p *PushedEvent) SetBaseEvent(b *eventstore.BaseEvent) {
|
||||
p.BaseEvent = b
|
||||
}
|
||||
|
||||
func (e *PushedEvent) GetPushedDate() time.Time {
|
||||
if e.PushedDate != nil {
|
||||
return *e.PushedDate
|
||||
}
|
||||
return e.Creation
|
||||
}
|
||||
|
||||
func NewPushedEvent(
|
||||
ctx context.Context,
|
||||
aggregate *Aggregate,
|
||||
typ Type,
|
||||
endpoints []string,
|
||||
externalDomain string,
|
||||
) *PushedEvent {
|
||||
return NewPushedEventWithDate(ctx, aggregate, typ, endpoints, externalDomain, nil)
|
||||
}
|
||||
|
||||
// NewPushedEventWithDate creates a [PushedEvent] with a fixed Pushed Date.
|
||||
func NewPushedEventWithDate(
|
||||
ctx context.Context,
|
||||
aggregate *Aggregate,
|
||||
typ Type,
|
||||
endpoints []string,
|
||||
externalDomain string,
|
||||
pushedDate *time.Time,
|
||||
) *PushedEvent {
|
||||
return &PushedEvent{
|
||||
BaseEvent: eventstore.NewBaseEventForPush(
|
||||
ctx,
|
||||
&aggregate.Aggregate,
|
||||
PushedEventType,
|
||||
),
|
||||
MilestoneType: typ,
|
||||
Endpoints: endpoints,
|
||||
ExternalDomain: externalDomain,
|
||||
PushedDate: pushedDate,
|
||||
}
|
||||
}
|
15
apps/api/internal/repository/milestone/eventstore.go
Normal file
15
apps/api/internal/repository/milestone/eventstore.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package milestone
|
||||
|
||||
import (
|
||||
"github.com/zitadel/zitadel/internal/eventstore"
|
||||
)
|
||||
|
||||
var (
|
||||
ReachedEventMapper = eventstore.GenericEventMapper[ReachedEvent]
|
||||
PushedEventMapper = eventstore.GenericEventMapper[PushedEvent]
|
||||
)
|
||||
|
||||
func init() {
|
||||
eventstore.RegisterFilterEventMapper(AggregateType, ReachedEventType, ReachedEventMapper)
|
||||
eventstore.RegisterFilterEventMapper(AggregateType, PushedEventType, PushedEventMapper)
|
||||
}
|
113
apps/api/internal/repository/milestone/type_enumer.go
Normal file
113
apps/api/internal/repository/milestone/type_enumer.go
Normal file
@@ -0,0 +1,113 @@
|
||||
// Code generated by "enumer -type Type -json -linecomment"; DO NOT EDIT.
|
||||
|
||||
package milestone
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"strings"
|
||||
)
|
||||
|
||||
const _TypeName = "InstanceCreatedAuthenticationSucceededOnInstanceProjectCreatedApplicationCreatedAuthenticationSucceededOnApplicationInstanceDeleted"
|
||||
|
||||
var _TypeIndex = [...]uint8{0, 15, 48, 62, 80, 116, 131}
|
||||
|
||||
const _TypeLowerName = "instancecreatedauthenticationsucceededoninstanceprojectcreatedapplicationcreatedauthenticationsucceededonapplicationinstancedeleted"
|
||||
|
||||
func (i Type) String() string {
|
||||
i -= 1
|
||||
if i < 0 || i >= Type(len(_TypeIndex)-1) {
|
||||
return fmt.Sprintf("Type(%d)", i+1)
|
||||
}
|
||||
return _TypeName[_TypeIndex[i]:_TypeIndex[i+1]]
|
||||
}
|
||||
|
||||
// An "invalid array index" compiler error signifies that the constant values have changed.
|
||||
// Re-run the stringer command to generate them again.
|
||||
func _TypeNoOp() {
|
||||
var x [1]struct{}
|
||||
_ = x[InstanceCreated-(1)]
|
||||
_ = x[AuthenticationSucceededOnInstance-(2)]
|
||||
_ = x[ProjectCreated-(3)]
|
||||
_ = x[ApplicationCreated-(4)]
|
||||
_ = x[AuthenticationSucceededOnApplication-(5)]
|
||||
_ = x[InstanceDeleted-(6)]
|
||||
}
|
||||
|
||||
var _TypeValues = []Type{InstanceCreated, AuthenticationSucceededOnInstance, ProjectCreated, ApplicationCreated, AuthenticationSucceededOnApplication, InstanceDeleted}
|
||||
|
||||
var _TypeNameToValueMap = map[string]Type{
|
||||
_TypeName[0:15]: InstanceCreated,
|
||||
_TypeLowerName[0:15]: InstanceCreated,
|
||||
_TypeName[15:48]: AuthenticationSucceededOnInstance,
|
||||
_TypeLowerName[15:48]: AuthenticationSucceededOnInstance,
|
||||
_TypeName[48:62]: ProjectCreated,
|
||||
_TypeLowerName[48:62]: ProjectCreated,
|
||||
_TypeName[62:80]: ApplicationCreated,
|
||||
_TypeLowerName[62:80]: ApplicationCreated,
|
||||
_TypeName[80:116]: AuthenticationSucceededOnApplication,
|
||||
_TypeLowerName[80:116]: AuthenticationSucceededOnApplication,
|
||||
_TypeName[116:131]: InstanceDeleted,
|
||||
_TypeLowerName[116:131]: InstanceDeleted,
|
||||
}
|
||||
|
||||
var _TypeNames = []string{
|
||||
_TypeName[0:15],
|
||||
_TypeName[15:48],
|
||||
_TypeName[48:62],
|
||||
_TypeName[62:80],
|
||||
_TypeName[80:116],
|
||||
_TypeName[116:131],
|
||||
}
|
||||
|
||||
// TypeString retrieves an enum value from the enum constants string name.
|
||||
// Throws an error if the param is not part of the enum.
|
||||
func TypeString(s string) (Type, error) {
|
||||
if val, ok := _TypeNameToValueMap[s]; ok {
|
||||
return val, nil
|
||||
}
|
||||
|
||||
if val, ok := _TypeNameToValueMap[strings.ToLower(s)]; ok {
|
||||
return val, nil
|
||||
}
|
||||
return 0, fmt.Errorf("%s does not belong to Type values", s)
|
||||
}
|
||||
|
||||
// TypeValues returns all values of the enum
|
||||
func TypeValues() []Type {
|
||||
return _TypeValues
|
||||
}
|
||||
|
||||
// TypeStrings returns a slice of all String values of the enum
|
||||
func TypeStrings() []string {
|
||||
strs := make([]string, len(_TypeNames))
|
||||
copy(strs, _TypeNames)
|
||||
return strs
|
||||
}
|
||||
|
||||
// IsAType returns "true" if the value is listed in the enum definition. "false" otherwise
|
||||
func (i Type) IsAType() bool {
|
||||
for _, v := range _TypeValues {
|
||||
if i == v {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
// MarshalJSON implements the json.Marshaler interface for Type
|
||||
func (i Type) MarshalJSON() ([]byte, error) {
|
||||
return json.Marshal(i.String())
|
||||
}
|
||||
|
||||
// UnmarshalJSON implements the json.Unmarshaler interface for Type
|
||||
func (i *Type) UnmarshalJSON(data []byte) error {
|
||||
var s string
|
||||
if err := json.Unmarshal(data, &s); err != nil {
|
||||
return fmt.Errorf("Type should be a string, got %s", data)
|
||||
}
|
||||
|
||||
var err error
|
||||
*i, err = TypeString(s)
|
||||
return err
|
||||
}
|
Reference in New Issue
Block a user