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.IpsrsPeminjamanAlatService; import com.jasamedika.medifirst2000.util.rest.RestUtil; import com.jasamedika.medifirst2000.vo.IpsrsPeminjamanAlatVO; @RestController @RequestMapping("/ipsrs-peminjaman-alat") public class IpsrsPeminjamanAlatController extends LocaleController{ @Autowired private IpsrsPeminjamanAlatService service; private static final Logger LOGGER = LoggerFactory.getLogger(IpsrsPeminjamanAlatController.class); @RequestMapping(value = "/get-login-user/", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> getLoginUser(HttpServletRequest request) { try { Map result = service.getUserLogin(); 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 getPetugasPeminjamanAlat", 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 getPetugasPeminjamanAlat", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/get-no-peminjaman-alat", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> getNoOrder(HttpServletRequest request) { try { Map result = service.getNoPeminjamanAlatTable(); 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 getJadwalPemeliharaan", 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 getJadwalPemeliharaan", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/get-ruangan-peminjaman-alat", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> getRuanganPeminjamanAlat(HttpServletRequest request) { try { Map result = service.getRuanganPeminjamanAlat(); 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 getRuanganPeminjamanAlat", 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 getRuanganPeminjamanAlat", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/get-aset-peminjaman-alat", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> getAsetPeminjamanAlat(@RequestParam(value = "id", required = true) Integer id, HttpServletRequest request) { try { Map result = service.getAsetPeminjamanAlat(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 getAsetPeminjamanAlat", 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 getAsetPeminjamanAlat", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/get-petugas-peminjaman-alat", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> getPetugasPeminjamanAlat(HttpServletRequest request) { try { Map result = service.getPetugasPeminjamanAlat(); 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 getPetugasPeminjamanAlat", 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 getPetugasPeminjamanAlat", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/save-peminjaman-alat", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> savePemeliharaan(@Valid @RequestBody IpsrsPeminjamanAlatVO vo, HttpServletRequest request) { try { Map result = service.savePeminjamanAlat(vo); if (null != result) mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,getMessage(MessageResource.LABEL_SUCCESS,request)); return RestUtil.getJsonResponse(result, HttpStatus.CREATED,mapHeaderMessage); } catch (ServiceVOException e) { LOGGER.error("Got exception {} when savePemeliharaan", 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 savePemeliharaan", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/get-all-peminjaman-alat", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> getAllPeminjamanAlat(@RequestParam(value = "status", required = true) String status, HttpServletRequest request) { try { Map result = service.getAllPeminjamanAlat(status); 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 getAllPeminjamanAlat", 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 getAllPeminjamanAlat", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/delete-pemakaian-ruangan", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity deletePeminjamanAlat( @RequestParam(value = "noRec", required = true) String noRec, HttpServletRequest request) { try { Boolean status = service.deletePeminjamanAlat(noRec); if (status){ mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,getMessage(MessageResource.LABEL_SUCCESS,request)); return RestUtil.getJsonResponse("noRec : "+noRec, HttpStatus.OK); } else{ return RestUtil.getJsonResponse("noRec : null", HttpStatus.BAD_REQUEST); } } catch (ServiceVOException e) { LOGGER.error("Got exception {} when deletePeminjamanAlat", 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 deletePeminjamanAlat", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/find-by-periode", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> findPeminjamanAlatByPeriode( @RequestParam(value = "periodeAwal", required = true) String periodeAwal, @RequestParam(value = "periodeAkhir", required = true) String periodeAkhir, @RequestParam(value = "id", required = true) Integer id, @RequestParam(value = "status", required = true) String status, HttpServletRequest request) { try { Map result = service.findPeminjamanAlatByPeriode(periodeAwal, periodeAkhir, id, status); 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 findPeminjamanAlatByPeriode", 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 findPeminjamanAlatByPeriode", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/update-status-peminjaman", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> updateStatusPeminjaman(@Valid @RequestBody IpsrsPeminjamanAlatVO vo, HttpServletRequest request) { try { Map result = service.updateStatusPeminjaman(vo); if (null != result) mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,getMessage(MessageResource.LABEL_SUCCESS,request)); return RestUtil.getJsonResponse(result, HttpStatus.CREATED,mapHeaderMessage); } catch (ServiceVOException e) { LOGGER.error("Got exception {} when updateStatusPeminjaman", 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 updateStatusPeminjaman", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } }