2023-02-02 10:55:24 +01:00
|
|
|
package datastore
|
|
|
|
|
2023-03-02 13:05:24 +01:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/lestrrat-go/jwx/v2/jwk"
|
|
|
|
)
|
2023-02-02 10:55:24 +01:00
|
|
|
|
|
|
|
type AgentRepository interface {
|
2023-03-02 13:05:24 +01:00
|
|
|
Create(ctx context.Context, thumbprint string, keySet jwk.Set, metadata map[string]any) (*Agent, error)
|
2023-02-02 10:55:24 +01:00
|
|
|
Get(ctx context.Context, id AgentID) (*Agent, error)
|
|
|
|
Update(ctx context.Context, id AgentID, updates ...AgentUpdateOptionFunc) (*Agent, error)
|
|
|
|
Query(ctx context.Context, opts ...AgentQueryOptionFunc) ([]*Agent, int, error)
|
|
|
|
Delete(ctx context.Context, id AgentID) error
|
|
|
|
|
|
|
|
UpdateSpec(ctx context.Context, id AgentID, name string, revision int, data map[string]any) (*Spec, error)
|
|
|
|
GetSpecs(ctx context.Context, id AgentID) ([]*Spec, error)
|
|
|
|
DeleteSpec(ctx context.Context, id AgentID, name string) error
|
|
|
|
}
|
|
|
|
|
|
|
|
type AgentQueryOptionFunc func(*AgentQueryOptions)
|
|
|
|
|
|
|
|
type AgentQueryOptions struct {
|
2023-03-02 13:05:24 +01:00
|
|
|
Limit *int
|
|
|
|
Offset *int
|
|
|
|
IDs []AgentID
|
|
|
|
Thumbprints []string
|
|
|
|
Metadata *map[string]any
|
|
|
|
Statuses []AgentStatus
|
2023-02-02 10:55:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func WithAgentQueryLimit(limit int) AgentQueryOptionFunc {
|
|
|
|
return func(opts *AgentQueryOptions) {
|
|
|
|
opts.Limit = &limit
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func WithAgentQueryOffset(offset int) AgentQueryOptionFunc {
|
|
|
|
return func(opts *AgentQueryOptions) {
|
|
|
|
opts.Offset = &offset
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-02 13:05:24 +01:00
|
|
|
func WithAgentQueryMetadata(metadata map[string]any) AgentQueryOptionFunc {
|
2023-02-02 10:55:24 +01:00
|
|
|
return func(opts *AgentQueryOptions) {
|
2023-03-02 13:05:24 +01:00
|
|
|
opts.Metadata = &metadata
|
2023-02-02 10:55:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func WithAgentQueryID(ids ...AgentID) AgentQueryOptionFunc {
|
|
|
|
return func(opts *AgentQueryOptions) {
|
|
|
|
opts.IDs = ids
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func WithAgentQueryStatus(statuses ...AgentStatus) AgentQueryOptionFunc {
|
|
|
|
return func(opts *AgentQueryOptions) {
|
|
|
|
opts.Statuses = statuses
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-02 13:05:24 +01:00
|
|
|
func WithAgentQueryThumbprints(thumbprints ...string) AgentQueryOptionFunc {
|
|
|
|
return func(opts *AgentQueryOptions) {
|
|
|
|
opts.Thumbprints = thumbprints
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-02 10:55:24 +01:00
|
|
|
type AgentUpdateOptionFunc func(*AgentUpdateOptions)
|
|
|
|
|
|
|
|
type AgentUpdateOptions struct {
|
2023-03-02 13:05:24 +01:00
|
|
|
Status *AgentStatus
|
|
|
|
Metadata *map[string]any
|
|
|
|
KeySet *jwk.Set
|
|
|
|
Thumbprint *string
|
2023-02-02 10:55:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func WithAgentUpdateStatus(status AgentStatus) AgentUpdateOptionFunc {
|
|
|
|
return func(opts *AgentUpdateOptions) {
|
|
|
|
opts.Status = &status
|
|
|
|
}
|
|
|
|
}
|
2023-03-02 13:05:24 +01:00
|
|
|
|
|
|
|
func WithAgentUpdateMetadata(metadata map[string]any) AgentUpdateOptionFunc {
|
|
|
|
return func(opts *AgentUpdateOptions) {
|
|
|
|
opts.Metadata = &metadata
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func WithAgentUpdateKeySet(keySet jwk.Set) AgentUpdateOptionFunc {
|
|
|
|
return func(opts *AgentUpdateOptions) {
|
|
|
|
opts.KeySet = &keySet
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func WithAgentUpdateThumbprint(thumbprint string) AgentUpdateOptionFunc {
|
|
|
|
return func(opts *AgentUpdateOptions) {
|
|
|
|
opts.Thumbprint = &thumbprint
|
|
|
|
}
|
|
|
|
}
|