application.commands.handlers.refresh_provider_tokens_handler¶
src.application.commands.handlers.refresh_provider_tokens_handler
¶
RefreshProviderTokens command handler.
Handles provider credential refresh. Updates credentials for an existing active connection after successful token refresh.
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¶
RefreshProviderTokensError
¶
RefreshProviderTokens-specific errors.
Source code in src/application/commands/handlers/refresh_provider_tokens_handler.py
RefreshProviderTokensHandler
¶
Handler for RefreshProviderTokens command.
Updates credentials for an existing active connection. The actual token refresh with the provider 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/refresh_provider_tokens_handler.py
45 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 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | |
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/refresh_provider_tokens_handler.py
handle
async
¶
Handle RefreshProviderTokens command.
Finds the connection, verifies it's active, and updates credentials.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cmd
|
RefreshProviderTokens
|
RefreshProviderTokens command with connection ID and new credentials. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Success |
None
|
Credentials updated successfully. |
Failure |
error
|
Connection not found, not active, or database error. |
Side Effects
- Publishes ProviderTokenRefreshAttempted event (always)
- Publishes ProviderTokenRefreshSucceeded event (on success)
- Publishes ProviderTokenRefreshFailed event (on failure)
- Updates ProviderConnection credentials in database (on success)
Source code in src/application/commands/handlers/refresh_provider_tokens_handler.py
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 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | |