application.commands.handlers.connect_provider_handler¶
src.application.commands.handlers.connect_provider_handler
¶
ConnectProvider command handler.
Handles provider connection requests. Creates new connection record and transitions to ACTIVE status with provided credentials.
Architecture: - Application layer handler (orchestrates business logic) - Imports only from domain layer (entities, protocols, events) - Uses Result types for error handling - Emits 3-state domain events (Attempted → Succeeded/Failed)
Reference
- docs/architecture/cqrs-pattern.md
- docs/architecture/provider-domain-model.md
Classes¶
ConnectProviderError
¶
ConnectProvider-specific errors.
Source code in src/application/commands/handlers/connect_provider_handler.py
ConnectProviderHandler
¶
Handler for ConnectProvider command.
Creates a new provider connection with ACTIVE status. The actual OAuth/API authentication happens in infrastructure layer before this handler is called.
Dependencies (injected via constructor): - ProviderConnectionRepository: For persistence - EventBusProtocol: For domain events
Source code in src/application/commands/handlers/connect_provider_handler.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | |
Functions¶
__init__
¶
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
connection_repo
|
ProviderConnectionRepository
|
Provider connection repository. |
required |
event_bus
|
EventBusProtocol
|
Event bus for publishing domain events. |
required |
Source code in src/application/commands/handlers/connect_provider_handler.py
handle
async
¶
Handle ConnectProvider command.
Creates a new provider connection record with ACTIVE status. Emits domain events for audit trail and side effects.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cmd
|
ConnectProvider
|
ConnectProvider command with user, provider, and credentials. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Success |
connection_id
|
Connection created successfully. |
Failure |
error
|
Validation or database error. |
Side Effects
- Publishes ProviderConnectionAttempted event (always)
- Publishes ProviderConnectionSucceeded event (on success)
- Publishes ProviderConnectionFailed event (on failure)
- Creates ProviderConnection in database (on success)
Source code in src/application/commands/handlers/connect_provider_handler.py
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | |