Introduce access-review source snapshot and normalize naming
Decouple each campaign from the live access-review sources it was started with by introducing a per-campaign source snapshot table (access_review_campaign_sources). The snapshot captures the source name, category, and connector at start time, so a review remains coherent even after the underlying source is edited or deleted. Fetch tracking becomes an append-only log (access_review_campaign_source_fetch_attempts) that preserves every attempt with its own status and error rather than overwriting a single row. Rename the shared access-review tables and enums to use a consistent access_review_ prefix throughout: access_entries → access_review_entries access_sources → access_review_sources access_source_category → access_review_source_category access_entry_* → access_review_entry_* The same rename propagates to every coredata type, service, GraphQL schema, MCP specification, CLI command, frontend component, and e2e test. The accessreview package gains dedicated actions.go and policies.go files for its own IAM policy set, mirroring the agentrun package pattern. Signed-off-by: Bryan Frimin <bryan@probo.com>
This commit is contained in:
@@ -38,8 +38,8 @@ type (
|
||||
providerRegistry *provider.Registry
|
||||
logger *log.Logger
|
||||
|
||||
fetchWorker *worker.Worker[coredata.AccessReviewCampaignSourceFetch]
|
||||
sourceNameWorker *worker.Worker[coredata.AccessSource]
|
||||
fetchWorker *worker.Worker[coredata.AccessReviewCampaignSourceFetchAttempt]
|
||||
sourceNameWorker *worker.Worker[coredata.AccessReviewSource]
|
||||
}
|
||||
|
||||
Option func(*options)
|
||||
@@ -102,39 +102,6 @@ func NewService(
|
||||
return s
|
||||
}
|
||||
|
||||
// Sources returns a tenant-scoped AccessSourceService.
|
||||
func (s *Service) Sources(scope coredata.Scoper) *AccessSourceService {
|
||||
return &AccessSourceService{
|
||||
pg: s.pg,
|
||||
scope: scope,
|
||||
encryptionKey: s.encryptionKey,
|
||||
connectorRegistry: s.connectorRegistry,
|
||||
providerRegistry: s.providerRegistry,
|
||||
}
|
||||
}
|
||||
|
||||
// Campaigns returns a tenant-scoped CampaignService.
|
||||
func (s *Service) Campaigns(scope coredata.Scoper) *CampaignService {
|
||||
return NewCampaignService(s.pg, scope)
|
||||
}
|
||||
|
||||
// Entries returns a tenant-scoped AccessEntryService.
|
||||
func (s *Service) Entries(scope coredata.Scoper) *AccessEntryService {
|
||||
return &AccessEntryService{pg: s.pg, scope: scope}
|
||||
}
|
||||
|
||||
// Engine returns a tenant-scoped ReviewEngine.
|
||||
func (s *Service) Engine(scope coredata.Scoper) *ReviewEngine {
|
||||
return NewReviewEngine(
|
||||
s.pg,
|
||||
scope,
|
||||
s.encryptionKey,
|
||||
s.connectorRegistry,
|
||||
s.providerRegistry,
|
||||
s.logger.Named("review_engine"),
|
||||
)
|
||||
}
|
||||
|
||||
// ResolveEntryOrganizationID resolves the organization ID for an access entry.
|
||||
// This is unscoped because it is used by resolvers before authorization to
|
||||
// find the organization from an entry ID.
|
||||
@@ -146,7 +113,7 @@ func (s *Service) ResolveEntryOrganizationID(ctx context.Context, entryID gid.GI
|
||||
func(ctx context.Context, conn pg.Querier) error {
|
||||
var err error
|
||||
|
||||
entry := &coredata.AccessEntry{}
|
||||
entry := &coredata.AccessReviewEntry{}
|
||||
|
||||
organizationID, err = entry.LoadOrganizationID(ctx, conn, entryID)
|
||||
if err != nil {
|
||||
|
||||
Reference in New Issue
Block a user