-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat : 크루 삭제 #52
The head ref may contain hidden characters: "23-be-\uD06C\uB8E8-\uC0AD\uC81C"
Feat : 크루 삭제 #52
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
예외처리 다 정상적으로 돌아가는 것 확인했습니다!! 예외처리 고민해주신 흔적이 보였습니다! 너무 수고하셨어요~~ 멤버크루도 같이 삭제해주는거 좋습니다~ 머지할게요!!
//삭제하고자 하는 크루의 멤버크루 | ||
//해당크루와 관계없음(해당크루에 등록되있지 않음), 멤버크루가 존재하지않음 | ||
MemberCrew memberCrew = memberCrewRepository.findByMember_MemberIdAndCrew_CrewIdAndStatus( memberId, crewId, BaseStatus.ACTIVE) | ||
.orElseThrow(()->new MemberCrewException(NOT_CREW_MEMBERCREW)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
오.. 이 부분 좋은 것 같아요! 저 였다면 그냥 권한이 없다고 넘어갔을 것 같은데, 존재하는 크루이기는 하나 참여를 안한 크루이다 라는 예외처리..👍 신경써주신 티가 납니다!!
요약 (Summary)
🔑 변경 사항 (Key Changes)
Member crew Exception 작성
: 멤버크루 관련 예외를 작성했습니다.CrewController.deleteCrew 컨트롤러 작성
: 크루삭제 컨트롤러를 작성했습니다.CrewService.deleteCrew 서비스 작성
: 크루삭제 서비스를 작성했습니다.MemberCrewService.ConfirmCaptainMemberCrew 작성
: 멤버가 CAPTAIN인지 확인할수있도록 멤버크루 서비스를 작성했습니다.📝 리뷰 요구사항 (To Reviewers)
확인 방법
코드를 실행시키고,mysql workbench에서 다음 쿼리문을 실행시켜주세요.
첫번째 member를 리뷰자의 정보로 수정해야합니다.
그 다음 카카오 소셜 로그인을 해주세요.
https://kauth.kakao.com/oauth/authorize?client_id=220ac935aaf5aa43884ee21823d82237&redirect_uri=http://localhost:8080/auth/kakao/callback&response_type=code
엑세스토큰을 postman에 넣고 테스트 해주세요
다음 주소로 PATCH 요청 보내주세요
http://localhost:8080/crew/delete?crewId=1
crewId값을 변경해 가면서 변경사항을 확인하시면 됩니다!
크루 삭제전 데이터 베이스 상태입니다.
크루아이디1의 CAPTAIN 권한을 가진 멤버아이디1이 크루1 삭제를 하면 정상적으로 상태값이 DELETE로 변경되는것을 확인할 수 있습니다!
반면 크루아이디2 CREW 권한을 가진 멤버아이디1이 크루2 삭제를 하려고하면 위와같은 메세지가 떠야 정상입니다!
크루아이디3에 참여하고 있지않은 멤버아이디1이 크루3 삭제를 하려고했을때
위와같은 메세지가 뜨면 성공입니다!
크루아이디4 이상부터는 존재하지않는 크루에대한 예외처리 메세지가 뜨면 성공입니다!
크루아이디1 - > 크루삭제
크루아이디2 - > CREW라 권한없음
크루아이디3 - > 크루에 참여하지 못한 상태라 삭제 불가
크루아이디4 이상 -> 존재하지 않는 크루에대한 예외처리