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

refactor/#130 게시글 상세 조회 시 이전, 다음 게시글 정보 추가 #131

Conversation

minjo-on
Copy link
Contributor

@minjo-on minjo-on commented Dec 9, 2024

Summary

close #130

게시글 상세 조회 시 이전, 다음 게시글 정보 추가

Tasks

  • PostTitleResponse 생성
  • 이전 게시글, 다음 게시글 조회 쿼리 작성
  • 게시글 상세 조회 로직 수정
  • 게시글 상세 조회 테스트 수정

@minjo-on minjo-on added the 🔨refactor refactoring code label Dec 9, 2024
@minjo-on minjo-on requested a review from a team December 9, 2024 15:38
@minjo-on minjo-on self-assigned this Dec 9, 2024
Copy link
Contributor

coderabbitai bot commented Dec 9, 2024

Important

Review skipped

Auto incremental reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

이 변경 사항은 PostService, PostController, PostDetailResponse, PostTitleResponse, PostRepository, 및 관련 테스트 파일에서 게시글 상세 조회 시 이전 및 다음 게시글 정보를 추가하는 기능을 구현합니다. getPostById 메서드는 getPostByIdWithPrevAndNext로 이름이 변경되었으며, 이전 및 다음 게시글을 가져오는 로직이 추가되었습니다. 새로운 PostTitleResponse 레코드가 도입되어 이전 및 다음 게시글의 제목과 ID를 포함할 수 있도록 PostDetailResponse가 수정되었습니다.

Changes

파일 경로 변경 요약
aics-api/src/main/java/kgu/developers/api/post/application/PostService.java getPostById 메서드 이름 변경 및 이전/다음 게시글 로직 추가, @Transactional 변경, 새로운 메서드 getPostTitleResponse 추가
aics-api/src/main/java/kgu/developers/api/post/presentation/PostController.java getPostById 메서드에서 postService.getPostByIdWithPrevAndNext 호출로 변경
aics-api/src/main/java/kgu/developers/api/post/presentation/response/PostDetailResponse.java prevPostnextPost 필드 추가, from 메서드 수정
aics-api/src/main/java/kgu/developers/api/post/presentation/response/PostTitleResponse.java 새로운 레코드 PostTitleResponse 추가, from 메서드 추가
aics-api/src/testFixtures/java/post/application/PostServiceTest.java 테스트 메서드 업데이트, 새로운 메서드 getPostByIdWithPrevAndNext 사용
aics-domain/src/main/java/kgu/developers/domain/post/domain/PostRepository.java findByPrevPostfindByNextPost 메서드 추가
aics-domain/src/main/java/kgu/developers/domain/post/infrastructure/JpaPostRepository.java 새로운 메서드 추가: findFirstByCreatedAtLessThanAndDeletedAtIsNullAndCategoryOrderByCreatedAtDesc, findFirstByCreatedAtGreaterThanAndDeletedAtIsNullAndCategoryOrderByCreatedAtAsc
aics-domain/src/main/java/kgu/developers/domain/post/infrastructure/PostRepositoryImpl.java findByPrevPostfindByNextPost 메서드 추가
aics-domain/src/testFixtures/java/mock/FakePostRepository.java findByPrevPostfindByNextPost 메서드 추가

Assessment against linked issues

