194 lines
8.7 KiB
Java
194 lines
8.7 KiB
Java
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.BakuMutuService;
|
|
import com.jasamedika.medifirst2000.util.rest.RestUtil;
|
|
import com.jasamedika.medifirst2000.vo.BakuMutuVO;
|
|
|
|
@RestController
|
|
@RequestMapping("/baku-mutu")
|
|
public class BakuMutuController extends LocaleController<BakuMutuVO> {
|
|
|
|
@Autowired
|
|
private BakuMutuService bakuMutuService;
|
|
|
|
private static final Logger LOGGER = LoggerFactory
|
|
.getLogger(BakuMutuController.class);
|
|
|
|
@RequestMapping(value = "/save-baku-mutu/", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE)
|
|
public ResponseEntity<Map<String,Object>> addVO(@Valid @RequestBody BakuMutuVO vo,HttpServletRequest request) {
|
|
|
|
try{
|
|
Map<String, Object> result = bakuMutuService.addBakuMutu(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 add Baku Mutu", 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 Baku Mutu", jse.getMessage());
|
|
addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE,
|
|
jse.getMessage());
|
|
return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT,
|
|
mapHeaderMessage);
|
|
}
|
|
}
|
|
|
|
@RequestMapping(value = "/update-baku-mutu/", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE)
|
|
public ResponseEntity<Map<String,Object>> updateVO(@Valid @RequestBody BakuMutuVO vo,HttpServletRequest request) {
|
|
|
|
try{
|
|
Map<String, Object> result = bakuMutuService.addBakuMutu(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 update Baku Mutu", 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 update Baku Mutu", jse.getMessage());
|
|
addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE,
|
|
jse.getMessage());
|
|
return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT,
|
|
mapHeaderMessage);
|
|
}
|
|
}
|
|
|
|
@RequestMapping(value = "/find-all-baku-mutu/", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
|
|
public ResponseEntity<Map<String,Object>> getAllVO(HttpServletRequest request) {
|
|
|
|
try {
|
|
Map<String,Object> result=bakuMutuService.findAllBakuMutu();
|
|
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 get all baku mutu", 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 get all baku mutu", jse.getMessage());
|
|
addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE,
|
|
jse.getMessage());
|
|
return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT,
|
|
mapHeaderMessage);
|
|
}
|
|
}
|
|
|
|
@RequestMapping(value = "/delete-baku-mutu", method = RequestMethod.GET)
|
|
public ResponseEntity<String> deleteBakuMutu(@RequestParam(value = "id", required = true) Integer id) {
|
|
|
|
try {
|
|
if (bakuMutuService.deleteBakuMutu(id) == true)
|
|
return RestUtil.getJsonResponse(id +" Dihapus", HttpStatus.CREATED);
|
|
|
|
} catch (ServiceVOException e) {
|
|
LOGGER.error("Got exception {} when delete BakuMutu", 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 delete BakuMutu", jse.getMessage());
|
|
addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE,
|
|
jse.getMessage());
|
|
return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT,
|
|
mapHeaderMessage);
|
|
}
|
|
|
|
return RestUtil.getJsonHttptatus(HttpStatus.NOT_ACCEPTABLE);
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/get-baku-mutu-parent", method = RequestMethod.GET)
|
|
public ResponseEntity<Map<String,Object>> getBakuMutuParent(HttpServletRequest request) {
|
|
try {
|
|
Map<String,Object> bakuMutu = bakuMutuService.getBakuMutuParent();
|
|
mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,
|
|
getMessage(MessageResource.LABEL_SUCCESS, request));
|
|
return RestUtil.getJsonResponse(bakuMutu, HttpStatus.OK, mapHeaderMessage);
|
|
} catch (ServiceVOException e) {
|
|
LOGGER.error("Got exception {} when get Baku Mutu", 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 get Baku Mutu", jse.getMessage());
|
|
addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage());
|
|
return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage);
|
|
}
|
|
|
|
}
|
|
|
|
@RequestMapping(value = "/get-baku-mutu-child", method = RequestMethod.GET)
|
|
public ResponseEntity<Map<String,Object>> getBakuMutuChild(HttpServletRequest request) {
|
|
try {
|
|
Map<String,Object> bakuMutu = bakuMutuService.getBakuMutuChild();
|
|
mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,
|
|
getMessage(MessageResource.LABEL_SUCCESS, request));
|
|
return RestUtil.getJsonResponse(bakuMutu, HttpStatus.OK, mapHeaderMessage);
|
|
} catch (ServiceVOException e) {
|
|
LOGGER.error("Got exception {} when get Baku Mutu", 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 get Baku Mutu", jse.getMessage());
|
|
addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage());
|
|
return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage);
|
|
}
|
|
|
|
}
|
|
|
|
@RequestMapping(value = "/get-baku-mutu-by-id", method = RequestMethod.GET)
|
|
public ResponseEntity<Map<String,Object>> bakuMutuById(HttpServletRequest request,@RequestParam(value = "id", required = true) Integer id) {
|
|
try {
|
|
Map<String,Object> bakuMutu = bakuMutuService.bakuMutuById(id);
|
|
mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,getMessage(MessageResource.LABEL_SUCCESS, request));
|
|
return RestUtil.getJsonResponse(bakuMutu, HttpStatus.OK, mapHeaderMessage);
|
|
} catch (ServiceVOException e) {
|
|
LOGGER.error("Got exception {} when get Baku Mutu", 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 get Baku Mutu", jse.getMessage());
|
|
addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage());
|
|
return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
}
|