application.queries.handlers.list_holdings_handler¶
src.application.queries.handlers.list_holdings_handler
¶
ListHoldings query handlers.
Handles requests to list holdings by account or by user. Returns DTOs with aggregated value information.
Architecture: - Application layer handlers (orchestrate data retrieval) - Returns Result[DTO, str] (explicit error handling) - NO domain events (queries are side-effect free) - Account-scoped and user-scoped queries
Reference
- docs/architecture/cqrs-pattern.md
Classes¶
HoldingResult
dataclass
¶
Single holding DTO for API responses.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
UUID
|
Holding ID. |
account_id |
UUID
|
Account ID. |
provider_holding_id |
str
|
Provider's unique identifier. |
symbol |
str
|
Security ticker symbol. |
security_name |
str
|
Full security name. |
asset_type |
str
|
Asset type (equity, etf, option, etc.). |
quantity |
Decimal
|
Number of shares/units. |
cost_basis |
Decimal
|
Total cost paid. |
market_value |
Decimal
|
Current market value. |
currency |
str
|
ISO 4217 currency code. |
average_price |
Decimal | None
|
Average cost per share. |
current_price |
Decimal | None
|
Current market price per share. |
unrealized_gain_loss |
Decimal | None
|
Computed gain/loss. |
unrealized_gain_loss_percent |
Decimal | None
|
Computed gain/loss percentage. |
is_active |
bool
|
Whether position is active. |
is_profitable |
bool
|
Whether position is profitable. |
last_synced_at |
datetime | None
|
Last sync timestamp. |
created_at |
datetime
|
Creation timestamp. |
updated_at |
datetime
|
Last update timestamp. |
Source code in src/application/queries/handlers/list_holdings_handler.py
HoldingListResult
dataclass
¶
List of holdings with aggregated information.
Attributes:
| Name | Type | Description |
|---|---|---|
holdings |
list[HoldingResult]
|
List of holding DTOs. |
total_count |
int
|
Total number of holdings. |
active_count |
int
|
Number of active holdings. |
total_market_value_by_currency |
dict[str, str]
|
Aggregated market values. |
total_cost_basis_by_currency |
dict[str, str]
|
Aggregated cost basis. |
total_unrealized_gain_loss_by_currency |
dict[str, str]
|
Aggregated gain/loss. |
Source code in src/application/queries/handlers/list_holdings_handler.py
ListHoldingsByAccountError
¶
ListHoldingsByAccount-specific errors.
Source code in src/application/queries/handlers/list_holdings_handler.py
ListHoldingsByAccountHandler
¶
Handler for ListHoldingsByAccount query.
Retrieves holdings for a specific account. Ownership checked by verifying the account's connection belongs to the user.
Dependencies (injected via constructor): - HoldingRepository: For holding retrieval - AccountRepository: For account lookup - ProviderConnectionRepository: For ownership verification
Source code in src/application/queries/handlers/list_holdings_handler.py
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 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 | |
Functions¶
__init__
¶
__init__(
holding_repo: HoldingRepository,
account_repo: AccountRepository,
connection_repo: ProviderConnectionRepository,
) -> None
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
holding_repo
|
HoldingRepository
|
Holding repository. |
required |
account_repo
|
AccountRepository
|
Account repository. |
required |
connection_repo
|
ProviderConnectionRepository
|
Provider connection repository for ownership check. |
required |
Source code in src/application/queries/handlers/list_holdings_handler.py
handle
async
¶
Handle ListHoldingsByAccount query.
Retrieves holdings for account, verifies ownership, and maps to DTOs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
query
|
ListHoldingsByAccount
|
ListHoldingsByAccount query. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Success |
HoldingListResult
|
Holdings found and owned by user. |
Failure |
error
|
Account not found or not owned by user. |
Source code in src/application/queries/handlers/list_holdings_handler.py
ListHoldingsByUserHandler
¶
Handler for ListHoldingsByUser query.
Retrieves all holdings for a user across all accounts.
Dependencies (injected via constructor): - HoldingRepository: For holding retrieval
Source code in src/application/queries/handlers/list_holdings_handler.py
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 | |
Functions¶
__init__
¶
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
holding_repo
|
HoldingRepository
|
Holding repository. |
required |
handle
async
¶
Handle ListHoldingsByUser query.
Retrieves holdings across all user's accounts and maps to DTOs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
query
|
ListHoldingsByUser
|
ListHoldingsByUser query. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Success |
HoldingListResult
|
All holdings for user. |