infrastructure.persistence.repositories.provider_repository¶
src.infrastructure.persistence.repositories.provider_repository
¶
Provider repository implementation.
PostgreSQL implementation of the ProviderRepository protocol. Maps between Provider domain entity and Provider database model.
Reference
- docs/architecture/repository-pattern.md
Classes¶
ProviderRepository
¶
PostgreSQL implementation of ProviderRepository protocol.
Handles persistence of Provider entities using SQLAlchemy async sessions.
Implementation Notes: - Maps between domain entity (dataclass) and database model (SQLAlchemy) - Uses select() for queries (SQLAlchemy 2.0 style) - Caching could be added here since providers rarely change
Source code in src/infrastructure/persistence/repositories/provider_repository.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 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 | |
Functions¶
__init__
¶
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
session
|
AsyncSession
|
SQLAlchemy async session. |
required |
find_by_id
async
¶
Find provider by ID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
provider_id
|
UUID
|
Unique provider identifier. |
required |
Returns:
| Type | Description |
|---|---|
Provider | None
|
Provider entity if found, None otherwise. |
Source code in src/infrastructure/persistence/repositories/provider_repository.py
find_by_slug
async
¶
Find provider by slug.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
slug
|
str
|
Provider slug (e.g., "schwab"). |
required |
Returns:
| Type | Description |
|---|---|
Provider | None
|
Provider entity if found, None otherwise. |
Source code in src/infrastructure/persistence/repositories/provider_repository.py
list_all
async
¶
List all providers (including inactive).
Returns:
| Type | Description |
|---|---|
list[Provider]
|
List of all providers in the registry. |
Source code in src/infrastructure/persistence/repositories/provider_repository.py
list_active
async
¶
List only active providers.
Returns:
| Type | Description |
|---|---|
list[Provider]
|
List of active providers. |
Source code in src/infrastructure/persistence/repositories/provider_repository.py
save
async
¶
Save a provider (create or update).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
provider
|
Provider
|
Provider entity to save. |
required |
Source code in src/infrastructure/persistence/repositories/provider_repository.py
exists_by_slug
async
¶
Check if provider with slug exists.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
slug
|
str
|
Provider slug to check. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if provider exists, False otherwise. |