Key points on questions link into article sections (AMBOSS-style) with samples; difficulty tagging with builder/bank filters; adaptive session algorithm prefers unanswered questions then recycles older incorrect ones, weakest categories first with damping; question create/edit is now admin/educator only; expired exams no longer auto-submit on resume; exam suspend messaging updated. Migrations k4f5a6b7c819, l5a6b7c8d920, m6a7b8c9d031. 63 backend and 97 frontend tests pass.
46 lines
2.7 KiB
Python
46 lines
2.7 KiB
Python
from datetime import datetime
|
|
|
|
from sqlalchemy import Column, Integer, String, DateTime, ForeignKey, Text
|
|
from sqlalchemy.orm import relationship
|
|
|
|
from app.database import Base
|
|
from app.models.quiz_category import QuizCategory # noqa — ensures mapper resolves "QuizCategory"
|
|
from app.models.quiz_question_link import QuizQuestionLink # noqa
|
|
|
|
|
|
class Quiz(Base):
|
|
__tablename__ = "quizzes"
|
|
|
|
id = Column(Integer, primary_key=True, index=True)
|
|
section_id = Column(Integer, ForeignKey("sections.id", ondelete="SET NULL"), nullable=True)
|
|
user_id = Column(Integer, ForeignKey("users.id"), nullable=False)
|
|
category_id = Column(Integer, ForeignKey("quiz_categories.id", ondelete="SET NULL"), nullable=True)
|
|
title = Column(String, nullable=False)
|
|
questions_count = Column(Integer, default=0)
|
|
time_limit_minutes = Column(Integer, nullable=True) # null = no limit
|
|
mode = Column(String, default="timed") # timed, learning
|
|
skipped_questions = Column(Text, nullable=True) # JSON list of skipped question texts
|
|
created_at = Column(DateTime, default=datetime.utcnow)
|
|
deleted_at = Column(DateTime, nullable=True) # soft delete — null = active
|
|
is_published = Column(Integer, default=1) # 1 = visible to users, 0 = hidden (admin only)
|
|
is_shared = Column(Integer, default=0) # 0=private, 1=shared (visible to other users)
|
|
course_id = Column(Integer, ForeignKey("courses.id", ondelete="CASCADE"), nullable=True) # set = course-only quiz, hidden from main page
|
|
max_attempts = Column(Integer, nullable=True) # null = unlimited
|
|
questions_per_attempt = Column(Integer, nullable=True) # null = all; set = random subset from pool
|
|
allow_review = Column(Integer, default=1) # 1 = students can review answers after submit, 0 = no review
|
|
share_token = Column(String(64), unique=True, nullable=True) # public /share/{token} link when set
|
|
origin = Column(String(20), default="bank") # bank | upload | ai
|
|
|
|
section = relationship("Section", back_populates="quizzes")
|
|
user = relationship("User", back_populates="quizzes")
|
|
category = relationship("QuizCategory", back_populates="quizzes", foreign_keys=[category_id])
|
|
questions = relationship(
|
|
"Question",
|
|
secondary="quiz_question_links",
|
|
primaryjoin="Quiz.id == foreign(QuizQuestionLink.quiz_id)",
|
|
secondaryjoin="Question.id == foreign(QuizQuestionLink.question_id)",
|
|
order_by="QuizQuestionLink.position",
|
|
viewonly=True, # mutations handled explicitly via QuizQuestionLink
|
|
)
|
|
attempts = relationship("QuizAttempt", back_populates="quiz", cascade="all, delete-orphan")
|
|
reminders = relationship("ReminderSchedule", cascade="all, delete-orphan", foreign_keys="ReminderSchedule.quiz_id")
|