Spaces:
Build error
Build error
File size: 10,911 Bytes
b91146d 1586102 |
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 |
from db import courses_collection2
from dotenv import load_dotenv
import os
from pymongo import MongoClient
from datetime import datetime
load_dotenv()
MONGO_URI = os.getenv("MONGO_URI")
client = MongoClient(MONGO_URI)
db = client["novascholar_db"]
# Define the updated course schema
updated_course_schema = {
"bsonType": "object",
"required": [
"course_id",
"title",
"description",
"faculty",
"faculty_id",
"duration",
"created_at",
],
"properties": {
"course_id": {
"bsonType": "string",
"description": "Unique identifier for the course",
},
"title": {"bsonType": "string", "description": "Title of the course"},
"description": {
"bsonType": "string",
"description": "Description of the course",
},
"faculty": {"bsonType": "string", "description": "Name of the faculty"},
"duration": {"bsonType": "string", "description": "Duration of the course"},
"created_at": {
"bsonType": "date",
"description": "Date when the course was created",
},
"sessions": {
"bsonType": "array",
"description": "List of sessions associated with the course",
"items": {
"bsonType": "object",
"required": ["session_id", "title", "date"],
"properties": {
"session_id": {
"bsonType": "string",
"description": "Unique identifier for the session",
},
"title": {
"bsonType": "string",
"description": "Title of the session",
},
"date": {"bsonType": "date", "description": "Date of the session"},
"status": {
"bsonType": "string",
"description": "Status of the session (e.g., completed, upcoming)",
},
"created_at": {
"bsonType": "date",
"description": "Date when the session was created",
},
"pre_class": {
"bsonType": "object",
"description": "Pre-class segment data",
"properties": {
"resources": {
"bsonType": "array",
"description": "List of pre-class resources",
"items": {
"bsonType": "object",
"required": ["type", "title", "url"],
"properties": {
"type": {
"bsonType": "string",
"description": "Type of resource (e.g., pdf, video)",
},
"title": {
"bsonType": "string",
"description": "Title of the resource",
},
"url": {
"bsonType": "string",
"description": "URL of the resource",
},
"vector": {
"bsonType": "array",
"description": "Vector representation of the resource",
"items": {"bsonType": "double"},
},
},
},
},
"completion_required": {
"bsonType": "bool",
"description": "Indicates if completion of pre-class resources is required",
},
},
},
"in_class": {
"bsonType": "object",
"description": "In-class segment data",
"properties": {
"topics": {
"bsonType": "array",
"description": "List of topics covered in the session",
"items": {"bsonType": "string"},
},
"quiz": {
"bsonType": "object",
"description": "Quiz data",
"properties": {
"title": {
"bsonType": "string",
"description": "Title of the quiz",
},
"questions": {
"bsonType": "int",
"description": "Number of questions in the quiz",
},
"duration": {
"bsonType": "int",
"description": "Duration of the quiz in minutes",
},
},
},
"polls": {
"bsonType": "array",
"description": "List of polls conducted during the session",
"items": {
"bsonType": "object",
"required": ["question", "options"],
"properties": {
"question": {
"bsonType": "string",
"description": "Poll question",
},
"options": {
"bsonType": "array",
"description": "List of poll options",
"items": {"bsonType": "string"},
},
"responses": {
"bsonType": "object",
"description": "Responses to the poll",
"additionalProperties": {"bsonType": "int"},
},
},
},
},
},
},
"post_class": {
"bsonType": "object",
"description": "Post-class segment data",
"properties": {
"assignments": {
"bsonType": "array",
"description": "List of assignments",
"items": {
"bsonType": "object",
"required": ["id", "title", "due_date", "status"],
"properties": {
"id": {
"bsonType": ["objectId", "int"],
"description": "Assignment ID",
},
"title": {
"bsonType": "string",
"description": "Title of the assignment",
},
"due_date": {
"bsonType": "date",
"description": "Due date of the assignment",
},
"status": {
"bsonType": "string",
"description": "Status of the assignment (e.g., pending, completed)",
},
"submissions": {
"bsonType": "array",
"description": "List of submissions",
"items": {
"bsonType": "object",
"properties": {
"student_id": {
"bsonType": "objectId",
"description": "ID of the student who submitted the assignment",
},
"file_url": {
"bsonType": "string",
"description": "URL of the submitted file",
},
"submitted_at": {
"bsonType": "date",
"description": "Date when the assignment was submitted",
},
},
},
},
},
},
}
},
},
},
},
},
},
}
# Update the schema using the collMod command
db.command({
"collMod": "courses_collection2",
"validator": {"$jsonSchema": updated_course_schema}
})
print("Schema updated successfully!") |