-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoctor.controller.js
More file actions
80 lines (69 loc) · 1.83 KB
/
doctor.controller.js
File metadata and controls
80 lines (69 loc) · 1.83 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
import doctorService from '../services/doctor.service.js';
const createDoctor = async (req, res, next) => {
try {
const doctor = await doctorService.createDoctor(req.body);
res.status(201).json(doctor);
} catch (err) {
res.status(400).json({ message: err.message });
}
};
const changePassword = async (req, res) => {
try {
const { oldPassword, newPassword } = req.body;
const result = await doctorService.changePassword(
req.user.id,
oldPassword,
newPassword);
res.status(200).json(result);
} catch (err) {
res.status(400).json({ message: err.message });
}
};
const getDoctors = async (req, res) => {
try {
const doctors = await doctorService.getDoctors();
res.json(doctors);
} catch (err) {
res.status(500).json({ message: err.message });
}
};
const updateDoctor = async (req, res) => {
try {
const { id } = req.params;
const doctor = await doctorService.updateDoctor(id, req.body);
res.json(doctor);
} catch (err) {
res.status(400).json({ message: err.message });
}
};
const deleteDoctor = async (req, res) => {
try {
const { id } = req.params;
const result = await doctorService.deleteDoctor(id);
res.json(result);
} catch (err) {
res.status(500).json({ message: err.message });
}
};
const updateMyWorkingHours = async (req, res) => {
try {
if (req.user.role !== 'doctor') {
return res.status(403).json({ message: "Access denied" });
}
const result = await doctorService.updateWorkingHours(
req.user.id,
req.body.workingHours
);
res.status(200).json(result);
} catch (error) {
res.status(400).json({ message: error.message });
}
}
export {
createDoctor,
changePassword,
getDoctors,
updateDoctor,
deleteDoctor,
updateMyWorkingHours
};