File size: 16,721 Bytes
01f3f99 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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 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 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 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 | #!/usr/bin/env python3
"""
OmniDiag β Database Seed Script
=================================
Idempotent script to populate the database with demo data.
Safe to run multiple times β uses ON CONFLICT DO NOTHING / get-or-create
pattern for all seed data.
Usage:
# Default: uses DATABASE_URL from environment (or SQLite fallback)
python scripts/seed_db.py
# Explicit PostgreSQL connection:
DATABASE_URL=postgresql+asyncpg://omnidiag:omnidiag_pass@localhost:5432/omnidiag_db \\
python scripts/seed_db.py
Environment Variables:
DATABASE_URL (optional, default: sqlite+aiosqlite:///./omnidiag_dev.db)
"""
import asyncio
import os
import sys
import uuid
from datetime import date, datetime, timezone
# Ensure project root is on sys.path so we can import backend modules
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
import bcrypt
from sqlalchemy import text
from sqlalchemy.ext.asyncio import AsyncSession, create_async_engine, async_sessionmaker
from backend.database import Base, DATABASE_URL
from backend.db_models import (
Role,
User,
Patient,
Prediction,
)
# ββ Password Hashing ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def hash_password(password: str) -> str:
"""Hash a password using bcrypt."""
return bcrypt.hashpw(password.encode("utf-8"), bcrypt.gensalt()).decode("utf-8")
# ββ Helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def utcnow() -> datetime:
"""Return current UTC datetime."""
return datetime.now(timezone.utc)
# ββ Seed Data βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ROLES = [
{"name": "super_admin", "description": "Full system access β user management, audit review, model administration"},
{"name": "doctor", "description": "Clinical access β predict, explain, counterfactuals, patient records"},
{"name": "nurse", "description": "Limited clinical access β predict, view patient records"},
{"name": "viewer", "description": "Read-only access β view predictions and patient data"},
]
USERS = [
{
"email": "admin@omnidiag.com",
"password": "Admin@123",
"full_name": "Admin User",
"role": "super_admin",
},
{
"email": "doctor@omnidiag.com",
"password": "Doctor@123",
"full_name": "Dr. Sarah Al-Khalid",
"role": "doctor",
},
]
# Heart disease patients (from frontend/src/mockPatients.js heart_disease entries)
CAD_PATIENTS = [
{
"mrn": "CAD-001",
"full_name": "Ahmed Al-Rashid",
"date_of_birth": date(1970, 5, 15),
"gender": "M",
"contact_email": "ahmed.alrashid@example.com",
"prediction": {
"disease": "heart_disease",
"input_features": {
"Age": 54,
"Sex": "M",
"ChestPainType": "ATA",
"RestingBP": 140,
"Cholesterol": 289,
"FastingBS": 0,
"RestingECG": "Normal",
"MaxHR": 122,
"ExerciseAngina": "N",
"Oldpeak": 0.0,
"ST_Slope": "Flat",
},
"prediction": 1,
"confidence": 0.72,
"diagnosis": "Positive",
},
},
{
"mrn": "CAD-002",
"full_name": "Fatima Hassan",
"date_of_birth": date(1962, 8, 22),
"gender": "F",
"contact_email": "fatima.hassan@example.com",
"prediction": {
"disease": "heart_disease",
"input_features": {
"Age": 62,
"Sex": "F",
"ChestPainType": "ASY",
"RestingBP": 158,
"Cholesterol": 340,
"FastingBS": 1,
"RestingECG": "LVH",
"MaxHR": 98,
"ExerciseAngina": "Y",
"Oldpeak": 2.3,
"ST_Slope": "Down",
},
"prediction": 1,
"confidence": 0.91,
"diagnosis": "Positive",
},
},
{
"mrn": "CAD-003",
"full_name": "Khalid Othman",
"date_of_birth": date(1979, 11, 3),
"gender": "M",
"contact_email": "khalid.othman@example.com",
"prediction": {
"disease": "heart_disease",
"input_features": {
"Age": 45,
"Sex": "M",
"ChestPainType": "NAP",
"RestingBP": 120,
"Cholesterol": 210,
"FastingBS": 0,
"RestingECG": "Normal",
"MaxHR": 160,
"ExerciseAngina": "N",
"Oldpeak": 0.5,
"ST_Slope": "Up",
},
"prediction": 0,
"confidence": 0.84,
"diagnosis": "Negative",
},
},
]
# Diabetes patients (from frontend/src/mockPatients.js diabetes entries)
DM_PATIENTS = [
{
"mrn": "DM-001",
"full_name": "Layla Mansour",
"date_of_birth": date(1966, 3, 10),
"gender": "F",
"contact_email": "layla.mansour@example.com",
"prediction": {
"disease": "diabetes",
"input_features": {
"HighBP": 1,
"HighChol": 1,
"CholCheck": 1,
"BMI": 32.4,
"Smoker": 0,
"Stroke": 0,
"HeartDiseaseorAttack": 0,
"PhysActivity": 0,
"Fruits": 0,
"Veggies": 0,
"HvyAlcoholConsump": 0,
"AnyHealthcare": 1,
"NoDocbcCost": 0,
"GenHlth": 3,
"MentHlth": 12,
"PhysHlth": 18,
"DiffWalk": 1,
"Sex": 0,
"Age": 10,
"Education": 3,
"Income": 4,
},
"prediction": 1,
"confidence": 0.87,
"diagnosis": "Positive",
},
},
{
"mrn": "DM-002",
"full_name": "Mohammed Al-Sayed",
"date_of_birth": date(1960, 7, 28),
"gender": "M",
"contact_email": "mohammed.alsayed@example.com",
"prediction": {
"disease": "diabetes",
"input_features": {
"HighBP": 1,
"HighChol": 1,
"CholCheck": 1,
"BMI": 28.7,
"Smoker": 1,
"Stroke": 0,
"HeartDiseaseorAttack": 1,
"PhysActivity": 0,
"Fruits": 1,
"Veggies": 0,
"HvyAlcoholConsump": 0,
"AnyHealthcare": 1,
"NoDocbcCost": 0,
"GenHlth": 4,
"MentHlth": 8,
"PhysHlth": 22,
"DiffWalk": 1,
"Sex": 1,
"Age": 11,
"Education": 2,
"Income": 3,
},
"prediction": 1,
"confidence": 0.93,
"diagnosis": "Positive",
},
},
]
# ββ Main Seeder βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
async def seed_database(db_url: str) -> None:
"""
Seed the database with initial demo data.
This function is idempotent β safe to run multiple times.
Uses ON CONFLICT DO NOTHING / get-or-create patterns throughout.
"""
# Create engine and session
engine = create_async_engine(db_url, echo=False)
session_factory = async_sessionmaker(engine, class_=AsyncSession, expire_on_commit=False)
# Stats tracker
stats = {"roles": 0, "users": 0, "patients": 0, "predictions": 0}
async with session_factory() as session:
async with session.begin():
# ββ 1. Create tables if they don't exist βββββββββββββββββββββββ
async with engine.begin() as conn:
await conn.run_sync(Base.metadata.create_all)
# ββ 2. Seed roles βββββββββββββββββββββββββββββββββββββββββββββ
for role_data in ROLES:
# Check if role exists
result = await session.execute(
text("SELECT id FROM roles WHERE name = :name"),
{"name": role_data["name"]},
)
existing = result.scalar_one_or_none()
if existing is None:
role = Role(name=role_data["name"], description=role_data["description"])
session.add(role)
stats["roles"] += 1
print(f" β Created role: {role_data['name']}")
else:
print(f" β Role already exists: {role_data['name']}")
await session.flush() # Ensure roles have IDs
# ββ 3. Seed users βββββββββββββββββββββββββββββββββββββββββββββ
for user_data in USERS:
result = await session.execute(
text("SELECT id FROM users WHERE email = :email"),
{"email": user_data["email"]},
)
existing = result.scalar_one_or_none()
if existing is None:
user = User(
id=str(uuid.uuid4()),
email=user_data["email"],
hashed_password=hash_password(user_data["password"]),
full_name=user_data["full_name"],
is_active=True,
)
session.add(user)
await session.flush() # Get user.id
# Assign role
role_result = await session.execute(
text("SELECT id FROM roles WHERE name = :name"),
{"name": user_data["role"]},
)
role_id = role_result.scalar_one()
await session.execute(
text(
"INSERT INTO user_roles (user_id, role_id, assigned_at) "
"VALUES (:user_id, :role_id, :assigned_at)"
),
{
"user_id": user.id,
"role_id": role_id,
"assigned_at": utcnow(),
},
)
stats["users"] += 1
print(f" β Created user: {user_data['email']} (role: {user_data['role']})")
else:
print(f" β User already exists: {user_data['email']}")
# Get doctor user ID for created_by fields
doctor_result = await session.execute(
text("SELECT id FROM users WHERE email = 'doctor@omnidiag.com'"),
)
doctor_id = doctor_result.scalar_one()
# ββ 4. Seed CAD patients ββββββββββββββββββββββββββββββββββββββ
for pat_data in CAD_PATIENTS:
result = await session.execute(
text("SELECT id FROM patients WHERE mrn = :mrn"),
{"mrn": pat_data["mrn"]},
)
existing = result.scalar_one_or_none()
if existing is None:
patient_id = str(uuid.uuid4())
patient = Patient(
id=patient_id,
mrn=pat_data["mrn"],
full_name=pat_data["full_name"],
date_of_birth=pat_data["date_of_birth"],
gender=pat_data["gender"],
contact_email=pat_data["contact_email"],
created_by=doctor_id,
)
session.add(patient)
await session.flush()
# Create prediction
pred = pat_data["prediction"]
prediction = Prediction(
id=str(uuid.uuid4()),
patient_id=patient_id,
disease=pred["disease"],
input_features=pred["input_features"],
prediction=pred["prediction"],
confidence=pred["confidence"],
diagnosis=pred["diagnosis"],
created_by=doctor_id,
)
session.add(prediction)
stats["patients"] += 1
stats["predictions"] += 1
print(f" β Created CAD patient: {pat_data['full_name']} ({pat_data['mrn']})")
else:
print(f" β CAD patient already exists: {pat_data['full_name']}")
# ββ 5. Seed Diabetes patients βββββββββββββββββββββββββββββββββ
for pat_data in DM_PATIENTS:
result = await session.execute(
text("SELECT id FROM patients WHERE mrn = :mrn"),
{"mrn": pat_data["mrn"]},
)
existing = result.scalar_one_or_none()
if existing is None:
patient_id = str(uuid.uuid4())
patient = Patient(
id=patient_id,
mrn=pat_data["mrn"],
full_name=pat_data["full_name"],
date_of_birth=pat_data["date_of_birth"],
gender=pat_data["gender"],
contact_email=pat_data["contact_email"],
created_by=doctor_id,
)
session.add(patient)
await session.flush()
# Create prediction
pred = pat_data["prediction"]
prediction = Prediction(
id=str(uuid.uuid4()),
patient_id=patient_id,
disease=pred["disease"],
input_features=pred["input_features"],
prediction=pred["prediction"],
confidence=pred["confidence"],
diagnosis=pred["diagnosis"],
created_by=doctor_id,
)
session.add(prediction)
stats["patients"] += 1
stats["predictions"] += 1
print(f" β Created DM patient: {pat_data['full_name']} ({pat_data['mrn']})")
else:
print(f" β DM patient already exists: {pat_data['full_name']}")
# ββ Commit is handled by `async with session.begin()` βββββββββββββ
# ββ Print summary ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print()
print("=" * 50)
print("β
Database seeding complete!")
print("=" * 50)
print(f" β
Seeded {stats['roles']} roles")
print(f" β
Seeded {stats['users']} users")
print(f" β
Seeded {stats['patients']} patients")
print(f" β
Seeded {stats['predictions']} predictions")
print("=" * 50)
print()
print("Demo credentials:")
print(" Admin: admin@omnidiag.com / Admin@123")
print(" Doctor: doctor@omnidiag.com / Doctor@123")
print()
await engine.dispose()
def main() -> None:
"""Entry point β read DATABASE_URL from environment and run the seeder."""
db_url = os.getenv("DATABASE_URL", DATABASE_URL)
print(f"π± OmniDiag Database Seeder")
print(f" Database URL: {db_url}")
print()
asyncio.run(seed_database(db_url))
if __name__ == "__main__":
main()
|