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.IpsrsPreventiveMaintenanceService; import com.jasamedika.medifirst2000.util.rest.RestUtil; import com.jasamedika.medifirst2000.vo.IpsrsPemeliharaanVO; import com.jasamedika.medifirst2000.vo.IpsrsPreventiveMaintenanceVO; @RestController @RequestMapping("/ipsrs-preventive-maintenance") public class IpsrsPreventiveMaintenanceController extends LocaleController{ @Autowired private IpsrsPreventiveMaintenanceService service; private static final Logger LOGGER = LoggerFactory.getLogger(IpsrsPreventiveMaintenanceController.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-aset-preventive-maintenance", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> getAsetPreventiveMaintenance(HttpServletRequest request) { try { Map result = service.getAsetPreventiveMaintenance(); 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 getAllRegistrasi", 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 getAllRegistrasi", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/get-bagian-alat", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> getBagianAlat(@RequestParam(value = "id", required = true) Integer id, HttpServletRequest request) { try { Map result = service.getBagianAlat(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 getBagianAlat", 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 getBagianAlat", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/save-preventive-maintenance", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> saveMaintenance(@Valid @RequestBody IpsrsPreventiveMaintenanceVO vo, HttpServletRequest request) { try { Map result = service.savePreventiveMaintenance(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 saveMaintenance", 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 saveMaintenance", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } @RequestMapping(value = "/get-user-verifikasi", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity> getUserVerifikasi(HttpServletRequest request) { try { Map result = service.getUserVerifikasi(); 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 getUserVerifikasi", 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 getUserVerifikasi", jse.getMessage()); addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage()); return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage); } } }