Objective Addressed Explanation
게시글 상세 조회 시 이전, 다음 글 관련 데이터 추가 (#130)
PostDetailResponse에 이전, 다음글의 제목과 id 추가 (#130)
새로 추가되는 기능에 대한 테스트 코드 작성 (#130)

Possibly related PRs

Suggested labels

✨feature

Suggested reviewers

  • LeeHanEum

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>, please review it.
    • 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 gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @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 generate docstrings to generate docstrings for this PR. (Experiment)
  • @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.

Copy link

github-actions bot commented Dec 9, 2024

Test Coverage Report

Overall Project 88.48% 🍏
Files changed 100% 🍏

Module Coverage
aics-api 83.76% 🍏
Files
Module File Coverage
aics-api PostService.java 75.18% 🍏

Copy link
Contributor

@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: 2

🧹 Outside diff range and nitpick comments (6)
aics-domain/src/main/java/kgu/developers/domain/post/domain/PostRepository.java (1)

20-22: 메서드 선언이 명확하며, 문서화를 추가하면 좋을 것 같습니다.

메서드의 의도가 명확하게 전달되도록 작성되었습니다. 다만, 각 메서드의 동작을 더 자세히 설명하는 JavaDoc을 추가하면 좋을 것 같습니다.

다음과 같이 JavaDoc을 추가하는 것을 제안합니다:

+    /**
+     * 주어진 생성 시간과 카테고리를 기준으로 이전 게시글을 조회합니다.
+     * @param createdAt 기준 게시글의 생성 시간
+     * @param category 게시글 카테고리
+     * @return 이전 게시글 (Optional)
+     */
     Optional<Post> findByPrevPost(LocalDateTime createdAt, Category category);

+    /**
+     * 주어진 생성 시간과 카테고리를 기준으로 다음 게시글을 조회합니다.
+     * @param createdAt 기준 게시글의 생성 시간
+     * @param category 게시글 카테고리
+     * @return 다음 게시글 (Optional)
+     */
     Optional<Post> findByNextPost(LocalDateTime createdAt, Category category);
aics-api/src/main/java/kgu/developers/api/post/presentation/response/PostTitleResponse.java (1)

15-24: null 처리가 적절하며, 검증 로직 추가를 고려해보세요.

from() 메서드의 null 처리가 적절합니다. 추가로 title 필드에 대한 길이 제한 등의 검증 로직 추가를 고려해보시면 좋을 것 같습니다.

다음과 같이 검증 어노테이션을 추가하는 것을 제안합니다:

 @Builder
 public record PostTitleResponse(
     @Schema(description = "게시글 id", example = "1", nullable = true)
     Long postId,

     @Schema(description = "게시글 제목", example = "SW 부트캠프 4기 교육생 모집", nullable = true)
+    @Size(max = 255, message = "게시글 제목은 255자를 초과할 수 없습니다")
     String postTitle
 )
aics-domain/src/testFixtures/java/mock/FakePostRepository.java (1)

89-95: 스트림 연산 최적화를 고려해보세요

현재 구현은 정확하지만, 데이터가 많은 경우 성능 최적화가 가능합니다.

다음과 같은 최적화를 제안합니다:

 @Override
 public Optional<Post> findByPrevPost(LocalDateTime createdAt, Category category) {
     return data.stream()
+        .filter(post -> post.getDeletedAt() == null)  // 먼저 삭제된 게시글 필터링
+        .filter(post -> post.getCategory().equals(category))  // 카테고리 필터링
         .filter(post -> post.getCreatedAt().isBefore(createdAt))
-        .filter(post -> post.getCategory().equals(category) && post.getDeletedAt() == null)
         .max(Comparator.comparing(Post::getCreatedAt));
 }

이렇게 필터를 분리하면 각 단계에서 처리해야 할 데이터의 양을 줄일 수 있습니다.

Also applies to: 97-103

aics-api/src/main/java/kgu/developers/api/post/application/PostService.java (1)

55-63: 코드 가독성 개선이 필요합니다.

현재 구현은 정확하지만, 다음과 같은 개선사항을 제안합니다:

  1. 이전/다음 게시글 조회 로직을 별도의 private 메서드로 추출
  2. null 체크 로직 추가

다음과 같이 리팩토링을 제안합니다:

 @Transactional
 public PostDetailResponse getPostByIdWithPrevAndNext(Long postId) {
     Post post = getById(postId);
     post.increaseViews();

-    LocalDateTime timestamp = post.getCreatedAt();
-    Category category = post.getCategory();
-
-    Post prevPost = postRepository.findByPrevPost(timestamp, category).orElse(null);
-    Post nextPost = postRepository.findByNextPost(timestamp, category).orElse(null);
-
-    PostTitleResponse prevPostResponse = PostTitleResponse.from(prevPost);
-    PostTitleResponse nextPostResponse = PostTitleResponse.from(nextPost);
+    PostTitleResponse prevPostResponse = getPreviousPost(post);
+    PostTitleResponse nextPostResponse = getNextPost(post);
     return PostDetailResponse.from(post, prevPostResponse, nextPostResponse);
 }
+
+private PostTitleResponse getPreviousPost(Post currentPost) {
+    if (currentPost == null) return null;
+    Post prevPost = postRepository.findByPrevPost(
+        currentPost.getCreatedAt(), 
+        currentPost.getCategory()
+    ).orElse(null);
+    return PostTitleResponse.from(prevPost);
+}
+
+private PostTitleResponse getNextPost(Post currentPost) {
+    if (currentPost == null) return null;
+    Post nextPost = postRepository.findByNextPost(
+        currentPost.getCreatedAt(), 
+        currentPost.getCategory()
+    ).orElse(null);
+    return PostTitleResponse.from(nextPost);
+}
aics-api/src/testFixtures/java/post/application/PostServiceTest.java (1)

87-92: 테스트 케이스 보완이 필요합니다.

현재 테스트는 기본적인 속성만 검증하고 있습니다. 다음 속성들도 함께 검증하면 좋을 것 같습니다:

  • 생성 시간 (createdAt)
  • 조회수 초기값
  • 작성자 정보
 Post created = postService.getById(response.postId());

 assertEquals(request.title(), created.getTitle());
 assertEquals(request.content(), created.getContent());
 assertEquals(category.getDescription(), created.getCategory().getDescription());
+assertEquals(0, created.getViews());
+assertNotNull(created.getCreatedAt());
+assertEquals("202411345", created.getAuthor().getId());
aics-api/src/main/java/kgu/developers/api/post/presentation/PostController.java (1)

80-80: API 문서 업데이트가 필요합니다.

메서드의 기능이 확장되었으므로 API 문서에도 이전/다음 게시글 정보가 포함된다는 내용을 추가해야 합니다.

 @Operation(summary = "게시글 상세 조회 API", description = """
-    - Description : 이 API는 게시글의 상세 정보를 조회합니다.
+    - Description : 이 API는 게시글의 상세 정보와 함께 이전/다음 게시글의 정보를 조회합니다.
     - Assignee : 이신행
 """)
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 7a97598 and cdccaf9.

📒 Files selected for processing (9)
  • aics-api/src/main/java/kgu/developers/api/post/application/PostService.java (2 hunks)
  • aics-api/src/main/java/kgu/developers/api/post/presentation/PostController.java (1 hunks)
  • aics-api/src/main/java/kgu/developers/api/post/presentation/response/PostDetailResponse.java (2 hunks)
  • aics-api/src/main/java/kgu/developers/api/post/presentation/response/PostTitleResponse.java (1 hunks)
  • aics-api/src/testFixtures/java/post/application/PostServiceTest.java (5 hunks)
  • aics-domain/src/main/java/kgu/developers/domain/post/domain/PostRepository.java (2 hunks)
  • aics-domain/src/main/java/kgu/developers/domain/post/infrastructure/JpaPostRepository.java (1 hunks)
  • aics-domain/src/main/java/kgu/developers/domain/post/infrastructure/PostRepositoryImpl.java (2 hunks)
  • aics-domain/src/testFixtures/java/mock/FakePostRepository.java (3 hunks)
🔇 Additional comments (6)
aics-domain/src/main/java/kgu/developers/domain/post/infrastructure/JpaPostRepository.java (1)

12-13: 메서드 구현이 적절합니다!

Spring Data JPA 메서드 명명 규칙을 잘 따르고 있으며, 이전/다음 게시글 조회를 위한 정렬 방향이 올바르게 설정되어 있습니다.

Also applies to: 15-16

aics-api/src/main/java/kgu/developers/api/post/presentation/response/PostTitleResponse.java (1)

8-14: 응답 구조가 잘 설계되었습니다.

record를 사용한 불변 객체 구현과 Swagger 문서화가 잘 되어있습니다.

aics-domain/src/main/java/kgu/developers/domain/post/infrastructure/PostRepositoryImpl.java (1)

42-46: 이전/다음 게시글 조회 구현이 잘 되었습니다!

이전/다음 게시글을 조회하는 메서드가 명확하게 구현되었으며, JpaPostRepository에 적절히 위임되어 있습니다.

Also applies to: 48-52

aics-api/src/main/java/kgu/developers/api/post/presentation/response/PostDetailResponse.java (1)

Line range hint 62-76: from() 메서드 구현이 잘 되었습니다!

새로운 필드들이 빌더에 적절히 추가되었습니다.

aics-api/src/main/java/kgu/developers/api/post/application/PostService.java (2)

3-4: 메서드 이름이 명확하게 변경되었습니다.

메서드 이름이 getPostById에서 getPostByIdWithPrevAndNext로 변경되어 메서드의 기능을 더 명확하게 표현합니다.

Also applies to: 50-51


44-48: 들여쓰기가 개선되었습니다.

메서드 파라미터의 들여쓰기가 일관성 있게 정리되어 가독성이 향상되었습니다.

Copy link
Contributor

@LeeShinHaeng LeeShinHaeng 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
Member

@LeeHanEum LeeHanEum left a comment

Choose a reason for hiding this comment

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

깔끔한 코드가 아주 보기 좋습니다 👍
어프루브 했으니까 코멘트만 반영하고 바로 머지해주세요~

@minjo-on minjo-on merged commit 99b83e4 into develop Dec 10, 2024
3 checks passed
@minjo-on minjo-on deleted the refactor/#130-add-previous-and-next-post-data-to-post-detail-response branch December 10, 2024 05:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🔨refactor refactoring code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

게시글 상세 조회 시 이전, 다음 글 관련 데이터 추가
3 participants