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

fix: 가입 미완료인 이전 회차 멤버십 있어도 새로운 멤버십 생성 가능하도록 수정 #728

Merged

Conversation

Sangwook02
Copy link
Member

@Sangwook02 Sangwook02 commented Sep 1, 2024

🌱 관련 이슈

📌 작업 내용 및 특이사항

  • 1차 모집 기간에 멤버십을 생성만 하고 과정을 완료하지 않은 경우, 2차 모집시 멤버십을 생성할 수 없는 문제가 있습니다.
  • 급한대로 test는 todo만 남겨뒀어요. 이슈는 따로 만들어뒀습니다.

📝 참고사항

📚 기타

Summary by CodeRabbit

  • New Features

    • 회원 제출 검증 로직을 개선하여 중복 여부를 보다 명확하게 확인합니다.
    • 회원과 모집 관련 요구 사항을 확인하는 새로운 메서드를 도입했습니다.
  • Bug Fixes

    • 회원 제출 검증 시 사용되는 변수의 이름을 변경하여 가독성을 향상시켰습니다.
  • Tests

    • 회원 신청 프로세스에 대한 테스트 커버리지를 향상시키기 위한 미래 작업에 대한 주석을 추가했습니다.

@Sangwook02 Sangwook02 self-assigned this Sep 1, 2024
@Sangwook02 Sangwook02 requested a review from a team as a code owner September 1, 2024 16:21
Copy link

coderabbitai bot commented Sep 1, 2024

Walkthrough

변경 사항은 멤버십 제출 로직을 수정하여 중복 여부를 확인하는 방식으로 개선되었습니다. isMembershipAlreadySubmitted 변수가 isMembershipDuplicate로 이름이 변경되었고, 새로운 메서드 existsByMemberAndRecruitmentWithSatisfiedRequirements가 도입되어 멤버십 유효성을 보다 정교하게 확인합니다. 이로 인해 멤버십 검증 과정이 업데이트되었습니다.

Changes

파일 경로 변경 요약
src/main/java/com/gdschongik/gdsc/domain/membership/application/MembershipService.java isMembershipAlreadySubmitted 변수를 isMembershipDuplicate로 변경하고 새로운 메서드 호출로 업데이트.
src/main/java/com/gdschongik/gdsc/domain/membership/dao/MembershipCustomRepository.java existsByMemberAndRecruitment 메서드를 existsByMemberAndRecruitmentWithSatisfiedRequirements로 이름 변경.
src/main/java/com/gdschongik/gdsc/domain/membership/dao/MembershipCustomRepositoryImpl.java 기존 메서드 이름 변경 및 새로운 조건을 포함하는 로직 추가. 새로운 헬퍼 메서드 eqRequirementStatus 추가.
src/main/java/com/gdschongik/gdsc/domain/membership/domain/MembershipValidator.java validateMembershipSubmit 메서드의 매개변수 이름을 변경하여 명확성을 높임.
src/test/java/com/gdschongik/gdsc/domain/membership/application/MembershipServiceTest.java 테스트 메서드에 대한 주석 추가, 향후 테스트 케이스 추가 계획 언급.

Sequence Diagram(s)

sequenceDiagram
    participant Member
    participant MembershipService
    participant MembershipValidator
    participant MembershipCustomRepository

    Member->>MembershipService: submitMembership()
    MembershipService->>MembershipCustomRepository: existsByMemberAndRecruitmentWithSatisfiedRequirements()
    MembershipCustomRepository-->>MembershipService: return result
    MembershipService->>MembershipValidator: validateMembershipSubmit()
    MembershipValidator-->>MembershipService: validation result
    MembershipService-->>Member: response
Loading

Assessment against linked issues

Objective Addressed Explanation
1차 모집에서 멤버십 생성 후 가입하지 않은 경우 2차 모집 신청 불가 (#727)

🐰 새로운 멤버십, 중복을 찾아
🐰 요구 사항을 만족시키며 달려가요!
🐰 검증이 끝났으니 이제는 신청,
🐰 모든 친구들 함께 뛰어보자!
🐰 두 번째 모집도 걱정 없어요!
🐰 행복한 멤버십, 우리 함께해요!


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@Sangwook02 Sangwook02 added the 🐛 bug/error 버그 및 에러 픽스 label Sep 1, 2024
Copy link

github-actions bot commented Sep 1, 2024

Job Summary for Gradle

Check Style and Test to Develop :: build-test
Gradle Root Project Requested Tasks Gradle Version Build Outcome Build Scan®
gdsc check 8.5 Build Scan published

Copy link
Member

@AlmondBreez3 AlmondBreez3 left a comment

Choose a reason for hiding this comment

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

lgtm

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between b197801 and 488b544.

Files selected for processing (5)
  • src/main/java/com/gdschongik/gdsc/domain/membership/application/MembershipService.java (1 hunks)
  • src/main/java/com/gdschongik/gdsc/domain/membership/dao/MembershipCustomRepository.java (1 hunks)
  • src/main/java/com/gdschongik/gdsc/domain/membership/dao/MembershipCustomRepositoryImpl.java (3 hunks)
  • src/main/java/com/gdschongik/gdsc/domain/membership/domain/MembershipValidator.java (1 hunks)
  • src/test/java/com/gdschongik/gdsc/domain/membership/application/MembershipServiceTest.java (1 hunks)
Files skipped from review due to trivial changes (1)
  • src/test/java/com/gdschongik/gdsc/domain/membership/application/MembershipServiceTest.java
Additional comments not posted (8)
src/main/java/com/gdschongik/gdsc/domain/membership/dao/MembershipCustomRepository.java (1)

8-8: 메서드 이름 변경을 승인합니다. 하지만 메서드 사용과 구현을 확인하세요.

메서드 이름에 "WithSatisfiedRequirements"를 포함하도록 변경한 것은 메서드의 목적과 평가 기준에 대한 명확성을 향상시킵니다.

그러나 다음 사항을 확인해야 합니다:

  1. 메서드 호출 코드가 새로운 메서드 이름을 사용하도록 업데이트되었는지 확인하세요. 다음 스크립트를 실행하여 메서드 사용을 확인할 수 있습니다:

  2. 메서드 구현이 업데이트된 메서드 이름과 일치하고 이름에서 제안한 대로 충족된 요구 사항을 확인하는지 확인하세요. 다음 스크립트를 실행하여 메서드 구현을 검색할 수 있습니다:

Verification successful

메서드 구현 및 사용이 올바르게 이루어졌습니다.

existsByMemberAndRecruitmentWithSatisfiedRequirements 메서드는 요구 사항이 충족된 멤버십의 존재 여부를 확인하는 데 적절하게 구현되었습니다. 메서드 이름과 구현이 일치하며, 코드베이스에서 올바르게 사용되고 있습니다.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: 모든 `existsByMemberAndRecruitmentWithSatisfiedRequirements` 메서드 호출이 새로운 시그니처와 일치하는지 확인합니다.

# Test: 메서드 사용을 검색합니다. Expect: 새로운 시그니처의 발생만 있어야 합니다.
rg --type java -A 5 $'existsByMemberAndRecruitmentWithSatisfiedRequirements'

Length of output: 2113


Script:

#!/bin/bash
# Description: `existsByMemberAndRecruitmentWithSatisfiedRequirements` 메서드의 구현을 검색합니다.

# Test: 메서드 구현을 검색합니다.
ast-grep --lang java --pattern $'boolean existsByMemberAndRecruitmentWithSatisfiedRequirements(Member member, Recruitment recruitment) {
  $$$
}'

