Skip to content
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 : auth 유효 검증 api 구현 #108

Merged
merged 3 commits into from
Sep 8, 2024
Merged

feat : auth 유효 검증 api 구현 #108

merged 3 commits into from
Sep 8, 2024

Conversation

waterricecake
Copy link
Contributor

close #107

여러가지 조건을 더 추가하였습니다.

  1. lobby가 존재할 경우 -> false
  2. lobby가 존재하지만 game이 존재하지 않을 경우 -> true
  3. lobby가 존재하고 game이 존재하지만 이름이 존재하지 않을 경우 -> false

@kpeel5839
Copy link
Collaborator

kpeel5839 commented Sep 5, 2024

1번은 로비만 존재하는 경우 -> false 하는 게 덜 헷갈릴 것 같아요!

뭐야 아니네;;

이거 조건이 넘 헷갈리는데

로비가 존재하는 경우 false인데

로비가 존재하지만 게임이 존재하지 않는 경우 true이면

로비만 존재하는 경우 false가 맞는건가요?

그리고 로비와 게임이 존재하는데 이름도 존재하면 true인건가요??

그러면 로비가 존재하고 게임이 없거나, 있다면 valid해야하는 건가요?

@waterricecake
Copy link
Contributor Author

뭐야 아니네;;
이거 조건이 넘 헷갈리는데
로비가 존재하는 경우 false인데
로비가 존재하지만 게임이 존재하지 않는 경우 true이면
로비만 존재하는 경우 false가 맞는건가요?
그리고 로비와 게임이 존재하는데 이름도 존재하면 true인건가요??
그러면 로비가 존재하고 게임이 없거나, 있다면 valid해야하는 건가요?

저도 이거 헷갈리던데.... 우선 로비 존재시 게임 존재 안할 경우 일단 로비가 살아있고 해당 auth의 유저가 방에 존재할때 true로 한 이유는 이 기능의 이유가 튕기거나 나가졌을때를 위함인데 이때 false일 경우 로비에서 튕길 경우 돌아갈 방법이 없기 때문이라고 생각해서 true로 반환하였습니다.

Copy link
Contributor

@thdwoqor thdwoqor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생했어

@@ -81,4 +81,16 @@ public GameResultResponse findResult(final String code) {
}
return GameResultResponse.from(game);
}

public boolean isValid(final String code, final String name) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

false 조건을
로비 가없을때,
로비에서 게임시작전 플레이어(이름)가 없을때,
게임이 있을때 플레이어(이름)가 없는경우

라고 생각하면되는거지?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ㅇㅇ 맞음

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

여러번 번복해서 죄송한데, game exists 라는 네이밍이 개인적으로는 어색한 것 같아요. 사실 로비가 있는것도 게임이 생성된 것이니 괜찮은 것 같기도 하지만 딱 한번에 와닿지는 않는 느낌?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

네이밍이라고 하면 api말하시는건가요? 아니면 controller의 isGameExist말하시는 건가요? 저도 하면서 exists보다는 auth의 유효성 검사니까 valid가 더 맞는거 같던데...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Collaborator

@kpeel5839 kpeel5839 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생했어


public boolean isValid(final String code, final String name) {
Optional<Lobby> lobby = lobbyRepository.findById(code);
Optional<Game> game = gameRepository.findById(code);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이거 조건문 이후에 추가하면 얼리 리턴되서 굳이 안가져올수도 있을 것 같아용

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment on lines +91 to +94
if (!game.isPresent()) {
return lobby.get().isParticipantExist(name);
}
return game.get().isPlayerExist(name);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

역시 개발자는 코드로 이야기하나보네요 ㅋㅋㅋ 이건 이해가 확실히 되네요.

@@ -81,4 +81,16 @@ public GameResultResponse findResult(final String code) {
}
return GameResultResponse.from(game);
}

public boolean isValid(final String code, final String name) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

여러번 번복해서 죄송한데, game exists 라는 네이밍이 개인적으로는 어색한 것 같아요. 사실 로비가 있는것도 게임이 생성된 것이니 괜찮은 것 같기도 하지만 딱 한번에 와닿지는 않는 느낌?

@waterricecake waterricecake merged commit babe4d8 into dev Sep 8, 2024
1 check passed
@waterricecake waterricecake deleted the feature/107 branch September 8, 2024 12:56
waterricecake added a commit that referenced this pull request Oct 14, 2024
* feat : auth 유효 검증 api 구현

* refactor : game 조회 얼리 리턴 이후로 변경

* feat : exist 네이밍 valid로 변경
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

게임 (로비) 유효 검증 API 구현
3 participants