Spaces:
Running
Running
File size: 9,005 Bytes
1906404 | 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 | import { db } from '../config/firebase.js';
import admin from 'firebase-admin';
const FieldValue = admin.firestore.FieldValue;
// ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// USERS
// ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function createUser(uid, { name, email }) {
const userRef = db.collection('users').doc(uid);
const existing = await userRef.get();
if (existing.exists) {
return existing.data();
}
const userData = {
name: name || email?.split('@')[0] || 'User',
email: email || '',
createdAt: FieldValue.serverTimestamp(),
};
await userRef.set(userData);
return userData;
}
export async function getUser(uid) {
const doc = await db.collection('users').doc(uid).get();
if (!doc.exists) return null;
return { id: doc.id, ...doc.data() };
}
// ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// INTERVIEWS
// ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function saveInterview(userId, data) {
const ref = await db.collection('interviews').add({
userId,
type: data.type,
questions: data.questions || [],
answers: data.answers || [],
score: data.score || 0,
feedback: data.feedback || '',
strengths: data.strengths || [],
weaknesses: data.weaknesses || [],
advice: data.advice || [],
createdAt: FieldValue.serverTimestamp(),
});
return ref.id;
}
export async function getUserInterviews(userId) {
const snapshot = await db.collection('interviews')
.where('userId', '==', userId)
.get();
const docs = snapshot.docs.map(doc => ({ id: doc.id, ...doc.data() }));
// Sort in-memory to avoid requiring a composite index
docs.sort((a, b) => {
const aTime = a.createdAt?._seconds || 0;
const bTime = b.createdAt?._seconds || 0;
return bTime - aTime;
});
return docs.slice(0, 50);
}
// ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// ATS REPORTS
// ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function saveATSReport(userId, data) {
const ref = await db.collection('atsReports').add({
userId,
score: data.score || 0,
suggestions: data.suggestions || [],
result: data.result || {},
action: data.action || 'score',
createdAt: FieldValue.serverTimestamp(),
});
return ref.id;
}
export async function getUserATSReports(userId) {
const snapshot = await db.collection('atsReports')
.where('userId', '==', userId)
.get();
const docs = snapshot.docs.map(doc => ({ id: doc.id, ...doc.data() }));
docs.sort((a, b) => {
const aTime = a.createdAt?._seconds || 0;
const bTime = b.createdAt?._seconds || 0;
return bTime - aTime;
});
return docs.slice(0, 20);
}
// ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// RESUMES
// ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function saveResume(userId, data) {
const ref = await db.collection('resumes').add({
userId,
content: data.content || '',
pdfUrl: data.pdfUrl || '',
github: data.github || '',
linkedin: data.linkedin || '',
createdAt: FieldValue.serverTimestamp(),
});
return ref.id;
}
export async function getLatestResume(userId) {
const snapshot = await db.collection('resumes')
.where('userId', '==', userId)
.get();
if (snapshot.empty) return null;
const docs = snapshot.docs.map(doc => ({ id: doc.id, ...doc.data() }));
docs.sort((a, b) => {
const aTime = a.createdAt?._seconds || 0;
const bTime = b.createdAt?._seconds || 0;
return bTime - aTime;
});
return docs[0];
}
// ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// COMPANY PREP PROGRESS
// ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function markQuestionSolved(userId, { topic, company, questionId }) {
// Check for duplicate
const existing = await db.collection('progress')
.where('userId', '==', userId)
.where('topic', '==', topic)
.where('company', '==', company)
.where('questionId', '==', questionId)
.limit(1)
.get();
if (!existing.empty) {
return { alreadySolved: true, id: existing.docs[0].id };
}
const ref = await db.collection('progress').add({
userId,
topic,
company,
questionId,
status: 'solved',
solvedAt: FieldValue.serverTimestamp(),
});
return { alreadySolved: false, id: ref.id };
}
export async function unmarkQuestionSolved(userId, { topic, company, questionId }) {
const snapshot = await db.collection('progress')
.where('userId', '==', userId)
.where('topic', '==', topic)
.where('company', '==', company)
.where('questionId', '==', questionId)
.limit(1)
.get();
if (snapshot.empty) {
return { wasRemoved: false };
}
await snapshot.docs[0].ref.delete();
return { wasRemoved: true };
}
export async function getUserProgress(userId, topic, company) {
const snapshot = await db.collection('progress')
.where('userId', '==', userId)
.where('topic', '==', topic)
.where('company', '==', company)
.get();
const solvedIds = snapshot.docs.map(doc => doc.data().questionId);
return { solvedIds, solvedCount: solvedIds.length };
}
export async function getAllUserProgress(userId) {
const snapshot = await db.collection('progress')
.where('userId', '==', userId)
.get();
return snapshot.docs.map(doc => doc.data());
}
// ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// DASHBOARD STATS
// ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function getDashboardStats(userId) {
let totalInterviews = 0;
let avgScore = 0;
let recentInterviews = [];
let latestATSScore = 0;
let latestATSSuggestions = [];
let totalSolved = 0;
// Get interview stats
try {
const interviews = await db.collection('interviews')
.where('userId', '==', userId)
.get();
const interviewData = interviews.docs.map(d => d.data());
totalInterviews = interviewData.length;
avgScore = totalInterviews > 0
? Math.round(interviewData.reduce((sum, i) => sum + (i.score || 0), 0) / totalInterviews)
: 0;
// Sort in-memory
interviewData.sort((a, b) => (b.createdAt?._seconds || 0) - (a.createdAt?._seconds || 0));
recentInterviews = interviewData.slice(0, 5);
} catch (err) {
console.error('Dashboard: failed to fetch interviews:', err.message);
}
// Get latest ATS score (no orderBy to avoid composite index requirement)
try {
const atsSnapshot = await db.collection('atsReports')
.where('userId', '==', userId)
.get();
if (!atsSnapshot.empty) {
const atsDocs = atsSnapshot.docs.map(d => d.data());
atsDocs.sort((a, b) => (b.createdAt?._seconds || 0) - (a.createdAt?._seconds || 0));
const latestATS = atsDocs[0];
latestATSScore = latestATS?.score || 0;
latestATSSuggestions = latestATS?.suggestions || [];
}
} catch (err) {
console.error('Dashboard: failed to fetch ATS reports:', err.message);
}
// Get solved questions count
try {
const progress = await db.collection('progress')
.where('userId', '==', userId)
.get();
totalSolved = progress.size;
} catch (err) {
console.error('Dashboard: failed to fetch progress:', err.message);
}
return {
totalInterviews,
avgScore,
recentInterviews,
latestATSScore,
latestATSSuggestions,
totalSolved,
};
}
|