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:
@@ -19,58 +19,58 @@ import (
|
||||
"fmt"
|
||||
)
|
||||
|
||||
type AccessEntryAuthMethod string
|
||||
type AccessReviewEntryAuthMethod string
|
||||
|
||||
const (
|
||||
AccessEntryAuthMethodSSO AccessEntryAuthMethod = "SSO"
|
||||
AccessEntryAuthMethodPassword AccessEntryAuthMethod = "PASSWORD"
|
||||
AccessEntryAuthMethodAPIKey AccessEntryAuthMethod = "API_KEY"
|
||||
AccessEntryAuthMethodServiceAccount AccessEntryAuthMethod = "SERVICE_ACCOUNT"
|
||||
AccessEntryAuthMethodUnknown AccessEntryAuthMethod = "UNKNOWN"
|
||||
AccessReviewEntryAuthMethodSSO AccessReviewEntryAuthMethod = "SSO"
|
||||
AccessReviewEntryAuthMethodPassword AccessReviewEntryAuthMethod = "PASSWORD"
|
||||
AccessReviewEntryAuthMethodAPIKey AccessReviewEntryAuthMethod = "API_KEY"
|
||||
AccessReviewEntryAuthMethodServiceAccount AccessReviewEntryAuthMethod = "SERVICE_ACCOUNT"
|
||||
AccessReviewEntryAuthMethodUnknown AccessReviewEntryAuthMethod = "UNKNOWN"
|
||||
)
|
||||
|
||||
var (
|
||||
_ fmt.Stringer = AccessEntryAuthMethod("")
|
||||
_ encoding.TextMarshaler = AccessEntryAuthMethod("")
|
||||
_ encoding.TextUnmarshaler = (*AccessEntryAuthMethod)(nil)
|
||||
_ fmt.Stringer = AccessReviewEntryAuthMethod("")
|
||||
_ encoding.TextMarshaler = AccessReviewEntryAuthMethod("")
|
||||
_ encoding.TextUnmarshaler = (*AccessReviewEntryAuthMethod)(nil)
|
||||
)
|
||||
|
||||
func AccessEntryAuthMethods() []AccessEntryAuthMethod {
|
||||
return []AccessEntryAuthMethod{
|
||||
AccessEntryAuthMethodSSO,
|
||||
AccessEntryAuthMethodPassword,
|
||||
AccessEntryAuthMethodAPIKey,
|
||||
AccessEntryAuthMethodServiceAccount,
|
||||
AccessEntryAuthMethodUnknown,
|
||||
func AccessReviewEntryAuthMethods() []AccessReviewEntryAuthMethod {
|
||||
return []AccessReviewEntryAuthMethod{
|
||||
AccessReviewEntryAuthMethodSSO,
|
||||
AccessReviewEntryAuthMethodPassword,
|
||||
AccessReviewEntryAuthMethodAPIKey,
|
||||
AccessReviewEntryAuthMethodServiceAccount,
|
||||
AccessReviewEntryAuthMethodUnknown,
|
||||
}
|
||||
}
|
||||
|
||||
func (v AccessEntryAuthMethod) IsValid() bool {
|
||||
func (v AccessReviewEntryAuthMethod) IsValid() bool {
|
||||
switch v {
|
||||
case
|
||||
AccessEntryAuthMethodSSO,
|
||||
AccessEntryAuthMethodPassword,
|
||||
AccessEntryAuthMethodAPIKey,
|
||||
AccessEntryAuthMethodServiceAccount,
|
||||
AccessEntryAuthMethodUnknown:
|
||||
AccessReviewEntryAuthMethodSSO,
|
||||
AccessReviewEntryAuthMethodPassword,
|
||||
AccessReviewEntryAuthMethodAPIKey,
|
||||
AccessReviewEntryAuthMethodServiceAccount,
|
||||
AccessReviewEntryAuthMethodUnknown:
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
func (v AccessEntryAuthMethod) String() string {
|
||||
func (v AccessReviewEntryAuthMethod) String() string {
|
||||
return string(v)
|
||||
}
|
||||
|
||||
func (v AccessEntryAuthMethod) MarshalText() ([]byte, error) {
|
||||
func (v AccessReviewEntryAuthMethod) MarshalText() ([]byte, error) {
|
||||
return []byte(v.String()), nil
|
||||
}
|
||||
|
||||
func (v *AccessEntryAuthMethod) UnmarshalText(text []byte) error {
|
||||
val := AccessEntryAuthMethod(text)
|
||||
func (v *AccessReviewEntryAuthMethod) UnmarshalText(text []byte) error {
|
||||
val := AccessReviewEntryAuthMethod(text)
|
||||
if !val.IsValid() {
|
||||
return fmt.Errorf("invalid AccessEntryAuthMethod value: %q", string(text))
|
||||
return fmt.Errorf("invalid AccessReviewEntryAuthMethod value: %q", string(text))
|
||||
}
|
||||
|
||||
*v = val
|
||||
|
||||
Reference in New Issue
Block a user