Refactor core kernel and infrastructure to support true microservices architecture where services are independently deployable. Phase 1: Core Kernel Cleanup - Remove database provider from CoreModule (services create their own) - Update ProvideHealthRegistry to not depend on database - Add schema support to database client (NewClientWithSchema) - Update main entry point to remove database dependency - Core kernel now provides only: config, logger, error bus, health, metrics, tracer, service registry Phase 2: Service Registry Implementation - Create ServiceRegistry interface (pkg/registry/registry.go) - Implement Consul registry (internal/registry/consul/consul.go) - Add Consul dependency (github.com/hashicorp/consul/api) - Add registry configuration to config/default.yaml - Add ProvideServiceRegistry() to DI container Phase 3: Service Client Interfaces - Create service client interfaces: - pkg/services/auth.go - AuthServiceClient - pkg/services/identity.go - IdentityServiceClient - pkg/services/authz.go - AuthzServiceClient - pkg/services/audit.go - AuditServiceClient - Create ServiceClientFactory (internal/client/factory.go) - Create stub gRPC client implementations (internal/client/grpc/) - Add ProvideServiceClientFactory() to DI container Phase 4: gRPC Service Definitions - Create proto files for all core services: - api/proto/auth.proto - api/proto/identity.proto - api/proto/authz.proto - api/proto/audit.proto - Add generate-proto target to Makefile Phase 5: API Gateway Implementation - Create API Gateway service entry point (cmd/api-gateway/main.go) - Create Gateway implementation (services/gateway/gateway.go) - Add gateway configuration to config/default.yaml - Gateway registers with Consul and routes requests to backend services All code compiles successfully. Core services (Auth, Identity, Authz, Audit) will be implemented in Epic 2 using these foundations.
57 lines
1.5 KiB
Protocol Buffer
57 lines
1.5 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package audit.v1;
|
|
|
|
option go_package = "git.dcentral.systems/toolz/goplt/api/proto/generated/audit/v1;auditv1";
|
|
|
|
// AuditService provides audit logging operations.
|
|
service AuditService {
|
|
// Record records an audit log entry.
|
|
rpc Record(RecordRequest) returns (RecordResponse);
|
|
|
|
// Query queries audit logs based on filters.
|
|
rpc Query(QueryRequest) returns (QueryResponse);
|
|
}
|
|
|
|
// AuditLogEntry represents an audit log entry.
|
|
message AuditLogEntry {
|
|
string user_id = 1;
|
|
string action = 2; // e.g., "user.create", "user.update"
|
|
string resource = 3; // e.g., "user", "role"
|
|
string resource_id = 4;
|
|
string ip_address = 5;
|
|
string user_agent = 6;
|
|
map<string, string> metadata = 7;
|
|
int64 timestamp = 8;
|
|
}
|
|
|
|
// RecordRequest contains an audit log entry to record.
|
|
message RecordRequest {
|
|
AuditLogEntry entry = 1;
|
|
}
|
|
|
|
// RecordResponse indicates success.
|
|
message RecordResponse {
|
|
bool success = 1;
|
|
string id = 2; // Audit log entry ID
|
|
}
|
|
|
|
// QueryRequest contains filters for querying audit logs.
|
|
message QueryRequest {
|
|
optional string user_id = 1;
|
|
optional string action = 2;
|
|
optional string resource = 3;
|
|
optional string resource_id = 4;
|
|
optional int64 start_time = 5;
|
|
optional int64 end_time = 6;
|
|
int32 limit = 7; // Max number of results
|
|
int32 offset = 8; // Pagination offset
|
|
}
|
|
|
|
// QueryResponse contains audit log entries.
|
|
message QueryResponse {
|
|
repeated AuditLogEntry entries = 1;
|
|
int32 total = 2; // Total number of matching entries
|
|
}
|
|
|