Length of output: 146


Script:

#!/bin/bash
# Description: Extract the full implementation of `existsByMemberAndRecruitmentWithSatisfiedRequirements` method.

# Use rg to extract the method implementation with sufficient context.
rg --type java -A 20 'boolean existsByMemberAndRecruitmentWithSatisfiedRequirements\(Member member, Recruitment recruitment\)' src/main/java/com/gdschongik/gdsc/domain/membership/dao/MembershipCustomRepositoryImpl.java

Length of output: 1058

src/main/java/com/gdschongik/gdsc/domain/membership/domain/MembershipValidator.java (2)

16-16: 매개변수 이름 변경이 적절합니다.

isMembershipAlreadySubmitted에서 isMembershipDuplicate로의 매개변수 이름 변경은 boolean 플래그의 의도를 더 명확하게 반영하여 가독성을 향상시킵니다.


23-24: 코드 변경이 매개변수 이름 변경과 일치합니다.

멤버십 중복 여부를 확인하는 로직이 새로운 매개변수 이름 isMembershipDuplicate에 맞게 업데이트되었습니다. 이는 매개변수 이름 변경과 일관되며 기능적인 변화는 없습니다.

src/main/java/com/gdschongik/gdsc/domain/membership/dao/MembershipCustomRepositoryImpl.java (3)

5-5: LGTM!

새로 추가된 import 문은 파일에서 이루어진 변경 사항에 필요합니다.

Also applies to: 9-9


19-26: LGTM!

메서드 이름 변경은 요구 사항이 충족되었는지 확인하기 위해 업데이트된 기능을 반영합니다. 추가된 조건은 결제 상태가 충족된 멤버십만 고려되도록 합니다. 이러한 변경 사항은 이전 단계에서 미완료 상태임에도 불구하고 사용자가 새 멤버십을 생성할 수 있도록 허용하는 PR 목표와 일치합니다.


39-43: LGTM!

새로운 private 메서드 eqRequirementStatus는 쿼리에서 요구 사항 상태를 확인하는 데 도움이 되는 메서드입니다. 이 메서드는 올바르게 구현되었으며 existsByMemberAndRecruitmentWithSatisfiedRequirements 메서드에서 사용됩니다. 이 메서드는 특정 요구 사항 상태에 따라 멤버십을 필터링하는 쿼리 기능을 향상시킵니다.

src/main/java/com/gdschongik/gdsc/domain/membership/application/MembershipService.java (2)

72-73: 변수명 변경 및 중복 멤버십 확인 로직 개선

isMembershipAlreadySubmitted 변수명을 isMembershipDuplicate로 변경하고, existsByMemberAndRecruitmentWithSatisfiedRequirements 메서드를 사용하여 중복 멤버십 여부를 보다 정교하게 확인하도록 개선한 것은 좋은 변경사항입니다. 이를 통해 멤버십 제출 시 중복 여부를 보다 명확하게 판단할 수 있을 것 같습니다.


75-75: 멤버십 검증 로직 업데이트

membershipValidator.validateMembershipSubmit 호출 시 새로운 변수인 isMembershipDuplicate를 사용하도록 업데이트한 것은 필요한 변경사항입니다. 이를 통해 수정된 중복 멤버십 확인 로직과 일관성을 유지할 수 있습니다.

Copy link
Member

@uwoobeat uwoobeat left a comment

Choose a reason for hiding this comment

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

lgtm

@Sangwook02 Sangwook02 merged commit b2f41b5 into develop Sep 1, 2024
1 check passed
@Sangwook02 Sangwook02 deleted the fix/727-not-satisfied-membership-block-new-membership branch September 1, 2024 16:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐛 bug/error 버그 및 에러 픽스
Projects
None yet
Development

Successfully merging this pull request may close these issues.

🐛 1차 모집에서 멤버십 생성 후 가입하지 않은 경우 2차 모집 신청 불가
3 participants