File size: 12,012 Bytes
3fd70bc 3679583 20ba598 3fd70bc 3679583 3fd70bc 3679583 20ba598 3679583 3fd70bc 20ba598 3fd70bc 3679583 3fd70bc 20ba598 62f971f 20ba598 3fd70bc c04a174 20ba598 c04a174 20ba598 c04a174 20ba598 c04a174 20ba598 c04a174 20ba598 c04a174 20ba598 c04a174 20ba598 c04a174 20ba598 c04a174 20ba598 c04a174 3fd70bc 20ba598 3fd70bc 20ba598 3679583 3fd70bc 20ba598 62f971f 20ba598 3fd70bc 3095284 20ba598 3095284 3fd70bc 20ba598 3fd70bc 20ba598 3fd70bc 20ba598 3fd70bc 20ba598 3fd70bc 20ba598 3fd70bc 20ba598 3fd70bc 20ba598 3fd70bc 3679583 20ba598 3679583 20ba598 3679583 20ba598 3679583 20ba598 3679583 fbb8b5c 3679583 20ba598 3679583 20ba598 3679583 3fd70bc 20ba598 3679583 3fd70bc 3679583 8a790fb 20ba598 8a790fb 20ba598 62f971f 20ba598 3fd70bc 3679583 20ba598 3679583 | 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 | import { UserProfile, Exam, Question, Attempt, StudentGroup } from '../types';
export class DataService {
private static authFetch(url: string, init: RequestInit = {}): Promise<Response> {
const token = localStorage.getItem('local_user_token');
const headers = {
...(init.headers || {}),
} as Record<string, string>;
if (token) {
headers['Authorization'] = `Bearer ${token}`;
}
return fetch(url, {
...init,
headers
});
}
// --- User Operations ---
static async getProfile(): Promise<UserProfile | null> {
try {
const response = await this.authFetch('/api/auth/me');
if (!response.ok) return null;
return response.json();
} catch {
return null;
}
}
static async getAllStudents(): Promise<UserProfile[]> {
try {
const response = await this.authFetch('/api/students');
if (!response.ok) return [];
return response.json();
} catch {
return [];
}
}
// --- Question Bank Operations ---
static async createQuestion(question: Partial<Question>): Promise<Question> {
const response = await this.authFetch('/api/questions/create', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(question)
});
if (!response.ok) {
throw new Error("Failed to create question");
}
return response.json();
}
// Orchestrator: Launches are asynchronous background document parsing job
static async startAiCompilationJob(text: string): Promise<{ jobId: string }> {
const response = await this.authFetch('/api/ai/jobs/start', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ text })
});
if (!response.ok) {
const err = await response.json().catch(() => ({}));
throw new Error(err.error || "Failed to start AI compilation workspace");
}
return response.json();
}
// Orchestrator: Polls the current state of an outstanding compilation job
static async getAiJobStatus(jobId: string): Promise<any> {
const response = await this.authFetch(`/api/ai/jobs/status/${jobId}`, {
method: 'GET'
});
if (!response.ok) throw new Error("Failed to consult background job telemetry");
return response.json();
}
// Legacy Parser Wrapper: Calls background parsing job and polls to completion, preserving existing workflows safely
static async parseDocument(text: string, model?: string): Promise<{ questions: Question[], auditReport?: any, modelUsed?: string }> {
const { jobId } = await this.startAiCompilationJob(text);
while (true) {
await new Promise(resolve => setTimeout(resolve, 1000));
const job = await this.getAiJobStatus(jobId);
if (job.status === 'completed') {
return {
questions: job.result.questions,
auditReport: job.result.auditReport,
modelUsed: 'meta/llama-3.1-8b-instruct + meta/llama-3.1-70b-instruct'
};
}
if (job.status === 'failed') {
throw new Error(job.error || "Background parsing pipeline returned a fatal error");
}
}
}
// Deep Validation Audit: Verifies exam questions, duplicates, option errors on the fly
static async validateQuestions(questions: Question[]): Promise<{ examQualityScore: number; warnings: any[]; duplicates: any[] }> {
const response = await this.authFetch('/api/ai/validate', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ questions })
});
if (!response.ok) {
const err = await response.json().catch(() => ({}));
throw new Error(err.error || "Academic validation report generation failed");
}
return response.json();
}
// Academic Analyzer: Translates scoring metrics, pass-rates, and category metrics to professional reviews
static async explainAnalytics(metrics: any): Promise<{ summary: string; strengths: string[]; weaknesses: string[]; recommendations: string[] }> {
const response = await this.authFetch('/api/ai/analytics-explain', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ metrics })
});
if (!response.ok) {
const err = await response.json().catch(() => ({}));
throw new Error(err.error || "Analytics explain compiler failed");
}
return response.json();
}
// Contextual Assistant: Real-time queries regarding analytics, warnings, or syllabus alignments
static async askAiAssistant(prompt: string, context?: any): Promise<{ response: string; modelUsed: string }> {
const response = await this.authFetch('/api/ai/assistant', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ prompt, context })
});
if (!response.ok) {
const err = await response.json().catch(() => ({}));
throw new Error(err.error || "Academic Assistant is currently unresponsive");
}
return response.json();
}
static async getTeacherQuestions(): Promise<Question[]> {
try {
const response = await this.authFetch('/api/questions/list');
if (!response.ok) return [];
return response.json();
} catch {
return [];
}
}
static async deleteQuestion(id: string): Promise<void> {
const response = await this.authFetch(`/api/questions/delete/${id}`, {
method: 'DELETE'
});
if (!response.ok) {
throw new Error("Failed to delete question");
}
}
// --- Group Operations ---
static async createGroup(group: Partial<StudentGroup>): Promise<StudentGroup> {
const response = await this.authFetch('/api/groups/create', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(group)
});
if (!response.ok) {
throw new Error("Failed to create group");
}
return response.json();
}
static async deleteGroup(id: string): Promise<void> {
const response = await this.authFetch(`/api/groups/delete/${id}`, {
method: 'DELETE'
});
if (!response.ok) {
throw new Error("Failed to delete group");
}
}
static async getTeacherGroups(): Promise<StudentGroup[]> {
try {
const response = await this.authFetch('/api/groups/list');
if (!response.ok) return [];
return response.json();
} catch {
return [];
}
}
static async getTeacherStats() {
try {
const response = await this.authFetch('/api/teacher/stats');
if (!response.ok) throw new Error("Failed to consult teacher dashboard stats");
return response.json();
} catch (e) {
console.error(e);
return { totalExams: 0, totalQuestions: 0, totalSubmissions: 0, avgScore: 0 };
}
}
static async getStudentGroups(): Promise<StudentGroup[]> {
try {
const response = await this.authFetch('/api/student/groups');
if (!response.ok) return [];
return response.json();
} catch {
return [];
}
}
static async getAttempt(id: string): Promise<Attempt | null> {
try {
const response = await this.authFetch(`/api/attempts/get/${id}`);
if (!response.ok) return null;
return response.json();
} catch {
return null;
}
}
static async getQuestionsByIds(ids: string[]): Promise<Question[]> {
if (ids.length === 0) return [];
try {
const response = await this.authFetch('/api/questions/batch', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ ids })
});
if (!response.ok) return [];
return response.json();
} catch {
return [];
}
}
// --- Exam Operations ---
static async createExam(exam: Partial<Exam>): Promise<string> {
const response = await this.authFetch('/api/exams/create', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(exam)
});
if (!response.ok) {
const err = await response.json().catch(() => ({}));
throw new Error(err.error || "Failed to create exam");
}
const data = await response.json();
return data.id;
}
static async getExam(id: string): Promise<Exam | null> {
try {
const response = await this.authFetch(`/api/exams/get/${id}`);
if (!response.ok) return null;
return response.json();
} catch {
return null;
}
}
static async getTeacherExams(): Promise<Exam[]> {
try {
const response = await this.authFetch('/api/exams/list');
if (!response.ok) return [];
return response.json();
} catch {
return [];
}
}
static async updateExam(id: string, data: Partial<Exam>): Promise<void> {
const response = await this.authFetch(`/api/exams/update/${id}`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(data)
});
if (!response.ok) {
throw new Error("Failed to update exam");
}
}
static async getExamAttempts(examId: string): Promise<Attempt[]> {
try {
const response = await this.authFetch(`/api/exams/attempts/${examId}`);
if (!response.ok) return [];
return response.json();
} catch {
return [];
}
}
// --- Draft Synchronization Cache Operations ---
static async syncDraft(draftData: any): Promise<any> {
try {
const response = await this.authFetch('/api/drafts/sync', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(draftData)
});
if (!response.ok) return null;
return response.json();
} catch {
return null;
}
}
static async getDraft(): Promise<any | null> {
try {
const response = await this.authFetch('/api/drafts/get');
if (!response.ok) return null;
return response.json();
} catch {
return null;
}
}
static async clearDraft(): Promise<void> {
try {
await this.authFetch('/api/drafts/clear', { method: 'POST' });
} catch (e) {
console.warn("Clear draft failed:", e);
}
}
// --- Attempt Operations ---
static async startAttempt(examId: string, student: UserProfile): Promise<string> {
const response = await this.authFetch('/api/attempts/start', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ examId, student })
});
if (!response.ok) {
throw new Error("Failed to start exam attempt");
}
const data = await response.json();
return data.attemptId;
}
static async updateAttemptProgress(id: string, answers: any, timeSpent: number): Promise<void> {
try {
await this.authFetch(`/api/attempts/progress/${id}`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ answers, timeSpent })
});
} catch (e) {
console.warn("Progress sync failed", e);
}
}
static async submitAttempt(
attemptId: string,
examId: string,
answers: any,
timeSpent: number,
offlineDuration: number = 0,
submissionTimestamp?: string
): Promise<any> {
const response = await this.authFetch('/api/exams/submit', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
attemptId,
examId,
answers,
timeSpent,
offlineDuration,
submissionTimestamp
})
});
if (!response.ok) {
const err = await response.json().catch(() => ({}));
throw new Error(err.error || "Failed to submit exam attempt");
}
return response.json();
}
static async getStudentAttempts(): Promise<Attempt[]> {
try {
const response = await this.authFetch('/api/student/attempts');
if (!response.ok) return [];
return response.json();
} catch {
return [];
}
}
}
|