package com.takensoft.cms.mber.web; import com.takensoft.cms.mber.dto.AdmMbrDTO; import com.takensoft.cms.mber.dto.JoinDTO; import com.takensoft.cms.mber.dto.PasswordDTO; import com.takensoft.cms.mber.service.AdmMbrService; import com.takensoft.cms.mber.service.MberService; import com.takensoft.cms.mber.vo.MberVO; import com.takensoft.common.exception.IdDuplicationException; import com.takensoft.common.message.MessageCode; import com.takensoft.common.util.ResponseData; import com.takensoft.common.util.ResponseUtil; import lombok.RequiredArgsConstructor; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpStatus; import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import org.springframework.beans.factory.annotation.Value; import jakarta.servlet.http.HttpServletRequest; import javax.validation.Valid; import java.nio.charset.Charset; import java.util.*; /** * @author 박정하 * @since 2024.06.21 * @modification * since | author | description * 2024.06.21 | 박정하 | 최초 등록 * * 회원정보 관련 Controller */ @RestController @RequiredArgsConstructor @RequestMapping(value = "/mbr") public class AdmMbrController { private final AdmMbrService admMbrService; private final MberService mbrService; private final ResponseUtil resUtil; /** * @author 박정하 * @since 2024.06.21 * @param params * @return * @throws Exception * * 회원정보 목록 조회 */ @PostMapping(value = "/listProc.json") public ResponseEntity listProc(@RequestBody HashMap params) throws Exception { HashMap result = admMbrService.mbrList(params); // 응답 처리 return resUtil.successRes(result, MessageCode.COMMON_SUCCESS); } /** * @author 박정하 * @since 2024.06.21 * @param resetPswd, admMbrDTO * @return * @throws Exception * * 회원정보 비밀번호 초기화 */ @PostMapping(value = "/pswdResetProc.json") public ResponseEntity pswdResetProc(@Value("${password.reset}") String resetPswd, @RequestBody AdmMbrDTO admMbrDTO) throws Exception { PasswordDTO passwordDTO = new PasswordDTO(); passwordDTO.setMbrId(admMbrDTO.getMbrId()); passwordDTO.setPswd(admMbrDTO.getPswd()); passwordDTO.setNewPswd(resetPswd); // 비밀번호 변경 int result = mbrService.updatePassword(passwordDTO); // 응답 처리 if(result > 0) { return resUtil.successRes(result, MessageCode.COMMON_SUCCESS); } else { return resUtil.errorRes(MessageCode.COMMON_UNKNOWN_ERROR); } } /** * @author 박정하 * @since 2024.06.21 * @param admMbrDTO * @return * @throws Exception * * 회원정보 상세 조회 */ @PostMapping(value = "/detailProc.json") public ResponseEntity detailProc(@RequestBody AdmMbrDTO admMbrDTO) throws Exception { // 상세 조회 AdmMbrDTO result = admMbrService.mbrDetail(admMbrDTO.getMbrId()); // 응답 처리 return resUtil.successRes(result, MessageCode.COMMON_SUCCESS); } /** * @author 박정하 * @since 2024.06.21 * @param admMbrDTO * @return * @throws Exception * * 회원정보 수정 */ @PostMapping(value = "/updateProc.json") public ResponseEntity updateProc(@RequestBody AdmMbrDTO admMbrDTO) throws Exception { int result = admMbrService.updateMbr(admMbrDTO); // 응답 처리 if(result > 0) { return resUtil.successRes(result, MessageCode.COMMON_SUCCESS); } else { return resUtil.errorRes(MessageCode.COMMON_UPDATE_FAIL); } } /** * @author 박정하 * @since 2024.06.21 * @param admMbrDTO * @return * @throws Exception * * 회원정보 삭제 */ @PostMapping(value = "/deleteProc.json") public ResponseEntity deleteProc(@RequestBody AdmMbrDTO admMbrDTO) throws Exception { admMbrDTO.setUseYn("N"); // 회원정보 삭제 int result = admMbrService.updateMbr(admMbrDTO); // 응답 처리 if(result > 0) { return resUtil.successRes(result, MessageCode.COMMON_SUCCESS); } else { return resUtil.errorRes(MessageCode.COMMON_DELETE_FAIL); } } /** * @author 박정하 * @since 2024.06.21 * @param req, joinDTO * @return * @throws Exception * * 회원정보 등록 */ @PostMapping(value = "/joinProc.json") public ResponseEntity joinProc(HttpServletRequest req, @RequestBody @Valid JoinDTO joinDTO) throws Exception { // 응답 처리 HttpHeaders headers = new HttpHeaders(); headers.setContentType(new MediaType("application", "json", Charset.forName("UTF-8"))); ResponseData responseData = new ResponseData(); // 아이디 중복 검사 boolean isExistence = mbrService.findByCheckLoginId(joinDTO.getLgnId()); if(isExistence) { return resUtil.errorRes(MessageCode.SIGNUP_ID_TAKEN); } // 회원 가입 진행 HashMap result = admMbrService.mbrInsert(req, joinDTO); int insertResult = (int) result.get("insertResult"); if(insertResult > 0) { return resUtil.successRes(result, MessageCode.SIGNUP_SUCCESS); } else { return resUtil.errorRes(MessageCode.COMMON_UNKNOWN_ERROR); } } /** * @author 박정하 * @since 2024.07.03 * @param mbrVO * @return * @throws Exception * * 아이디 찾기 */ @PostMapping(value = "/searchIdProc.json") public ResponseEntity searchIdProc(@RequestBody MberVO mbrVO) throws Exception { String result = admMbrService.lgnIdSearch(mbrVO); // 응답 처리 HttpHeaders headers = new HttpHeaders(); headers.setContentType(new MediaType("application", "json", Charset.forName("UTF-8"))); ResponseData responseData = new ResponseData(); if(result != null) { return resUtil.successRes(result, MessageCode.COMMON_SUCCESS); } else { return resUtil.errorRes(MessageCode.LOGIN_USER_NOT_FOUND); } } /** * @author 박정하 * @since 2024.07.03 * @param admMbrDTO * @return * @throws Exception * * 비밀번호 초기화 */ @PostMapping(value = "/resetPswdProc.json") public ResponseEntity resetPswdProc(@Value("${password.reset}") String resetPswd, @RequestBody AdmMbrDTO admMbrDTO) throws Exception { int result = admMbrService.mbrIdSearch(resetPswd, admMbrDTO); // 응답 처리 HttpHeaders headers = new HttpHeaders(); headers.setContentType(new MediaType("application", "json", Charset.forName("UTF-8"))); ResponseData responseData = new ResponseData(); if(result > 0) { return resUtil.successRes(result, MessageCode.COMMON_SUCCESS); } else { return resUtil.errorRes(MessageCode.LOGIN_USER_NOT_FOUND); } } }