-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathMaternalHealthController.java
More file actions
449 lines (405 loc) · 20.9 KB
/
MaternalHealthController.java
File metadata and controls
449 lines (405 loc) · 20.9 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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
package com.iemr.flw.controller;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.iemr.flw.dto.identity.GetBenRequestHandler;
import com.iemr.flw.dto.iemr.*;
import com.iemr.flw.service.ChildService;
import com.iemr.flw.service.DeliveryOutcomeService;
import com.iemr.flw.service.InfantService;
import com.iemr.flw.service.MaternalHealthService;
import com.iemr.flw.utils.JwtUtil;
import com.iemr.flw.utils.exception.IEMRException;
import com.iemr.flw.utils.response.OutputResponse;
import io.swagger.v3.oas.annotations.Operation;
import jakarta.servlet.http.HttpServletRequest;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.sql.Timestamp;
import java.util.List;
@RestController
@RequestMapping(value = "/maternalCare", consumes = "application/json", produces = "application/json")
public class MaternalHealthController {
private final Logger logger = LoggerFactory.getLogger(CoupleController.class);
@Autowired
private MaternalHealthService maternalHealthService;
@Autowired
private DeliveryOutcomeService deliveryOutcomeService;
@Autowired
private InfantService infantService;
@Autowired
private ChildService childService;
@Autowired
private JwtUtil jwtUtil;
@Operation(summary = "save pregnant woman registration details")
@RequestMapping(value = { "/pregnantWoman/saveAll" }, method = { RequestMethod.POST })
public String savePregnantWomanRegistrations(@RequestBody List<PregnantWomanDTO> pregnantWomanDTOs,
@RequestHeader(value = "Authorization") String Authorization) {
OutputResponse response = new OutputResponse();
try {
if (pregnantWomanDTOs.size() != 0) {
logger.info(
"Saving pregnant woman details with timestamp : " + new Timestamp(System.currentTimeMillis()));
String s = maternalHealthService.registerPregnantWoman(pregnantWomanDTOs);
if (s != null)
response.setResponse(s);
else
response.setError(5000, "Saving pwr data to db failed");
} else
response.setError(5000, "Invalid/NULL request obj");
} catch (Exception e) {
logger.error("Error in save pregnant woman register details : " + e);
response.setError(5000, "Error in save pregnant woman register details : " + e);
}
return response.toString();
}
@Operation(summary = "get List of pregnant woman registration details")
@RequestMapping(value = { "/pregnantWoman/getAll" }, method = { RequestMethod.POST })
public String getPregnantWomanList(@RequestBody GetBenRequestHandler requestDTO,
@RequestHeader(value = "Authorization") String Authorization) {
OutputResponse response = new OutputResponse();
try {
if (requestDTO != null) {
logger.info("request object with timestamp : " + new Timestamp(System.currentTimeMillis()) + " "
+ requestDTO);
List<PregnantWomanDTO> result = maternalHealthService.getPregnantWoman(requestDTO);
Gson gson = new GsonBuilder().setDateFormat("MMM dd, yyyy h:mm:ss a").create();
String s = gson.toJson(result);
if (s != null)
response.setResponse(s);
else
response.setError(5000, "No record found");
} else
response.setError(5000, "Invalid/NULL request obj");
} catch (Exception e) {
logger.error("Error in pregnant woman get data : " + e);
response.setError(5000, "Error in pregnant woman get data : " + e);
}
return response.toString();
}
@Operation(summary = "save anc visit details")
@RequestMapping(value = { "/ancVisit/saveAll" }, method = { RequestMethod.POST })
public String saveANCVisit(@RequestBody List<ANCVisitDTO> ancVisitDTOs,
@RequestHeader(value = "jwtToken") String token) {
OutputResponse response = new OutputResponse();
try {
if (ancVisitDTOs.size() != 0) {
logger.info("Saving ANC visits with timestamp : " + new Timestamp(System.currentTimeMillis()));
if(token!=null){
String s = maternalHealthService.saveANCVisit(ancVisitDTOs,jwtUtil.extractUserId(token));
if (s != null)
response.setResponse(s);
else
response.setError(5000, "Saving anc data to db failed");
}
} else
response.setError(5000, "Invalid/NULL request obj");
} catch (Exception e) {
logger.error("Error in save ANC visit details : ",e);
response.setError(5000, "Error in save ANC visit details : " + e);
}
return response.toString();
}
@Operation(summary = "get anc visit details")
@RequestMapping(value = { "/ancVisit/getAll" }, method = { RequestMethod.POST })
public String getANCVisitDetails(@RequestBody GetBenRequestHandler requestDTO,
@RequestHeader(value = "Authorization") String Authorization) {
OutputResponse response = new OutputResponse();
try {
if (requestDTO != null) {
logger.info("request object with timestamp : " + new Timestamp(System.currentTimeMillis()) + " "
+ requestDTO);
List<ANCVisitDTO> result = maternalHealthService.getANCVisits(requestDTO);
Gson gson = new GsonBuilder().setDateFormat("MMM dd, yyyy h:mm:ss a").create();
String s = gson.toJson(result);
if (s != null)
response.setResponse(s);
else
response.setError(5000, "No record found");
} else
response.setError(5000, "Invalid/NULL request obj");
} catch (Exception e) {
logger.error("Error in Anc visit get data : " + e);
response.setError(5000, "Error in Anc visit get data : " + e);
}
return response.toString();
}
@Operation(summary = "save anc visit question")
@RequestMapping(value = { "/ancVisit/counselling/saveAll" }, method = { RequestMethod.POST })
public String saveANCVisitQuestion(@RequestBody List<AncCounsellingCareDTO> ancVisitQuestionsDTOS,
@RequestHeader(value = "JwtToken") String Authorization) {
OutputResponse response = new OutputResponse();
try {
if (ancVisitQuestionsDTOS.size() != 0) {
logger.info("Saving ANC visits with timestamp : " + new Timestamp(System.currentTimeMillis()));
String s = maternalHealthService.saveANCVisitQuestions(ancVisitQuestionsDTOS,Authorization);
if (s != null)
response.setResponse(s);
else
response.setError(500, "Saving anc data to db failed");
} else
response.setError(500, "Invalid/NULL request obj");
} catch (Exception e) {
logger.error("Error in save ANC visit details : ",e);
response.setError(500, "Error in save ANC visit details : " + e);
}
return response.toString();
}
@Operation(summary = "get anc visit questions")
@RequestMapping(value = { "/ancVisit/counselling/getAll" }, method = { RequestMethod.POST })
public ResponseEntity<StandardResponse<List<AncCounsellingCareResponseDTO>>> getANCVisitQuestion(@RequestBody GetBenRequestHandler requestDTO,
@RequestHeader(value = "JwtToken") String Authorization) {
StandardResponse<List<AncCounsellingCareResponseDTO>> response = new StandardResponse<>();
try {
if (requestDTO != null) {
logger.info("Request: " + requestDTO);
List<AncCounsellingCareResponseDTO> result = maternalHealthService.getANCCounselling(requestDTO);
response.setStatusCode(200);
response.setStatus("Success");
response.setErrorMessage("Success");
response.setData(result);
return ResponseEntity.ok(response);
} else {
response.setStatusCode(400);
response.setStatus("Failed");
response.setErrorMessage("Invalid request object");
response.setData(null);
return ResponseEntity.badRequest().body(response);
}
} catch (Exception e) {
logger.error("Exception in fetching HBNC visits", e);
response.setStatusCode(500);
response.setStatus("Failed");
response.setErrorMessage("Internal Server Error: " + e.getMessage());
response.setData(null);
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body(response);
}
}
@Operation(summary = "save Delivery Outcome details")
@RequestMapping(value = { "/deliveryOutcome/saveAll" }, method = { RequestMethod.POST })
public String saveDeliveryOutcome(@RequestBody List<DeliveryOutcomeDTO> deliveryOutcomeDTOS,
@RequestHeader(value = "Authorization") String Authorization, HttpServletRequest request) throws IEMRException {
OutputResponse response = new OutputResponse();
try {
if (deliveryOutcomeDTOS.size() != 0) {
logger.info("Saving delivery outcomes with timestamp : " + new Timestamp(System.currentTimeMillis()));
String s = deliveryOutcomeService.registerDeliveryOutcome(deliveryOutcomeDTOS);
if (s != null)
response.setResponse(s);
else
response.setError(5000, "Saving delivery outcome to db failed");
} else
response.setError(5000, "Invalid/NULL request obj");
} catch (Exception e) {
logger.error("Error in save delivery outcome details : " + e);
response.setError(5000, "Error in save delivery outcome details : " + e);
}
return response.toString();
}
@Operation(summary = "get Delivery Outcome details")
@RequestMapping(value = { "/deliveryOutcome/getAll" }, method = { RequestMethod.POST })
public String getDeliveryOutcome(@RequestBody GetBenRequestHandler requestDTO,
@RequestHeader(value = "Authorization") String Authorization) {
OutputResponse response = new OutputResponse();
try {
if (requestDTO != null) {
logger.info("request object with timestamp : " + new Timestamp(System.currentTimeMillis()) + " "
+ requestDTO);
List<DeliveryOutcomeDTO> result = deliveryOutcomeService.getDeliveryOutcome(requestDTO);
Gson gson = new GsonBuilder().setDateFormat("MMM dd, yyyy h:mm:ss a").create();
String s = gson.toJson(result);
if (result != null && !result.isEmpty()) {
response.setResponse(gson.toJson(result));
}else
response.setError(5000, "No record found");
} else
response.setError(5000, "Invalid/NULL request obj");
} catch (Exception e) {
logger.error("Error in delivery outcomes get data : " + e);
response.setError(5000, "Error in delivery outcomes get data : " + e);
}
return response.toString();
}
@Operation(summary = "save Infant registration details")
@RequestMapping(value = { "/infant/saveAll" }, method = { RequestMethod.POST })
public String saveInfantList(@RequestBody List<InfantRegisterDTO> infantRegisterDTOs,
@RequestHeader(value = "Authorization") String Authorization) {
OutputResponse response = new OutputResponse();
try {
if (infantRegisterDTOs.size() != 0) {
logger.info("Saving infant Register with timestamp : " + new Timestamp(System.currentTimeMillis()));
String s = infantService.registerInfant(infantRegisterDTOs);
if (s != null)
response.setResponse(s);
else
response.setError(5000, "Saving infant register data to db failed");
} else
response.setError(5000, "Invalid/NULL request obj");
} catch (Exception e) {
logger.error("Error in save infant register details : " + e);
response.setError(5000, "Error in save infant register details : " + e);
}
return response.toString();
}
@Operation(summary = "get infant registration details")
@RequestMapping(value = { "/infant/getAll" }, method = { RequestMethod.POST })
public String getInfantList(@RequestBody GetBenRequestHandler requestDTO,
@RequestHeader(value = "Authorization") String Authorization) {
OutputResponse response = new OutputResponse();
try {
if (requestDTO != null) {
logger.info("request object with timestamp : " + new Timestamp(System.currentTimeMillis()) + " "
+ requestDTO);
List<InfantRegisterDTO> result = infantService.getInfantDetails(requestDTO);
Gson gson = new GsonBuilder().setDateFormat("MMM dd, yyyy h:mm:ss a").create();
String s = gson.toJson(result);
if (s != null)
response.setResponse(s);
else
response.setError(5000, "No record found");
} else
response.setError(5000, "Invalid/NULL request obj");
} catch (Exception e) {
logger.error("Error in infant register get data : " + e);
response.setError(5000, "Error in infant register get data : " + e);
}
return response.toString();
}
@Operation(summary = "get child register data of all beneficiaries registered with given user id")
@RequestMapping(value = { "/child/getAll" }, method = { RequestMethod.POST })
public String getAllChildRegisterDetails(@RequestBody GetBenRequestHandler requestDTO,
@RequestHeader(value = "Authorization") String Authorization) {
OutputResponse response = new OutputResponse();
try {
if (requestDTO != null) {
logger.info("request object with timestamp : " + new Timestamp(System.currentTimeMillis()) + " "
+ requestDTO);
String s = childService.getByUserId(requestDTO);
if (s != null)
response.setResponse(s);
else
response.setError(5000, "No record found");
} else
response.setError(5000, "Invalid/NULL request obj");
} catch (Exception e) {
logger.error("Error in child register get data : " + e);
response.setError(5000, "Error in child register get data : " + e);
}
return response.toString();
}
@Operation(summary = "save child register data of all beneficiaries registered with given user id")
@RequestMapping(value = { "/child/saveAll" }, method = { RequestMethod.POST })
public String saveAllChildDetails(@RequestBody List<ChildRegisterDTO> childRegisterDTOs,
@RequestHeader(value = "Authorization") String Authorization) {
OutputResponse response = new OutputResponse();
try {
if (childRegisterDTOs.size() != 0) {
logger.info("Saving Child Register with timestamp : " + new Timestamp(System.currentTimeMillis()));
String s = childService.save(childRegisterDTOs);
if (s != null)
response.setResponse(s);
else
response.setError(5000, "Saving child register data to db failed");
} else
response.setError(5000, "Invalid/NULL request obj");
} catch (Exception e) {
logger.error("Error in save child register details : " + e);
response.setError(5000, "Error in save child register details : " + e);
}
return response.toString();
}
@Operation(summary = "get PMSMA data of all beneficiaries registered with given user id")
@RequestMapping(value = { "/pmsma/getAll" }, method = { RequestMethod.POST })
public String getAllPmsmaDetails(@RequestBody GetBenRequestHandler requestDTO,
@RequestHeader(value = "Authorization") String Authorization) {
OutputResponse response = new OutputResponse();
try {
if (requestDTO != null) {
logger.info(
"fetch pmsma request object with timestamp : " + new Timestamp(System.currentTimeMillis()) + " "
+ requestDTO);
List<PmsmaDTO> result = maternalHealthService.getPmsmaRecords(requestDTO);
Gson gson = new GsonBuilder().setDateFormat("MMM dd, yyyy h:mm:ss a").create();
String s = gson.toJson(result);
if (s != null)
response.setResponse(s);
else
response.setError(5000, "No record found");
} else
response.setError(5000, "Invalid/NULL request obj");
} catch (Exception e) {
logger.error("Error in pmsma get data : " + e);
response.setError(5000, "Error in pmsma get data : " + e);
}
return response.toString();
}
@Operation(summary = "save PMSMA data of all beneficiaries registered with given user id")
@RequestMapping(value = { "/pmsma/saveAll" }, method = { RequestMethod.POST })
public String saveAllPmsmaRecords(@RequestBody List<PmsmaDTO> pmsmaDTOs,
@RequestHeader(value = "Authorization") String Authorization) {
OutputResponse response = new OutputResponse();
try {
if (pmsmaDTOs.size() != 0) {
logger.info("Saving PMSMA Records with timestamp : " + new Timestamp(System.currentTimeMillis()));
String s = maternalHealthService.savePmsmaRecords(pmsmaDTOs);
if (s != null)
response.setResponse(s);
else
response.setError(5000, "Saving pmsma to db failed");
} else
response.setError(5000, "Invalid/NULL request obj");
} catch (Exception e) {
logger.error("Error in save pmsma details : " + e);
response.setError(5000, "Error in save pmsma details : " + e);
}
return response.toString();
}
@Operation(summary = "save pnc visit details")
@RequestMapping(value = { "/pnc/saveAll" }, method = { RequestMethod.POST })
public String savePNCVisit(@RequestBody List<PNCVisitDTO> pncVisitDTOs,
@RequestHeader(value = "Authorization") String Authorization) {
OutputResponse response = new OutputResponse();
try {
if (pncVisitDTOs.size() != 0) {
logger.info("Saving PNC visits with timestamp : " + new Timestamp(System.currentTimeMillis()));
String s = maternalHealthService.savePNCVisit(pncVisitDTOs);
if (s != null)
response.setResponse(s);
else
response.setError(5000, "Saving pnc to db failed");
} else
response.setError(5000, "Invalid/NULL request obj");
} catch (Exception e) {
logger.error("Error in save PNC visit details : " + e);
response.setError(5000, "Error in save PNC visit details : " + e);
}
return response.toString();
}
@Operation(summary = "get pnc visit details")
@RequestMapping(value = { "/pnc/getAll" }, method = { RequestMethod.POST })
public String getPNCVisitDetails(@RequestBody GetBenRequestHandler requestDTO,
@RequestHeader(value = "Authorization") String Authorization) {
OutputResponse response = new OutputResponse();
try {
if (requestDTO != null) {
logger.info("request object with timestamp : " + new Timestamp(System.currentTimeMillis()) + " "
+ requestDTO);
List<PNCVisitDTO> result = maternalHealthService.getPNCVisits(requestDTO);
Gson gson = new GsonBuilder().setDateFormat("MMM dd, yyyy h:mm:ss a").create();
String s = gson.toJson(result);
if (s != null)
response.setResponse(s);
else
response.setError(5000, "No record found");
} else
response.setError(5000, "Invalid/NULL request obj");
} catch (Exception e) {
logger.error("Error in Pnc visit get data : " + e);
response.setError(5000, "Error in Pnc visit get data : " + e);
}
return response.toString();
}
}