package com.jasamedika.medifirst2000.controller; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; import org.springframework.orm.jpa.JpaSystemException; 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.RequestParam; import org.springframework.web.bind.annotation.RestController; import com.jasamedika.medifirst2000.constants.Constants; import com.jasamedika.medifirst2000.constants.MessageResource; import com.jasamedika.medifirst2000.controller.base.LocaleController; import com.jasamedika.medifirst2000.core.web.WebConstants; import com.jasamedika.medifirst2000.exception.ServiceVOException; import com.jasamedika.medifirst2000.service.PasienMeninggalService; import com.jasamedika.medifirst2000.util.CommonUtil; import com.jasamedika.medifirst2000.util.rest.RestUtil; import com.jasamedika.medifirst2000.vo.PasienDaftarVO; import com.jasamedika.medifirst2000.vo.PasienMeninggalVO; /** * Controller class for Registrasi Pasien Business * * @author Askur */ @RestController @RequestMapping("/pasien-meninggal") public class PasienMeninggalController extends LocaleController{ @Autowired private PasienMeninggalService pasienMeninggalService; private static final Logger LOGGER = LoggerFactory.getLogger(PasienMeninggalController.class); @RequestMapping(value = "/save-pasien-pulang", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> savePasienMeninggal(@Valid @RequestBody PasienMeninggalVO vo,HttpServletRequest request) { try { Map result = pasienMeninggalService.updatePasienMeninggal(vo); if(CommonUtil.isNotNullOrEmpty(result)){ Boolean dataFound=new Boolean((boolean) result.get("dataFound")); if(dataFound){ mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,getMessage(MessageResource.LABEL_SUCCESS,request )); }else{ mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_ERROR,getMessage(MessageResource.LABEL_ERROR,request )); } } return RestUtil.getJsonResponse(result, HttpStatus.CREATED,mapHeaderMessage); } catch (ServiceVOException e) { LOGGER.error("Got exception {} when add Pasien meninggal", e.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, e.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.INTERNAL_SERVER_ERROR, mapHeaderMessage); } catch (JpaSystemException jse) { LOGGER.error("Got exception {} when add Pasien Meninggal", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } //----------------------------------------------------------------------------------------------------------------------- @RequestMapping(value = "/load-pasien-meninggal", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> loadPasienMeninggal(@RequestParam( value = "noRec", required = true) String noRec, HttpServletRequest request) { try { Map result = pasienMeninggalService.loadPasienMeninggal(noRec); if (null != result){ mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,getMessage(MessageResource.LABEL_SUCCESS,request)); return RestUtil.getJsonResponse(result, HttpStatus.OK,mapHeaderMessage); } else{ return RestUtil.getJsonResponse(result, HttpStatus.NOT_FOUND,mapHeaderMessage); } } catch (ServiceVOException e) { LOGGER.error("Got exception {} when loadPasienMeninggal", e.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, e.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.INTERNAL_SERVER_ERROR, mapHeaderMessage); } catch (JpaSystemException jse) { LOGGER.error("Got exception {} when loadPasienMeninggal", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/save-pasien-meninggal", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> savePasienMeninggal(@Valid @RequestBody Map map, HttpServletRequest request) { try { Map result = pasienMeninggalService.savePasienMeninggal(map); if (null != result){ mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,getMessage(MessageResource.LABEL_SUCCESS,request)); return RestUtil.getJsonResponse(result, HttpStatus.OK,mapHeaderMessage); } else{ return RestUtil.getJsonResponse(result, HttpStatus.NOT_FOUND,mapHeaderMessage); } } catch (ServiceVOException e) { LOGGER.error("Got exception {} when loadPasienMeninggal", e.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, e.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.INTERNAL_SERVER_ERROR, mapHeaderMessage); } catch (JpaSystemException jse) { LOGGER.error("Got exception {} when loadPasienMeninggal", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } //----------------------------------------------------------------------------------------------------------------------- @RequestMapping(value = "/load-rencana-pindah", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> loadRencanaPindah(@RequestParam( value = "noRec", required = true) String noRec, HttpServletRequest request) { try { Map result = pasienMeninggalService.loadRencanaPindah(noRec); if (null != result){ mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,getMessage(MessageResource.LABEL_SUCCESS,request)); return RestUtil.getJsonResponse(result, HttpStatus.OK,mapHeaderMessage); } else{ return RestUtil.getJsonResponse(result, HttpStatus.NOT_FOUND,mapHeaderMessage); } } catch (ServiceVOException e) { LOGGER.error("Got exception {} when loadRencanaPindah", e.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, e.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.INTERNAL_SERVER_ERROR, mapHeaderMessage); } catch (JpaSystemException jse) { LOGGER.error("Got exception {} when loadRencanaPindah", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/get-kelas-rencana", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> getkelasRencana(HttpServletRequest request) { try { Map result = pasienMeninggalService.getKelasRencana(); if (null != result){ mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,getMessage(MessageResource.LABEL_SUCCESS,request)); return RestUtil.getJsonResponse(result, HttpStatus.OK,mapHeaderMessage); } else{ return RestUtil.getJsonResponse(result, HttpStatus.NOT_FOUND,mapHeaderMessage); } } catch (ServiceVOException e) { LOGGER.error("Got exception {} when getkelas", e.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, e.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.INTERNAL_SERVER_ERROR, mapHeaderMessage); } catch (JpaSystemException jse) { LOGGER.error("Got exception {} when getkelas", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/get-ruangan-by-kelas", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> getRuanganByKelas( @RequestParam(value = "id", required = true) Integer id, HttpServletRequest request) { try { Map result = pasienMeninggalService.getRuanganByKelas(id); if (null != result){ mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,getMessage(MessageResource.LABEL_SUCCESS,request)); return RestUtil.getJsonResponse(result, HttpStatus.OK,mapHeaderMessage); } else{ return RestUtil.getJsonResponse(result, HttpStatus.NOT_FOUND,mapHeaderMessage); } } catch (ServiceVOException e) { LOGGER.error("Got exception {} when getRuanganByKelas", e.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, e.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.INTERNAL_SERVER_ERROR, mapHeaderMessage); } catch (JpaSystemException jse) { LOGGER.error("Got exception {} when getRuanganByKelas", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/get-kamar-by-ruangan", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> getKamarByRuangan( @RequestParam(value = "id", required = true) Integer id, HttpServletRequest request) { try { Map result = pasienMeninggalService.getKamarByRuangan(id); if (null != result){ mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,getMessage(MessageResource.LABEL_SUCCESS,request)); return RestUtil.getJsonResponse(result, HttpStatus.OK,mapHeaderMessage); } else{ return RestUtil.getJsonResponse(result, HttpStatus.NOT_FOUND,mapHeaderMessage); } } catch (ServiceVOException e) { LOGGER.error("Got exception {} when getKamarByRuangan", e.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, e.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.INTERNAL_SERVER_ERROR, mapHeaderMessage); } catch (JpaSystemException jse) { LOGGER.error("Got exception {} when getKamarByRuangan", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/get-bed-by-kamar", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> getBedByKamar( @RequestParam(value = "id", required = true) Integer id, HttpServletRequest request) { try { Map result = pasienMeninggalService.getKasurByKamar(id); if (null != result){ mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,getMessage(MessageResource.LABEL_SUCCESS,request)); return RestUtil.getJsonResponse(result, HttpStatus.OK,mapHeaderMessage); } else{ return RestUtil.getJsonResponse(result, HttpStatus.NOT_FOUND,mapHeaderMessage); } } catch (ServiceVOException e) { LOGGER.error("Got exception {} when getBedByKamar", e.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, e.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.INTERNAL_SERVER_ERROR, mapHeaderMessage); } catch (JpaSystemException jse) { LOGGER.error("Got exception {} when getBedByKamar", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } }