-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathSchedulingController.java
More file actions
179 lines (151 loc) · 6.97 KB
/
SchedulingController.java
File metadata and controls
179 lines (151 loc) · 6.97 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
/*
* AMRIT – Accessible Medical Records via Integrated Technology
* Integrated EHR (Electronic Health Records) Solution
*
* Copyright (C) "Piramal Swasthya Management and Research Institute"
*
* This file is part of AMRIT.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see https://www.gnu.org/licenses/.
*/
package com.iemr.tm.controller.schedule;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import com.iemr.tm.data.schedule.SpecialistAvailability;
import com.iemr.tm.data.schedule.SpecialistAvailabilityDetail;
import com.iemr.tm.data.schedule.SpecialistInput2;
import com.iemr.tm.data.specialist.Specialist;
import com.iemr.tm.service.schedule.SchedulingService;
import com.iemr.tm.utils.mapper.InputMapper;
import com.iemr.tm.utils.response.OutputResponse;
import io.swagger.v3.oas.annotations.Operation;
@RestController
@RequestMapping(value = "/schedule", headers = "Authorization")
public class SchedulingController {
private Logger logger = LoggerFactory.getLogger(this.getClass().getSimpleName());
@Autowired
private SchedulingService schedulingService;
@Operation(summary = "Mark availability of specialist")
@RequestMapping(value = "markavailability", method = RequestMethod.POST)
public String markavailability(@RequestBody String specialistInput1) {
OutputResponse response = new OutputResponse();
try {
SpecialistAvailabilityDetail specialistInput = InputMapper.gson().fromJson(specialistInput1,
SpecialistAvailabilityDetail.class);
SpecialistAvailabilityDetail specialistAvailabilityDetail = schedulingService
.markAvailability(specialistInput);
response.setResponse(specialistAvailabilityDetail.toString());
} catch (Exception e) {
logger.error("exception occured while marking availability of specialist", e);
response.setError(e);
}
return response.toString();
}
@Operation(summary = "Mark unavailability of specialist")
@RequestMapping(value = "unmarkavailability", method = RequestMethod.POST)
public String unmarkavailability(@RequestBody String specialistInput1) {
OutputResponse response = new OutputResponse();
try {
SpecialistAvailabilityDetail specialistInput = InputMapper.gson().fromJson(specialistInput1,
SpecialistAvailabilityDetail.class);
schedulingService.markUnavailability(specialistInput);
response.setResponse(specialistInput.toString());
} catch (Exception e) {
logger.error("exception occured while unmarking availability of specialist", e);
response.setError(e);
}
return response.toString();
}
@Operation(summary = "Get available slots of specialist for a particular day")
@RequestMapping(value = "getavailableSlot", method = RequestMethod.POST)
public String getavailableSlot(@RequestBody String specialistInput1) {
OutputResponse response = new OutputResponse();
try {
SpecialistInput2 specialistInput = InputMapper.gson().fromJson(specialistInput1, SpecialistInput2.class);
SpecialistAvailability slotdetails = schedulingService.fetchavailability(specialistInput);
response.setResponse(slotdetails.toString());
} catch (Exception e) {
logger.error("exception occured while fetching available slot", e);
response.setError(e);
}
return response.toString();
}
@Operation(summary = "Get available slots of specialist for a particular month")
@RequestMapping(value = { "/monthview/{year}", "/monthview/{year}/{month}",
"/monthview/{year}/{month}/{day}" }, method = RequestMethod.POST)
public String view(@RequestBody String specialistInput1, @PathVariable("year") Integer year,
@PathVariable(value = "month", required = false) Integer month,
@PathVariable(value = "day", required = false) Integer day) {
OutputResponse response = new OutputResponse();
try {
SpecialistInput2 specialistInput = InputMapper.gson().fromJson(specialistInput1, SpecialistInput2.class);
List<SpecialistAvailability> slotdetails = schedulingService.fetchmonthavailability(specialistInput, year,
month, day);
response.setResponse(slotdetails.toString());
} catch (Exception e) {
logger.error("exception occured while fetching available slot", e);
response.setError(e);
}
return response.toString();
}
@Operation(summary = "Book available slots of specialist of a particular day")
@RequestMapping(value = "bookSlot", method = RequestMethod.POST)
public String bookSlot(@RequestBody String specialistInput1) {
OutputResponse response = new OutputResponse();
try {
SpecialistInput2 specialistInput = InputMapper.gson().fromJson(specialistInput1, SpecialistInput2.class);
String slotdetails = schedulingService.bookSlot(specialistInput, 'B');
response.setResponse(slotdetails);
} catch (Exception e) {
logger.error("exception occured while fetching available slot", e);
response.setError(e);
}
return response.toString();
}
@Operation(summary = "Cancel booked slots of specialist of a particular day")
@RequestMapping(value = "cancelBookedSlot", method = RequestMethod.POST)
public String cancelBookedSlot(@RequestBody String specialistInput1) {
OutputResponse response = new OutputResponse();
try {
SpecialistInput2 specialistInput = InputMapper.gson().fromJson(specialistInput1, SpecialistInput2.class);
String slotdetails = schedulingService.bookSlot(specialistInput, 'C');
response.setResponse(slotdetails);
} catch (Exception e) {
logger.error("exception occured while fetching available slot", e);
response.setError(e);
}
return response.toString();
}
@Operation(summary = "Get day view of particular specialization")
@RequestMapping(value = "getdayview", method = RequestMethod.POST)
public String getdayview(@RequestBody String specialistInput1) {
OutputResponse response = new OutputResponse();
try {
SpecialistInput2 specialistInput = InputMapper.gson().fromJson(specialistInput1, SpecialistInput2.class);
List<Specialist> slotdetails = schedulingService.fetchAllAvailability(specialistInput);
response.setResponse(slotdetails.toString());
} catch (Exception e) {
logger.error("exception occured while fetching available slot", e);
response.setError(e);
}
return response.toString();
}
}