infrastructure.persistence.models.session¶
src.infrastructure.persistence.models.session
¶
Session database model for multi-device session management.
This module defines the Session model for storing authenticated user sessions with rich metadata for security, audit, and multi-device tracking.
Security
- is_revoked: Immediate session revocation (logout, password change, theft)
- ip_address: Track client IP for anomaly detection
- suspicious_activity_count: Security event counter
Provider Tracking (Dashtam-specific): - providers_accessed: Track which providers accessed per session - Used for audit trail when investigating compromised sessions
Classes¶
Session
¶
Bases: BaseMutableModel
Session model for multi-device session management.
Stores authenticated sessions with rich metadata for security, audit, and multi-device tracking. Each session is tied to a user and optionally to a refresh token.
Session Lifecycle
- Created on successful login (with device/location enrichment)
- Activity tracked on each request (last_activity_at, IP changes)
- Revoked on logout, password change, or security event
- Expires naturally after 30 days (matches refresh token)
Security Features
- Device fingerprinting (user_agent, device_info)
- IP geolocation tracking (ip_address, location)
- Suspicious activity detection (suspicious_activity_count)
- Immediate revocation (is_revoked, revoked_at, revoked_reason)
- Provider access tracking (providers_accessed)
Fields
id: UUID primary key (from BaseMutableModel) created_at: Timestamp when session created (from BaseMutableModel) updated_at: Timestamp when session last updated (from BaseMutableModel)
Identity: user_id: Foreign key to users table (cascade delete)
Device Information: device_info: Parsed device info ("Chrome on macOS") user_agent: Full user agent string
Network Information: ip_address: Client IP at session creation (PostgreSQL INET) location: Geographic location ("New York, US")
Timestamps: last_activity_at: Last activity timestamp expires_at: When session expires (matches refresh token)
Security: is_revoked: Whether session is revoked is_trusted: Whether device is trusted revoked_at: When session was revoked revoked_reason: Why session was revoked
Token Tracking: refresh_token_id: Associated refresh token ID
Security Tracking: last_ip_address: Most recent IP (detect changes) suspicious_activity_count: Security event counter
Provider Tracking: last_provider_accessed: Last provider accessed last_provider_sync_at: Last provider sync time providers_accessed: List of providers accessed (PostgreSQL ARRAY)
Indexes
- ix_sessions_user_id: (user_id) for user's sessions
- ix_sessions_is_revoked: (is_revoked) for active session queries
- ix_sessions_expires_at: (expires_at) for cleanup queries
- idx_sessions_user_active: (user_id, is_revoked, expires_at) for active count
- idx_sessions_cleanup: (expires_at, is_revoked) for batch cleanup
Foreign Keys
- user_id: References users(id) ON DELETE CASCADE
Example
Create session (via repository)¶
session = Session( user_id=user_id, device_info="Chrome on macOS", ip_address="192.168.1.1", location="New York, US", expires_at=datetime.now(UTC) + timedelta(days=30), ) db_session.add(session) await db_session.commit()
Source code in src/infrastructure/persistence/models/session.py
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 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 259 260 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 | |