-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlabAppointmentController.js
More file actions
415 lines (358 loc) · 12.6 KB
/
labAppointmentController.js
File metadata and controls
415 lines (358 loc) · 12.6 KB
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
// controllers/labAppointmentController.js
import mongoose from 'mongoose';
import LabAppointment from '../../models/Lab/LabAppointment.js';
import Lab from '../../models/Lab/Lab.js';
import Patient from '../../models/Users/Patient.js';
import LabStaff from '../../models/Lab/LabStaff.js';
import LabReport from '../../models/Lab/LabReport.js';
// Book lab appointment (by patient)
export const bookLabAppointment = async (req, res) => {
try {
const { profileId } = req.user;
const {
labId,
tests, // Array of test IDs
collectionType,
appointmentDate,
appointmentTime,
collectionAddress,
suggestedByDoctorId,
} = req.body;
if (
!labId ||
!tests ||
tests.length === 0 ||
!collectionType ||
!appointmentDate ||
!appointmentTime
) {
return res.status(400).json({ message: 'Required fields missing' });
}
const lab = await Lab.findById(labId);
if (!lab) {
return res.status(404).json({ message: 'Lab not found' });
}
// Fetch full test details from lab
const selectedTests = [];
let allTestsSupportHomeCollection = true;
let anyTestRequiresEquipment = false;
for (const testId of tests) {
const test = lab.tests.id(testId);
if (!test) {
return res.status(404).json({
message: `Test with ID ${testId} not found in this lab`,
});
}
if (!test.isActive) {
return res.status(400).json({
message: `Test "${test.testName}" is currently not available`,
});
}
// Check if test supports home collection
if (!test.homeCollectionAvailable) {
allTestsSupportHomeCollection = false;
}
// Check if test requires equipment (like X-ray, CT scan)
if (test.requiresEquipment) {
anyTestRequiresEquipment = true;
}
selectedTests.push({
testId: test._id,
testName: test.testName,
testCode: test.testCode,
category: test.category,
price: test.price,
homeCollectionAvailable: test.homeCollectionAvailable,
requiresEquipment: test.requiresEquipment,
});
}
// Validation: If user selected home collection, check if all tests support it
if (collectionType === 'home_collection') {
if (!allTestsSupportHomeCollection) {
const nonHomeCollectionTests = selectedTests
.filter((t) => !t.homeCollectionAvailable)
.map((t) => t.testName);
return res.status(400).json({
message: 'Home collection not available for some selected tests',
nonHomeCollectionTests,
suggestion: 'These tests require you to visit the lab',
});
}
if (anyTestRequiresEquipment) {
const equipmentTests = selectedTests
.filter((t) => t.requiresEquipment)
.map((t) => t.testName);
return res.status(400).json({
message: 'Some tests require special equipment and must be done at the lab',
equipmentRequiredTests: equipmentTests,
suggestion: 'Please visit the lab for these tests',
});
}
if (!collectionAddress) {
return res.status(400).json({
message: 'Collection address is required for home collection',
});
}
}
// Calculate total amount
let totalAmount = selectedTests.reduce((sum, test) => sum + test.price, 0);
let homeCollectionFee = 0;
if (collectionType === 'home_collection') {
// Use test-specific fees or general lab fee
homeCollectionFee = selectedTests.reduce((sum, test) => {
const testFromLab = lab.tests.id(test.testId);
return sum + (testFromLab.homeCollectionFee || 0);
}, 0);
// If no test-specific fees, use general lab fee
if (homeCollectionFee === 0) {
homeCollectionFee = lab.generalHomeCollectionFee;
}
totalAmount += homeCollectionFee;
}
const appointment = new LabAppointment({
patientId: profileId,
labId,
tests: selectedTests,
collectionType,
canBeHomeCollected: allTestsSupportHomeCollection,
appointmentDate: new Date(appointmentDate),
appointmentTime,
collectionAddress: collectionType === 'home_collection' ? collectionAddress : undefined,
suggestedByDoctorId: suggestedByDoctorId || undefined,
totalAmount,
homeCollectionFee: collectionType === 'home_collection' ? homeCollectionFee : 0,
status: 'pending',
});
await appointment.save();
// Add to patient's lab appointments
await Patient.findByIdAndUpdate(profileId, { $push: { labAppointments: appointment._id } });
res.status(201).json({
message: 'Lab appointment booked successfully',
appointment: appointment.toObject({ getters: true }),
});
} catch (error) {
console.error('Error booking lab appointment:', error);
res.status(500).json({
message: 'Failed to book lab appointment',
error: process.env.NODE_ENV === 'development' ? error.message : undefined,
});
}
};
// Check if tests support home collection (helper endpoint)
export const checkHomeCollectionAvailability = async (req, res) => {
try {
const { labId, testIds } = req.body;
if (!labId || !testIds || testIds.length === 0) {
return res.status(400).json({ message: 'Lab ID and test IDs are required' });
}
const lab = await Lab.findById(labId);
if (!lab) {
return res.status(404).json({ message: 'Lab not found' });
}
const testDetails = [];
let allSupport = true;
let anyRequiresEquipment = false;
let totalHomeCollectionFee = 0;
for (const testId of testIds) {
const test = lab.tests.id(testId);
if (test) {
testDetails.push({
testId: test._id,
testName: test.testName,
category: test.category,
homeCollectionAvailable: test.homeCollectionAvailable,
requiresEquipment: test.requiresEquipment,
homeCollectionFee: test.homeCollectionFee,
});
if (!test.homeCollectionAvailable) {
allSupport = false;
}
if (test.requiresEquipment) {
anyRequiresEquipment = true;
}
totalHomeCollectionFee += test.homeCollectionFee;
}
}
// If no test-specific fees, use general lab fee
if (totalHomeCollectionFee === 0 && allSupport) {
totalHomeCollectionFee = lab.generalHomeCollectionFee;
}
res.json({
homeCollectionAvailable: allSupport && !anyRequiresEquipment,
allTestsSupportHomeCollection: allSupport,
anyTestRequiresEquipment,
homeCollectionFee: totalHomeCollectionFee,
testDetails,
message: !allSupport
? 'Some tests do not support home collection'
: anyRequiresEquipment
? 'Some tests require special equipment and must be done at the lab'
: 'All tests support home collection',
});
} catch (error) {
console.error('Error checking home collection availability:', error);
res.status(500).json({ message: 'Failed to check availability' });
}
};
// Get patient lab appointments
export const getPatientLabAppointments = async (req, res) => {
try {
const { profileId } = req.user;
const { status } = req.query;
const query = { patientId: profileId };
if (status) {
query.status = status;
}
const appointments = await LabAppointment.find(query)
.populate('labId', 'name address contact')
.populate('assignedStaffId', 'firstName lastName phoneNumber')
.populate('suggestedByDoctorId', 'firstName lastName specialization')
.populate('reportId')
.sort({ appointmentDate: -1 })
.lean();
res.json({
count: appointments.length,
appointments,
});
} catch (error) {
console.error('Error fetching patient lab appointments:', error);
res.status(500).json({ message: 'Failed to fetch appointments' });
}
};
// Get all lab appointments (for lab admin/staff)
export const getLabAppointments = async (req, res) => {
try {
const { profileId, role } = req.user;
const { status, date, collectionType } = req.query;
let labId;
if (role === 'lab_admin') {
const LabAdmin = (await import('../models/Users/LabAdmin.js')).default;
const labAdmin = await LabAdmin.findById(profileId);
if (!labAdmin || !labAdmin.labId) {
return res.status(400).json({ message: 'Lab admin not associated with any lab' });
}
labId = labAdmin.labId;
} else if (role === 'lab_staff') {
const LabStaff = (await import('../models/Users/LabStaff.js')).default;
const staff = await LabStaff.findById(profileId);
if (!staff) {
return res.status(404).json({ message: 'Staff not found' });
}
labId = staff.labId;
}
const query = { labId };
if (status) {
query.status = status;
}
if (collectionType) {
query.collectionType = collectionType;
}
if (date) {
const dateObj = new Date(date);
query.appointmentDate = {
$gte: new Date(dateObj.setHours(0, 0, 0, 0)),
$lte: new Date(dateObj.setHours(23, 59, 59, 999)),
};
}
const appointments = await LabAppointment.find(query)
.populate('patientId', 'firstName lastName phoneNumber address')
.populate('assignedStaffId', 'firstName lastName phoneNumber')
.populate('suggestedByDoctorId', 'firstName lastName')
.sort({ appointmentDate: 1 })
.lean();
// Separate home collection and visit lab appointments
const homeCollectionAppointments = appointments.filter(
(a) => a.collectionType === 'home_collection'
);
const visitLabAppointments = appointments.filter((a) => a.collectionType === 'visit_lab');
res.json({
count: appointments.length,
appointments,
summary: {
homeCollection: homeCollectionAppointments.length,
visitLab: visitLabAppointments.length,
},
});
} catch (error) {
console.error('Error fetching lab appointments:', error);
res.status(500).json({ message: 'Failed to fetch appointments' });
}
};
// Assign staff for home collection
export const assignStaffForCollection = async (req, res) => {
try {
const { appointmentId } = req.params;
const { staffId } = req.body;
if (!mongoose.Types.ObjectId.isValid(staffId)) {
return res.status(400).json({ message: 'Invalid staff ID' });
}
const appointment = await LabAppointment.findById(appointmentId);
if (!appointment) {
return res.status(404).json({ message: 'Appointment not found' });
}
if (appointment.collectionType !== 'home_collection') {
return res.status(400).json({
message: 'This appointment is not for home collection',
collectionType: appointment.collectionType,
});
}
const LabStaff = (await import('../models/Users/LabStaff.js')).default;
const staff = await LabStaff.findById(staffId);
if (!staff) {
return res.status(404).json({ message: 'Staff not found' });
}
if (!staff.isAvailableForHomeCollection) {
return res.status(400).json({
message: 'Staff member is not available for home collection',
});
}
appointment.assignedStaffId = staffId;
appointment.status = 'confirmed';
await appointment.save();
// Add to staff current assignments
await LabStaff.findByIdAndUpdate(staffId, { $push: { currentAssignments: appointmentId } });
res.json({
message: 'Staff assigned successfully',
appointment: await appointment.populate('assignedStaffId', 'firstName lastName phoneNumber'),
});
} catch (error) {
console.error('Error assigning staff:', error);
res.status(500).json({ message: 'Failed to assign staff' });
}
};
// Update appointment status
export const updateLabAppointmentStatus = async (req, res) => {
try {
const { appointmentId } = req.params;
const { status } = req.body;
const validStatuses = [
'pending',
'confirmed',
'sample_collected',
'processing',
'completed',
'cancelled',
];
if (!validStatuses.includes(status)) {
return res.status(400).json({ message: 'Invalid status' });
}
const appointment = await LabAppointment.findByIdAndUpdate(
appointmentId,
{ status },
{ new: true, runValidators: true }
)
.populate('patientId', 'firstName lastName')
.populate('labId', 'name')
.lean();
if (!appointment) {
return res.status(404).json({ message: 'Appointment not found' });
}
res.json({
message: 'Appointment status updated successfully',
appointment,
});
} catch (error) {
console.error('Error updating appointment status:', error);
res.status(500).json({ message: 'Failed to update status' });
}
};