254 lines
11 KiB
Java
254 lines
11 KiB
Java
package com.jasamedika.medifirst2000.controller;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Collection;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
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.IBaseRestController;
|
|
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.JabatanService;
|
|
import com.jasamedika.medifirst2000.util.CommonUtil;
|
|
import com.jasamedika.medifirst2000.util.rest.RestUtil;
|
|
import com.jasamedika.medifirst2000.vo.JabatanVO;
|
|
|
|
@RestController
|
|
@RequestMapping("/jabatan")
|
|
public class JabatanController extends LocaleController<JabatanVO> implements IBaseRestController<JabatanVO> {
|
|
|
|
@Autowired
|
|
private JabatanService jabatanService;
|
|
|
|
private static final Logger LOGGER = LoggerFactory.getLogger(JabatanController.class);
|
|
|
|
@Override
|
|
public ResponseEntity<Collection<JabatanVO>> getAllVOWithQueryString(HttpServletRequest request, Integer page,
|
|
Integer limit, String sort, String dir) {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public ResponseEntity<JabatanVO> getVO(Integer id) {
|
|
return null;
|
|
}
|
|
|
|
@RequestMapping(value = "/save-jabatan-internal/", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE)
|
|
public ResponseEntity<String> addVO(@Valid @RequestBody JabatanVO vo, HttpServletRequest request) {
|
|
try {
|
|
|
|
Map<String, Object> result = jabatanService.saveJabatan(vo);// saveJabatanInternal(vo);
|
|
|
|
if (null != result)
|
|
mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,
|
|
getMessage(MessageResource.LABEL_SUCCESS, request));
|
|
return RestUtil.getJsonResponse(result.toString(), HttpStatus.CREATED, mapHeaderMessage);
|
|
} catch (ServiceVOException e) {
|
|
LOGGER.error("Got exception {} when add jabatan", 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 jabatan", jse.getMessage());
|
|
addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage());
|
|
return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage);
|
|
}
|
|
|
|
}
|
|
|
|
@RequestMapping(value = "/update-jabatan/", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE)
|
|
public ResponseEntity<String> editVO(@Valid @RequestBody JabatanVO vo) {
|
|
try {
|
|
JabatanVO result = (JabatanVO) jabatanService.update(vo);
|
|
|
|
if (null != result)
|
|
return RestUtil.getJsonResponse("", HttpStatus.OK);
|
|
} catch (ServiceVOException e) {
|
|
LOGGER.error("Got exception {} when update Agama", 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 Agama", jse.getMessage());
|
|
addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage());
|
|
return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage);
|
|
}
|
|
|
|
return RestUtil.getJsonHttptatus(HttpStatus.NOT_ACCEPTABLE);
|
|
}
|
|
|
|
@RequestMapping(value = "/update-jabatan-false/", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE)
|
|
public ResponseEntity<String> editFalseVO(@Valid @RequestBody JabatanVO vo) {
|
|
try {
|
|
JabatanVO result = (JabatanVO) jabatanService.deleteJabatan(vo);
|
|
|
|
if (null != result)
|
|
return RestUtil.getJsonResponse("", HttpStatus.OK);
|
|
} catch (ServiceVOException e) {
|
|
LOGGER.error("Got exception {} when update Agama", 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 Agama", jse.getMessage());
|
|
addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage());
|
|
return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage);
|
|
}
|
|
|
|
return RestUtil.getJsonHttptatus(HttpStatus.NOT_ACCEPTABLE);
|
|
}
|
|
|
|
@RequestMapping(value = "/delete-jabatan/", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
|
|
public ResponseEntity<String> deleteVO(@RequestParam(value = "id", required = true) Integer id,
|
|
HttpServletRequest request) {
|
|
try {
|
|
boolean result = jabatanService.delete(id);
|
|
|
|
return RestUtil.getJsonResponse(String.valueOf(result), HttpStatus.CREATED);
|
|
|
|
} catch (ServiceVOException e) {
|
|
LOGGER.error("Got exception {} when delete Jabatan", 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 Jabatan", jse.getMessage());
|
|
addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage());
|
|
return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage);
|
|
}
|
|
}
|
|
|
|
@SuppressWarnings("unchecked")
|
|
@RequestMapping(value = "/search-jabatan", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
|
|
public ResponseEntity<Collection<JabatanVO>> getAllVOWithQueryString(
|
|
@RequestParam(value = "page", required = false, defaultValue = "0") Integer page,
|
|
@RequestParam(value = "limit", required = false, defaultValue = "10") Integer limit,
|
|
@RequestParam(value = "sort", required = false, defaultValue = "id") String sort,
|
|
@RequestParam(value = "dir", required = false, defaultValue = "asc") String dir) {
|
|
Map<String, Object> resultPageMap = jabatanService.findAllWithPageAndLimitAndSortByAndDirectionParameter(page,
|
|
limit, sort, dir);
|
|
|
|
return constructListPageResult(resultPageMap);
|
|
}
|
|
|
|
@Override
|
|
public ResponseEntity<String> addVO(JabatanVO vo) {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public ResponseEntity<List<JabatanVO>> getAllVO() {
|
|
return null;
|
|
}
|
|
|
|
@RequestMapping(value = "/get-all-jabatan-struktural", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
|
|
public ResponseEntity<List<Map<String, Object>>> getAllJabatanStruktural(HttpServletRequest request) {
|
|
List<Map<String, Object>> result = null;
|
|
try {
|
|
|
|
result = jabatanService.getJabatanStruktural();
|
|
|
|
mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,
|
|
getMessage(MessageResource.LABEL_SUCCESS, request));
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
return RestUtil.getJsonResponse(result, HttpStatus.OK);
|
|
}
|
|
|
|
@RequestMapping(value = "/get-list-jabatan", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
|
|
public ResponseEntity<List<Map<String, Object>>> getAllJabatanByJenisJabatan(HttpServletRequest request,
|
|
@RequestParam(value = "idJenisJabatan", required = true) Integer idJenisJabatan) {
|
|
List<Map<String, Object>> result = new ArrayList<Map<String, Object>>();
|
|
try {
|
|
|
|
result = jabatanService.getJabatanByJenisJabatan(idJenisJabatan, "NONANJAB");
|
|
|
|
mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,
|
|
getMessage(MessageResource.LABEL_SUCCESS, request));
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
return RestUtil.getJsonResponse(result, HttpStatus.OK);
|
|
}
|
|
|
|
@Override
|
|
public ResponseEntity<String> deleteVO(Integer id) {
|
|
return null;
|
|
}
|
|
|
|
@RequestMapping(value = "/validate-nama-jabatan/", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
|
|
public ResponseEntity<Map<String, Object>> validateNamaJabatan(HttpServletRequest request,
|
|
@RequestParam(value = "namaJabatan", required = true) String namaJabatan,
|
|
@RequestParam(value = "idJenisJabatan", required = true) Integer idJenisJabatan) {
|
|
try {
|
|
Map<String, Object> result = jabatanService.validateNamaJabatan(namaJabatan, idJenisJabatan);
|
|
|
|
return RestUtil.getJsonResponse(result, HttpStatus.OK);
|
|
} catch (ServiceVOException e) {
|
|
LOGGER.error("Got exception {} when validate nama jabatan", 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 validate nama jabatan", jse.getMessage());
|
|
addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage());
|
|
return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage);
|
|
}
|
|
}
|
|
|
|
@RequestMapping(value = "/get-list-jabatan-anjab-by-unit-kerja", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
|
|
public ResponseEntity<List<Map<String, Object>>> getAllJabatanAnjabByUnitKerja(HttpServletRequest request,
|
|
@RequestParam(value = "unitKerja", required = true) String unitKerja) {
|
|
List<Map<String, Object>> result = new ArrayList<Map<String, Object>>();
|
|
try {
|
|
|
|
result = jabatanService.getListJabatanAnjabByUnitKerja(unitKerja);
|
|
|
|
mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,
|
|
getMessage(MessageResource.LABEL_SUCCESS, request));
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
return RestUtil.getJsonResponse(result, HttpStatus.OK);
|
|
}
|
|
|
|
@RequestMapping(value = "/get-list-unit-kerja-anjab", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
|
|
public ResponseEntity<Map<String, Object>> validateNamaJabatan(HttpServletRequest request) {
|
|
try {
|
|
Map<String, Object> result = new HashMap<String, Object>();
|
|
|
|
List<String> listUnitKerjaAnjab = jabatanService.getListUnitKerjaAnjab();
|
|
if (CommonUtil.isNotNullOrEmpty(listUnitKerjaAnjab)) {
|
|
result.put("data", listUnitKerjaAnjab);
|
|
}
|
|
|
|
return RestUtil.getJsonResponse(result, HttpStatus.OK);
|
|
} catch (ServiceVOException e) {
|
|
LOGGER.error("Got exception {} when get list unit kerja anjab", 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 list unit kerja anjab", jse.getMessage());
|
|
addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE, jse.getMessage());
|
|
return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT, mapHeaderMessage);
|
|
}
|
|
}
|
|
|
|
}
|