infrastructure.persistence.models.refresh_token¶
src.infrastructure.persistence.models.refresh_token
¶
Refresh token database model for authentication.
This module defines the RefreshToken model for storing long-lived refresh tokens.
Security
- token_hash: Bcrypt hashed token (NOT plaintext, revocable)
- expires_at: 30 days from creation
- revoked_at: Immediate revocation (logout, password change, theft detection)
- rotation_count: Track token rotations for security monitoring
Token Breach Rotation
- token_version: Version at time of token creation (must meet minimum requirements)
- global_version_at_issuance: Global version when token was issued Validation: token_version >= max(global_min_token_version, user.min_token_version)
Classes¶
RefreshToken
¶
Bases: BaseMutableModel
Refresh token model for JWT refresh flow.
Stores opaque refresh tokens (hashed) that can be revoked. Used with short-lived JWT access tokens for secure authentication.
Token Lifecycle
- Created on login (30 day expiration)
- Used to get new access token (rotated on each use)
- Revoked on logout, password change, or theft detection
- Expires naturally after 30 days
Security Features
- Opaque tokens (long random strings, not JWT)
- Hashed with bcrypt before storage (like passwords)
- One-time use (rotated on every refresh)
- Immediate revocation (logout, security events)
- Theft detection (attempt to use rotated token)
Fields
id: UUID primary key (from BaseMutableModel) created_at: Timestamp when token created (from BaseMutableModel) updated_at: Timestamp when token last used (from BaseMutableModel) user_id: Foreign key to users table (cascade delete) token_hash: Bcrypt hashed token (NEVER plaintext) session_id: Foreign key to sessions table (F1.3, cascade delete) expires_at: Timestamp when token expires (30 days from creation) revoked_at: Timestamp when revoked (nullable, set on revocation) revoked_reason: Why token was revoked (logout, password_change, theft) last_used_at: Timestamp when token last used (for monitoring) rotation_count: Number of times token has been rotated token_version: Token version at issuance (for breach rotation) global_version_at_issuance: Global version when token was issued
Indexes
- idx_refresh_tokens_user_id: (user_id) for user's active tokens
- idx_refresh_tokens_token_hash: (token_hash) for lookup (unique)
- idx_refresh_tokens_expires_at: (expires_at) for cleanup queries
- idx_refresh_tokens_session_id: (session_id) for session revocation
Foreign Keys
- user_id: References users(id) ON DELETE CASCADE
- session_id: References sessions(id) ON DELETE CASCADE (F1.3)
Example
Create refresh token (via repository)¶
token = RefreshToken( user_id=user_id, token_hash="$2b$12$...", # Bcrypt hash of token session_id=session_id, expires_at=datetime.now(UTC) + timedelta(days=30), rotation_count=0, ) session.add(token) await session.commit()
Query token by hash (refresh)¶
result = await session.execute( select(RefreshToken) .where(RefreshToken.token_hash == token_hash) .where(RefreshToken.revoked_at.is_(None)) .where(RefreshToken.expires_at > datetime.now(UTC)) ) token = result.scalar_one_or_none()
Source code in src/infrastructure/persistence/models/refresh_token.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 | |