mirror of
https://github.com/shankar0123/certctl.git
synced 2026-06-07 13:51:36 +00:00
21aeed4f4e
Phase 0 closure (Path B2, post-rewrite):
addlicense sweep — adds the canonical certctl LLC copyright + BUSL-1.1
SPDX header to every production Go file. Template:
// Copyright 2026 certctl LLC. All rights reserved.
// SPDX-License-Identifier: BUSL-1.1
Coverage: 338 / 338 production Go files (cmd/ + internal/, excluding
*_test.go and **/testdata/**). Pre-sweep coverage was 22 / 338 (6.5%);
post-sweep is 338 / 338 (100%).
Normalized 22 pre-existing legacy headers (`// Copyright (c) certctl`
+ `// SPDX-License-Identifier: BSL-1.1`) and 1 file using a
`Certctl Contributors` attribution. The legacy SPDX ID `BSL-1.1`
is non-standard; the official SPDX identifier for Business Source
License 1.1 is `BUSL-1.1` (capital U). All 338 files now share the
canonical form.
Generated via:
addlicense -c "certctl LLC" -y 2026 \
-f cowork/legal/copyright-header.tpl \
-ignore '**/testdata/**' -ignore '**/*_test.go' \
cmd/ internal/
Verification:
find cmd internal -name '*.go' -not -name '*_test.go' \
-not -path '*/testdata/*' \
-exec grep -L '^// Copyright 2026 certctl LLC' {} \; | wc -l
Returns: 0
gofmt clean. Header additions are comments only, no compile impact.
Closes: cowork/certctl-architecture-diligence-audit.html#fix-RED-4
86 lines
3.4 KiB
Go
86 lines
3.4 KiB
Go
// Copyright 2026 certctl LLC. All rights reserved.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package domain
|
|
|
|
import (
|
|
"encoding/json"
|
|
"time"
|
|
)
|
|
|
|
// AuditEvent records an action taken in the control plane.
|
|
type AuditEvent struct {
|
|
ID string `json:"id"`
|
|
Actor string `json:"actor"`
|
|
ActorType ActorType `json:"actor_type"`
|
|
Action string `json:"action"`
|
|
ResourceType string `json:"resource_type"`
|
|
ResourceID string `json:"resource_id"`
|
|
Details json.RawMessage `json:"details"`
|
|
Timestamp time.Time `json:"timestamp"`
|
|
|
|
// EventCategory (Bundle 1 Phase 8) classifies the event into one
|
|
// of "cert_lifecycle", "auth", or "config" so the auditor role
|
|
// can filter to authentication / authorization events without
|
|
// also seeing every cert.issue. The persistence layer treats an
|
|
// empty value as "cert_lifecycle" (the migration default + the
|
|
// DB CHECK constraint).
|
|
EventCategory string `json:"event_category,omitempty"`
|
|
}
|
|
|
|
// Audit event-category constants. Bundle 1 Phase 8 ships exactly
|
|
// three; future bundles extend the enum (and the migration's CHECK
|
|
// constraint) without reshaping the column.
|
|
const (
|
|
// EventCategoryCertLifecycle is the default for cert.* /
|
|
// agent.* / deployment.* / verification.* events.
|
|
EventCategoryCertLifecycle = "cert_lifecycle"
|
|
|
|
// EventCategoryAuth covers every auth.role.* / auth.key.* /
|
|
// auth.bootstrap.* event plus the bootstrap.consume action
|
|
// recorded by Phase 6. Auditors filter to this category to
|
|
// review who minted / granted / revoked roles.
|
|
EventCategoryAuth = "auth"
|
|
|
|
// EventCategoryConfig covers issuer / target / settings
|
|
// mutations. Distinct from cert_lifecycle so a regulator can
|
|
// review configuration changes separately from cert ops.
|
|
EventCategoryConfig = "config"
|
|
)
|
|
|
|
// ActorType represents the entity performing an action.
|
|
type ActorType string
|
|
|
|
const (
|
|
// ActorTypeUser represents a federated human identity. Reserved by
|
|
// Bundle 2 (OIDC + sessions) for OIDC-authenticated humans. Bundle 1
|
|
// continues to set this for legacy callers; new code should use
|
|
// ActorTypeAPIKey for API-key-authenticated requests.
|
|
ActorTypeUser ActorType = "User"
|
|
|
|
// ActorTypeSystem represents background workers (scheduler loops, GC
|
|
// sweepers, migrations). System actors don't have a credential; the
|
|
// scheduler / startup code passes them directly to AuditService.
|
|
ActorTypeSystem ActorType = "System"
|
|
|
|
// ActorTypeAgent represents a certctl-agent identity. Agents poll the
|
|
// control plane outbound; the matched API key carries this actor type
|
|
// when the operator scopes the key to the agent role (Bundle 1
|
|
// Phase 1 ships the agent role with cert.read + agent.heartbeat +
|
|
// agent.job.* permissions).
|
|
ActorTypeAgent ActorType = "Agent"
|
|
|
|
// ActorTypeAPIKey represents an API-key-authenticated request whose
|
|
// scope was not narrowed to agent-only. Bundle 1 Phase 1 introduces
|
|
// this so the audit trail can distinguish a human-operator API key
|
|
// from a federated OIDC user (Bundle 2). System actors and agents
|
|
// keep their existing types.
|
|
ActorTypeAPIKey ActorType = "APIKey"
|
|
|
|
// ActorTypeAnonymous represents the synthetic actor used when
|
|
// CERTCTL_AUTH_TYPE=none is configured (the demo path). The audit
|
|
// row records "actor-demo-anon" with this type so operators can
|
|
// filter demo activity from real auth in audit reports.
|
|
ActorTypeAnonymous ActorType = "Anonymous"
|
|
)
|