2023-02-02 10:55:24 +01:00
|
|
|
package sqlite
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
2023-03-02 13:05:24 +01:00
|
|
|
"encoding/json"
|
2023-02-02 10:55:24 +01:00
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"forge.cadoles.com/Cadoles/emissary/internal/datastore"
|
2023-03-02 13:05:24 +01:00
|
|
|
|
|
|
|
"github.com/lestrrat-go/jwx/v2/jwk"
|
2023-02-02 10:55:24 +01:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
"gitlab.com/wpetit/goweb/logger"
|
|
|
|
)
|
|
|
|
|
|
|
|
type AgentRepository struct {
|
2024-02-27 14:14:30 +01:00
|
|
|
repository
|
2023-02-02 10:55:24 +01:00
|
|
|
}
|
|
|
|
|
2024-02-26 18:20:40 +01:00
|
|
|
// Attach implements datastore.AgentRepository.
|
|
|
|
func (r *AgentRepository) Attach(ctx context.Context, tenantID datastore.TenantID, agentID datastore.AgentID) (*datastore.Agent, error) {
|
|
|
|
var agent datastore.Agent
|
|
|
|
|
|
|
|
err := r.withTxRetry(ctx, func(tx *sql.Tx) error {
|
|
|
|
query := `SELECT count(id), tenant_id FROM agents WHERE id = $1`
|
|
|
|
row := tx.QueryRowContext(ctx, query, agentID)
|
|
|
|
|
|
|
|
var (
|
|
|
|
count int
|
|
|
|
attachedTenantID *datastore.TenantID
|
|
|
|
)
|
|
|
|
|
|
|
|
if err := row.Scan(&count, &attachedTenantID); err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if count == 0 {
|
|
|
|
return errors.WithStack(datastore.ErrNotFound)
|
|
|
|
}
|
|
|
|
|
|
|
|
if attachedTenantID != nil {
|
|
|
|
return errors.WithStack(datastore.ErrAlreadyAttached)
|
|
|
|
}
|
|
|
|
|
|
|
|
now := time.Now().UTC()
|
|
|
|
|
|
|
|
query = `
|
2024-02-27 09:56:15 +01:00
|
|
|
UPDATE agents SET tenant_id = $1, updated_at = $2 WHERE id = $3
|
2024-02-26 18:20:40 +01:00
|
|
|
RETURNING "id", "thumbprint", "keyset", "metadata", "status", "created_at", "updated_at", "tenant_id"
|
|
|
|
`
|
|
|
|
|
|
|
|
row = tx.QueryRowContext(
|
|
|
|
ctx, query,
|
|
|
|
tenantID,
|
|
|
|
now,
|
2024-02-27 09:56:15 +01:00
|
|
|
agentID,
|
2024-02-26 18:20:40 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
metadata := JSONMap{}
|
|
|
|
var rawKeySet []byte
|
|
|
|
|
|
|
|
err := row.Scan(&agent.ID, &agent.Thumbprint, &rawKeySet, &metadata, &agent.Status, &agent.CreatedAt, &agent.UpdatedAt, &agent.TenantID)
|
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
agent.Metadata = metadata
|
|
|
|
|
|
|
|
keySet, err := jwk.Parse(rawKeySet)
|
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
agent.KeySet = &datastore.SerializableKeySet{keySet}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &agent, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Detach implements datastore.AgentRepository.
|
2024-02-27 09:56:15 +01:00
|
|
|
func (r *AgentRepository) Detach(ctx context.Context, agentID datastore.AgentID) (*datastore.Agent, error) {
|
|
|
|
var agent datastore.Agent
|
|
|
|
|
|
|
|
err := r.withTxRetry(ctx, func(tx *sql.Tx) error {
|
|
|
|
now := time.Now().UTC()
|
|
|
|
|
|
|
|
query := `
|
|
|
|
UPDATE agents SET tenant_id = null, updated_at = $1 WHERE id = $2
|
|
|
|
RETURNING "id", "thumbprint", "keyset", "metadata", "status", "created_at", "updated_at", "tenant_id"
|
|
|
|
`
|
|
|
|
|
|
|
|
row := tx.QueryRowContext(
|
|
|
|
ctx, query,
|
|
|
|
now,
|
|
|
|
agentID,
|
|
|
|
)
|
|
|
|
|
|
|
|
metadata := JSONMap{}
|
|
|
|
var rawKeySet []byte
|
|
|
|
|
|
|
|
err := row.Scan(&agent.ID, &agent.Thumbprint, &rawKeySet, &metadata, &agent.Status, &agent.CreatedAt, &agent.UpdatedAt, &agent.TenantID)
|
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
agent.Metadata = metadata
|
|
|
|
|
|
|
|
keySet, err := jwk.Parse(rawKeySet)
|
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
agent.KeySet = &datastore.SerializableKeySet{keySet}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &agent, nil
|
2024-02-26 18:20:40 +01:00
|
|
|
}
|
|
|
|
|
2023-02-02 10:55:24 +01:00
|
|
|
// DeleteSpec implements datastore.AgentRepository.
|
2024-03-12 16:22:35 +01:00
|
|
|
func (r *AgentRepository) DeleteSpec(ctx context.Context, agentID datastore.AgentID, name string, version string) error {
|
2023-10-22 09:50:22 +02:00
|
|
|
err := r.withTxRetry(ctx, func(tx *sql.Tx) error {
|
2023-04-12 11:09:53 +02:00
|
|
|
exists, err := r.agentExists(ctx, tx, agentID)
|
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
2023-02-02 10:55:24 +01:00
|
|
|
|
2023-04-12 11:09:53 +02:00
|
|
|
if !exists {
|
|
|
|
return errors.WithStack(datastore.ErrNotFound)
|
|
|
|
}
|
|
|
|
|
2024-03-12 16:22:35 +01:00
|
|
|
query := `DELETE FROM specs WHERE agent_id = $1 AND name = $2 AND version = $3`
|
2023-04-12 11:09:53 +02:00
|
|
|
|
2024-03-12 16:22:35 +01:00
|
|
|
if _, err = tx.ExecContext(ctx, query, agentID, name, version); err != nil {
|
2023-04-12 11:09:53 +02:00
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
2023-02-02 10:55:24 +01:00
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetSpecs implements datastore.AgentRepository.
|
|
|
|
func (r *AgentRepository) GetSpecs(ctx context.Context, agentID datastore.AgentID) ([]*datastore.Spec, error) {
|
|
|
|
specs := make([]*datastore.Spec, 0)
|
|
|
|
|
2023-10-22 09:50:22 +02:00
|
|
|
err := r.withTxRetry(ctx, func(tx *sql.Tx) error {
|
2023-04-12 11:09:53 +02:00
|
|
|
exists, err := r.agentExists(ctx, tx, agentID)
|
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !exists {
|
|
|
|
return errors.WithStack(datastore.ErrNotFound)
|
|
|
|
}
|
|
|
|
|
|
|
|
query := `
|
2024-03-12 16:22:35 +01:00
|
|
|
SELECT id, name, version, revision, data, created_at, updated_at, agent_id, tenant_id
|
2023-02-02 10:55:24 +01:00
|
|
|
FROM specs
|
|
|
|
WHERE agent_id = $1
|
2023-04-12 11:09:53 +02:00
|
|
|
`
|
2023-02-02 10:55:24 +01:00
|
|
|
|
2023-04-12 11:09:53 +02:00
|
|
|
rows, err := tx.QueryContext(ctx, query, agentID)
|
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
2023-03-29 20:10:06 +02:00
|
|
|
}
|
2023-02-02 10:55:24 +01:00
|
|
|
|
2023-04-12 11:09:53 +02:00
|
|
|
defer func() {
|
|
|
|
if err := rows.Close(); err != nil {
|
2023-10-13 12:30:52 +02:00
|
|
|
err = errors.WithStack(err)
|
2023-10-19 22:09:18 +02:00
|
|
|
logger.Error(ctx, "could not close rows", logger.CapturedE(err))
|
2023-04-12 11:09:53 +02:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
for rows.Next() {
|
|
|
|
spec := &datastore.Spec{}
|
2023-02-02 10:55:24 +01:00
|
|
|
|
2023-04-12 11:09:53 +02:00
|
|
|
data := JSONMap{}
|
2023-02-02 10:55:24 +01:00
|
|
|
|
2024-03-12 16:22:35 +01:00
|
|
|
var tenantID sql.NullString
|
|
|
|
if err := rows.Scan(&spec.ID, &spec.DefinitionName, &spec.DefinitionVersion, &spec.Revision, &data, &spec.CreatedAt, &spec.UpdatedAt, &spec.AgentID, &tenantID); err != nil {
|
2023-04-12 11:09:53 +02:00
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
2023-02-02 10:55:24 +01:00
|
|
|
|
2024-03-12 16:22:35 +01:00
|
|
|
if tenantID.Valid {
|
|
|
|
spec.TenantID = datastore.TenantID(tenantID.String)
|
|
|
|
}
|
2023-04-12 11:09:53 +02:00
|
|
|
spec.Data = data
|
2023-02-02 10:55:24 +01:00
|
|
|
|
2023-04-12 11:09:53 +02:00
|
|
|
specs = append(specs, spec)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := rows.Err(); err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
2023-02-02 10:55:24 +01:00
|
|
|
|
2023-04-12 11:09:53 +02:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
2023-03-29 20:10:06 +02:00
|
|
|
return nil, errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
2023-02-02 10:55:24 +01:00
|
|
|
return specs, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateSpec implements datastore.AgentRepository.
|
2024-03-12 16:22:35 +01:00
|
|
|
func (r *AgentRepository) UpdateSpec(ctx context.Context, agentID datastore.AgentID, name string, version string, revision int, data map[string]any) (*datastore.Spec, error) {
|
2023-02-02 10:55:24 +01:00
|
|
|
spec := &datastore.Spec{}
|
|
|
|
|
2023-10-22 09:50:22 +02:00
|
|
|
err := r.withTxRetry(ctx, func(tx *sql.Tx) error {
|
2023-04-12 11:09:53 +02:00
|
|
|
exists, err := r.agentExists(ctx, tx, agentID)
|
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !exists {
|
|
|
|
return errors.WithStack(datastore.ErrNotFound)
|
|
|
|
}
|
|
|
|
|
2023-02-02 10:55:24 +01:00
|
|
|
now := time.Now().UTC()
|
|
|
|
|
|
|
|
query := `
|
2024-03-12 16:22:35 +01:00
|
|
|
INSERT INTO specs (agent_id, name, version, revision, data, created_at, updated_at, tenant_id)
|
|
|
|
VALUES($1, $2, $3, $4, $5, $6, $6, ( SELECT tenant_id FROM agents WHERE id = $1 ))
|
|
|
|
ON CONFLICT (agent_id, name, version) DO UPDATE SET
|
|
|
|
data = $5, updated_at = $6, revision = specs.revision + 1, tenant_id = ( SELECT tenant_id FROM agents WHERE id = $1 )
|
|
|
|
WHERE revision = $4
|
|
|
|
RETURNING "id", "name", "version", "revision", "data", "created_at", "updated_at", "tenant_id", "agent_id"
|
2023-02-02 10:55:24 +01:00
|
|
|
`
|
|
|
|
|
2024-03-12 16:22:35 +01:00
|
|
|
args := []any{agentID, name, version, revision, JSONMap(data), now}
|
2023-02-02 10:55:24 +01:00
|
|
|
|
|
|
|
logger.Debug(ctx, "executing query", logger.F("query", query), logger.F("args", args))
|
|
|
|
|
|
|
|
row := tx.QueryRowContext(ctx, query, args...)
|
|
|
|
|
|
|
|
data := JSONMap{}
|
2024-03-12 16:22:35 +01:00
|
|
|
var tenantID sql.NullString
|
2023-02-02 10:55:24 +01:00
|
|
|
|
2024-03-12 16:22:35 +01:00
|
|
|
err = row.Scan(&spec.ID, &spec.DefinitionName, &spec.DefinitionVersion, &spec.Revision, &data, &spec.CreatedAt, &spec.UpdatedAt, &tenantID, &spec.AgentID)
|
2023-02-02 10:55:24 +01:00
|
|
|
if err != nil {
|
|
|
|
if errors.Is(err, sql.ErrNoRows) {
|
|
|
|
return errors.WithStack(datastore.ErrUnexpectedRevision)
|
|
|
|
}
|
|
|
|
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
2024-03-12 16:22:35 +01:00
|
|
|
if tenantID.Valid {
|
|
|
|
spec.TenantID = datastore.TenantID(tenantID.String)
|
|
|
|
}
|
|
|
|
|
2023-02-02 10:55:24 +01:00
|
|
|
spec.Data = data
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return spec, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Query implements datastore.AgentRepository.
|
|
|
|
func (r *AgentRepository) Query(ctx context.Context, opts ...datastore.AgentQueryOptionFunc) ([]*datastore.Agent, int, error) {
|
|
|
|
options := &datastore.AgentQueryOptions{}
|
|
|
|
for _, fn := range opts {
|
|
|
|
fn(options)
|
|
|
|
}
|
|
|
|
|
|
|
|
agents := make([]*datastore.Agent, 0)
|
|
|
|
count := 0
|
|
|
|
|
2023-10-22 09:50:22 +02:00
|
|
|
err := r.withTxRetry(ctx, func(tx *sql.Tx) error {
|
2024-02-26 18:20:40 +01:00
|
|
|
query := `SELECT id, label, thumbprint, status, contacted_at, created_at, updated_at, tenant_id FROM agents`
|
2023-02-02 10:55:24 +01:00
|
|
|
|
|
|
|
limit := 10
|
|
|
|
if options.Limit != nil {
|
|
|
|
limit = *options.Limit
|
|
|
|
}
|
|
|
|
|
|
|
|
offset := 0
|
|
|
|
if options.Offset != nil {
|
|
|
|
offset = *options.Offset
|
|
|
|
}
|
|
|
|
|
|
|
|
filters := ""
|
|
|
|
paramIndex := 3
|
|
|
|
args := []any{offset, limit}
|
|
|
|
|
|
|
|
if options.IDs != nil && len(options.IDs) > 0 {
|
2023-03-02 13:05:24 +01:00
|
|
|
filter, newArgs, newParamIndex := inFilter("id", paramIndex, options.IDs)
|
2023-02-02 10:55:24 +01:00
|
|
|
filters += filter
|
|
|
|
paramIndex = newParamIndex
|
|
|
|
args = append(args, newArgs...)
|
|
|
|
}
|
|
|
|
|
2024-02-26 18:20:40 +01:00
|
|
|
if options.TenantIDs != nil && len(options.TenantIDs) > 0 {
|
2024-03-12 16:22:35 +01:00
|
|
|
if filters != "" {
|
|
|
|
filters += " AND "
|
|
|
|
}
|
|
|
|
|
2024-02-26 18:20:40 +01:00
|
|
|
filter, newArgs, newParamIndex := inFilter("tenant_id", paramIndex, options.TenantIDs)
|
|
|
|
filters += filter
|
|
|
|
paramIndex = newParamIndex
|
|
|
|
args = append(args, newArgs...)
|
|
|
|
}
|
|
|
|
|
2023-03-02 13:05:24 +01:00
|
|
|
if options.Thumbprints != nil && len(options.Thumbprints) > 0 {
|
2023-02-02 10:55:24 +01:00
|
|
|
if filters != "" {
|
|
|
|
filters += " AND "
|
|
|
|
}
|
|
|
|
|
2023-03-02 13:05:24 +01:00
|
|
|
filter, newArgs, newParamIndex := inFilter("thumbprint", paramIndex, options.Thumbprints)
|
2023-02-02 10:55:24 +01:00
|
|
|
filters += filter
|
|
|
|
paramIndex = newParamIndex
|
|
|
|
args = append(args, newArgs...)
|
|
|
|
}
|
|
|
|
|
|
|
|
if options.Statuses != nil && len(options.Statuses) > 0 {
|
|
|
|
if filters != "" {
|
|
|
|
filters += " AND "
|
|
|
|
}
|
|
|
|
|
|
|
|
filter, newArgs, _ := inFilter("status", paramIndex, options.Statuses)
|
|
|
|
filters += filter
|
|
|
|
args = append(args, newArgs...)
|
|
|
|
}
|
|
|
|
|
|
|
|
if filters != "" {
|
|
|
|
filters = ` WHERE ` + filters
|
|
|
|
}
|
|
|
|
|
|
|
|
query += filters + ` LIMIT $2 OFFSET $1`
|
|
|
|
|
|
|
|
logger.Debug(ctx, "executing query", logger.F("query", query), logger.F("args", args))
|
|
|
|
|
2023-10-22 09:50:22 +02:00
|
|
|
rows, err := tx.QueryContext(ctx, query, args...)
|
2023-02-02 10:55:24 +01:00
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
2023-03-29 20:10:06 +02:00
|
|
|
defer func() {
|
|
|
|
if err := rows.Close(); err != nil {
|
2023-10-13 12:30:52 +02:00
|
|
|
err = errors.WithStack(err)
|
2023-10-19 22:09:18 +02:00
|
|
|
logger.Error(ctx, "could not close rows", logger.CapturedE(err))
|
2023-03-29 20:10:06 +02:00
|
|
|
}
|
|
|
|
}()
|
2023-02-02 10:55:24 +01:00
|
|
|
|
|
|
|
for rows.Next() {
|
|
|
|
agent := &datastore.Agent{}
|
|
|
|
|
2023-03-02 13:05:24 +01:00
|
|
|
metadata := JSONMap{}
|
2023-04-01 14:33:19 +02:00
|
|
|
contactedAt := sql.NullTime{}
|
2023-03-02 13:05:24 +01:00
|
|
|
|
2024-02-26 18:20:40 +01:00
|
|
|
if err := rows.Scan(&agent.ID, &agent.Label, &agent.Thumbprint, &agent.Status, &contactedAt, &agent.CreatedAt, &agent.UpdatedAt, &agent.TenantID); err != nil {
|
2023-02-02 10:55:24 +01:00
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
2023-03-02 13:05:24 +01:00
|
|
|
agent.Metadata = metadata
|
2023-04-01 14:33:19 +02:00
|
|
|
if contactedAt.Valid {
|
|
|
|
agent.ContactedAt = &contactedAt.Time
|
|
|
|
}
|
2023-03-02 13:05:24 +01:00
|
|
|
|
2023-02-02 10:55:24 +01:00
|
|
|
agents = append(agents, agent)
|
|
|
|
}
|
|
|
|
|
2023-03-29 20:10:06 +02:00
|
|
|
if err := rows.Err(); err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
2023-02-02 10:55:24 +01:00
|
|
|
row := tx.QueryRowContext(ctx, `SELECT count(id) FROM agents `+filters, args...)
|
|
|
|
if err := row.Scan(&count); err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, 0, errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return agents, count, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create implements datastore.AgentRepository
|
2023-03-02 13:05:24 +01:00
|
|
|
func (r *AgentRepository) Create(ctx context.Context, thumbprint string, keySet jwk.Set, metadata map[string]any) (*datastore.Agent, error) {
|
2023-02-02 10:55:24 +01:00
|
|
|
agent := &datastore.Agent{}
|
|
|
|
|
2023-10-22 09:50:22 +02:00
|
|
|
err := r.withTxRetry(ctx, func(tx *sql.Tx) error {
|
2023-03-02 13:05:24 +01:00
|
|
|
query := `SELECT count(id) FROM agents WHERE thumbprint = $1`
|
|
|
|
row := tx.QueryRowContext(ctx, query, thumbprint)
|
2023-02-02 10:55:24 +01:00
|
|
|
|
|
|
|
var count int
|
|
|
|
|
|
|
|
if err := row.Scan(&count); err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if count > 0 {
|
|
|
|
return errors.WithStack(datastore.ErrAlreadyExist)
|
|
|
|
}
|
|
|
|
|
|
|
|
now := time.Now().UTC()
|
|
|
|
|
|
|
|
query = `
|
2023-03-02 13:05:24 +01:00
|
|
|
INSERT INTO agents (thumbprint, keyset, metadata, status, created_at, updated_at)
|
|
|
|
VALUES($1, $2, $3, $4, $5, $5)
|
2024-02-26 18:20:40 +01:00
|
|
|
RETURNING "id", "thumbprint", "keyset", "metadata", "status", "created_at", "updated_at", "tenant_id"
|
2023-02-02 10:55:24 +01:00
|
|
|
`
|
|
|
|
|
2023-03-02 13:05:24 +01:00
|
|
|
rawKeySet, err := json.Marshal(keySet)
|
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
2023-02-02 10:55:24 +01:00
|
|
|
row = tx.QueryRowContext(
|
|
|
|
ctx, query,
|
2023-03-02 13:05:24 +01:00
|
|
|
thumbprint, rawKeySet, JSONMap(metadata), datastore.AgentStatusPending, now,
|
2023-02-02 10:55:24 +01:00
|
|
|
)
|
|
|
|
|
2023-03-02 13:05:24 +01:00
|
|
|
metadata := JSONMap{}
|
|
|
|
|
2024-02-26 18:20:40 +01:00
|
|
|
err = row.Scan(&agent.ID, &agent.Thumbprint, &rawKeySet, &metadata, &agent.Status, &agent.CreatedAt, &agent.UpdatedAt, &agent.TenantID)
|
2023-03-02 13:05:24 +01:00
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
agent.Metadata = metadata
|
|
|
|
|
|
|
|
keySet, err = jwk.Parse(rawKeySet)
|
2023-02-02 10:55:24 +01:00
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
2023-03-02 13:05:24 +01:00
|
|
|
agent.KeySet = &datastore.SerializableKeySet{keySet}
|
|
|
|
|
2023-02-02 10:55:24 +01:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return agent, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete implements datastore.AgentRepository
|
|
|
|
func (r *AgentRepository) Delete(ctx context.Context, id datastore.AgentID) error {
|
2023-10-22 09:50:22 +02:00
|
|
|
err := r.withTxRetry(ctx, func(tx *sql.Tx) error {
|
2023-03-13 10:44:58 +01:00
|
|
|
query := `DELETE FROM agents WHERE id = $1`
|
2023-10-22 09:50:22 +02:00
|
|
|
_, err := tx.ExecContext(ctx, query, id)
|
2023-03-13 10:44:58 +01:00
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
query = `DELETE FROM specs WHERE agent_id = $1`
|
2023-10-22 09:50:22 +02:00
|
|
|
_, err = tx.ExecContext(ctx, query, id)
|
2023-03-13 10:44:58 +01:00
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
2023-02-02 10:55:24 +01:00
|
|
|
|
2023-03-13 10:44:58 +01:00
|
|
|
return nil
|
|
|
|
})
|
2023-02-02 10:55:24 +01:00
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get implements datastore.AgentRepository
|
|
|
|
func (r *AgentRepository) Get(ctx context.Context, id datastore.AgentID) (*datastore.Agent, error) {
|
|
|
|
agent := &datastore.Agent{
|
|
|
|
ID: id,
|
|
|
|
}
|
|
|
|
|
2023-10-22 09:50:22 +02:00
|
|
|
err := r.withTxRetry(ctx, func(tx *sql.Tx) error {
|
2023-02-02 10:55:24 +01:00
|
|
|
query := `
|
2024-02-26 18:20:40 +01:00
|
|
|
SELECT "id", "label", "thumbprint", "keyset", "metadata", "status", "contacted_at", "created_at", "updated_at", "tenant_id"
|
2023-02-02 10:55:24 +01:00
|
|
|
FROM agents
|
|
|
|
WHERE id = $1
|
|
|
|
`
|
|
|
|
|
2023-10-22 09:50:22 +02:00
|
|
|
row := tx.QueryRowContext(ctx, query, id)
|
2023-02-02 10:55:24 +01:00
|
|
|
|
2023-03-02 13:05:24 +01:00
|
|
|
metadata := JSONMap{}
|
2023-04-01 14:33:19 +02:00
|
|
|
contactedAt := sql.NullTime{}
|
2023-03-02 13:05:24 +01:00
|
|
|
var rawKeySet []byte
|
|
|
|
|
2024-02-26 18:20:40 +01:00
|
|
|
if err := row.Scan(&agent.ID, &agent.Label, &agent.Thumbprint, &rawKeySet, &metadata, &agent.Status, &contactedAt, &agent.CreatedAt, &agent.UpdatedAt, &agent.TenantID); err != nil {
|
2023-02-02 10:55:24 +01:00
|
|
|
if errors.Is(err, sql.ErrNoRows) {
|
|
|
|
return datastore.ErrNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
2023-03-02 13:05:24 +01:00
|
|
|
agent.Metadata = metadata
|
2023-04-01 14:33:19 +02:00
|
|
|
if contactedAt.Valid {
|
|
|
|
agent.ContactedAt = &contactedAt.Time
|
|
|
|
}
|
2023-03-02 13:05:24 +01:00
|
|
|
|
|
|
|
keySet := jwk.NewSet()
|
|
|
|
if err := json.Unmarshal(rawKeySet, &keySet); err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
agent.KeySet = &datastore.SerializableKeySet{keySet}
|
|
|
|
|
2023-02-02 10:55:24 +01:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return agent, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update implements datastore.AgentRepository
|
|
|
|
func (r *AgentRepository) Update(ctx context.Context, id datastore.AgentID, opts ...datastore.AgentUpdateOptionFunc) (*datastore.Agent, error) {
|
|
|
|
options := &datastore.AgentUpdateOptions{}
|
|
|
|
for _, fn := range opts {
|
|
|
|
fn(options)
|
|
|
|
}
|
|
|
|
|
|
|
|
agent := &datastore.Agent{}
|
|
|
|
|
2023-10-22 09:50:22 +02:00
|
|
|
err := r.withTxRetry(ctx, func(tx *sql.Tx) error {
|
2023-02-02 10:55:24 +01:00
|
|
|
query := `
|
2023-04-01 14:33:19 +02:00
|
|
|
UPDATE agents SET id = $1
|
2023-02-02 10:55:24 +01:00
|
|
|
`
|
|
|
|
|
2023-04-01 14:33:19 +02:00
|
|
|
args := []any{id}
|
|
|
|
index := 2
|
2023-02-02 10:55:24 +01:00
|
|
|
|
|
|
|
if options.Status != nil {
|
|
|
|
query += fmt.Sprintf(`, status = $%d`, index)
|
|
|
|
args = append(args, *options.Status)
|
2023-03-02 13:05:24 +01:00
|
|
|
index++
|
|
|
|
}
|
|
|
|
|
|
|
|
if options.KeySet != nil {
|
|
|
|
rawKeySet, err := json.Marshal(*options.KeySet)
|
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
query += fmt.Sprintf(`, keyset = $%d`, index)
|
|
|
|
args = append(args, rawKeySet)
|
|
|
|
index++
|
|
|
|
}
|
|
|
|
|
|
|
|
if options.Thumbprint != nil {
|
|
|
|
query += fmt.Sprintf(`, thumbprint = $%d`, index)
|
|
|
|
args = append(args, *options.Thumbprint)
|
|
|
|
index++
|
|
|
|
}
|
2023-02-02 10:55:24 +01:00
|
|
|
|
2023-04-01 13:28:18 +02:00
|
|
|
if options.Label != nil {
|
|
|
|
query += fmt.Sprintf(`, label = $%d`, index)
|
|
|
|
args = append(args, *options.Label)
|
|
|
|
index++
|
|
|
|
}
|
|
|
|
|
2023-04-01 14:33:19 +02:00
|
|
|
if options.ContactedAt != nil {
|
|
|
|
query += fmt.Sprintf(`, contacted_at = $%d`, index)
|
|
|
|
utc := options.ContactedAt.UTC()
|
|
|
|
args = append(args, utc)
|
|
|
|
index++
|
|
|
|
}
|
|
|
|
|
2023-03-02 13:05:24 +01:00
|
|
|
if options.Metadata != nil {
|
|
|
|
query += fmt.Sprintf(`, metadata = $%d`, index)
|
|
|
|
args = append(args, JSONMap(*options.Metadata))
|
2023-02-02 10:55:24 +01:00
|
|
|
index++
|
|
|
|
}
|
|
|
|
|
2023-04-01 14:33:19 +02:00
|
|
|
updated := options.Metadata != nil ||
|
|
|
|
options.Status != nil ||
|
|
|
|
options.Label != nil ||
|
|
|
|
options.KeySet != nil ||
|
|
|
|
options.Thumbprint != nil
|
|
|
|
if updated {
|
|
|
|
now := time.Now().UTC()
|
|
|
|
query += fmt.Sprintf(`, updated_at = $%d`, index)
|
|
|
|
args = append(args, now)
|
|
|
|
index++
|
|
|
|
}
|
|
|
|
|
2023-02-02 10:55:24 +01:00
|
|
|
query += `
|
|
|
|
WHERE id = $1
|
2024-02-26 18:20:40 +01:00
|
|
|
RETURNING "id", "label", "thumbprint", "keyset", "metadata", "status", "contacted_at", "created_at", "updated_at", "tenant_id"
|
2023-02-02 10:55:24 +01:00
|
|
|
`
|
|
|
|
|
2023-04-01 14:33:19 +02:00
|
|
|
logger.Debug(ctx, "executing query", logger.F("query", query), logger.F("args", args))
|
|
|
|
|
2023-02-02 10:55:24 +01:00
|
|
|
row := tx.QueryRowContext(ctx, query, args...)
|
|
|
|
|
2023-03-02 13:05:24 +01:00
|
|
|
metadata := JSONMap{}
|
2023-04-01 14:33:19 +02:00
|
|
|
contactedAt := sql.NullTime{}
|
2023-03-02 13:05:24 +01:00
|
|
|
var rawKeySet []byte
|
|
|
|
|
2024-02-26 18:20:40 +01:00
|
|
|
if err := row.Scan(&agent.ID, &agent.Label, &agent.Thumbprint, &rawKeySet, &metadata, &agent.Status, &contactedAt, &agent.CreatedAt, &agent.UpdatedAt, &agent.TenantID); err != nil {
|
2023-03-02 13:05:24 +01:00
|
|
|
if errors.Is(err, sql.ErrNoRows) {
|
|
|
|
return datastore.ErrNotFound
|
|
|
|
}
|
|
|
|
|
2023-02-02 10:55:24 +01:00
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
2023-03-02 13:05:24 +01:00
|
|
|
agent.Metadata = metadata
|
2023-04-01 14:33:19 +02:00
|
|
|
if contactedAt.Valid {
|
|
|
|
agent.ContactedAt = &contactedAt.Time
|
|
|
|
}
|
2023-03-02 13:05:24 +01:00
|
|
|
|
|
|
|
keySet := jwk.NewSet()
|
|
|
|
if err := json.Unmarshal(rawKeySet, &keySet); err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
agent.KeySet = &datastore.SerializableKeySet{keySet}
|
|
|
|
|
2023-02-02 10:55:24 +01:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return agent, nil
|
|
|
|
}
|
|
|
|
|
2023-04-12 11:09:53 +02:00
|
|
|
func (r *AgentRepository) agentExists(ctx context.Context, tx *sql.Tx, agentID datastore.AgentID) (bool, error) {
|
|
|
|
row := tx.QueryRowContext(ctx, `SELECT count(id) FROM agents WHERE id = $1`, agentID)
|
|
|
|
|
|
|
|
var count int
|
|
|
|
|
|
|
|
if err := row.Scan(&count); err != nil {
|
|
|
|
if errors.Is(err, sql.ErrNoRows) {
|
|
|
|
return false, errors.WithStack(datastore.ErrNotFound)
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if count == 0 {
|
|
|
|
return false, errors.WithStack(datastore.ErrNotFound)
|
|
|
|
}
|
|
|
|
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2023-10-22 09:50:22 +02:00
|
|
|
func NewAgentRepository(db *sql.DB, sqliteBusyRetryMaxAttempts int) *AgentRepository {
|
2024-02-27 14:14:30 +01:00
|
|
|
return &AgentRepository{repository{db, sqliteBusyRetryMaxAttempts}}
|
2023-02-02 10:55:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ datastore.AgentRepository = &AgentRepository{}
|