-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(core,service): Overhaul request and workflow management system #684
Conversation
Major refactoring of request, operation, and workflow handling: - Introduced new abstractions for request and operation management - Added support for protocol-specific request models - Implemented new workflow coordination system with step-by-step processing - Added WorkflowCoordinator interface and default implementation - Created workflow step processing with flexible failure behaviors - Enhanced error handling and status tracking - Updated database models to support new service architecture - Added generic interfaces for operation and workflow management Breaking changes: - Significant changes to request service interfaces - Removed several existing methods in favor of more generic approaches - Changed how protocol and upload data are handled
|
Caution Review failedThe pull request is closed. WalkthroughThis pull request introduces a range of new features and refactors across multiple packages. New frameworks and interfaces for content scanning, hash mapping, multi-hashing, operation management, and workflow coordination have been added to the core package. Several data models and type aliases have been introduced or modified in the database models. Service layer components now implement the new core functionality with enhanced methods for request, pin, storage, TUS upload, and workflow management. Additionally, dependency updates have been made in the module file. Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant ScannerService as ContentScannerServiceDefault
participant Scanner as ContentScanner (e.g., noopScanHandler)
participant DB as Database
Client->>+ScannerService: ScanContent(ctx, hash)
ScannerService-->>ScannerService: Iterate registered scanners (by priority)
ScannerService->>+Scanner: ScanContent(ctx, hash)
Scanner-->>-Scanner: Return ScanResult (pass/fail, metadata)
ScannerService->>DB: storeScanResult(ctx, hash, ScanResult)
DB-->>ScannerService: Acknowledge storage
ScannerService-->>-Client: Return aggregated scan results
sequenceDiagram
participant Client
participant Workflow as WorkflowCoordinatorDefault
participant Request as RequestServiceDefault
participant OpHandler as OperationHandler
Client->>+Workflow: StartWorkflow(ctx, name, initialData)
Workflow->>Request: Create workflow request with metadata
Request-->>Workflow: Request Created
Workflow->>+OpHandler: Execute Operation (Step 1)
OpHandler-->>-Workflow: Operation Completed
Workflow->>Request: CompleteWorkflowStep(ctx, requestID)
alt More Steps
Workflow->>OpHandler: Execute Next Operation
OpHandler-->>Workflow: Next Operation Result
end
Workflow-->>-Client: Return Workflow Status/Completion
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (26)
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Major refactoring of request, operation, and workflow handling:
Breaking changes:
Summary by CodeRabbit
New Features
Chores