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: 스터디 기본 정보 조회 API #608

Merged
merged 5 commits into from
Aug 14, 2024

Conversation

AlmondBreez3
Copy link
Member

@AlmondBreez3 AlmondBreez3 commented Aug 12, 2024

🌱 관련 이슈

📌 작업 내용 및 특이사항

  • 멘토, 사용자 페이지에 공통적으로 스터디 기본 정보 조회가 들어가서 Common으로 분리해서 구현했습니다!
  • 또한, 스터디 쪽에서는 프론트한테 값을 주면 다 처리를 하는 줄 알았는데 백엔드에서 다 포맷해서 처리하고 있는 것 같아서 저도 따로 유틸 클래스로 분리해서 구현했습니다
  • 그리고 상욱님이 기존의 투두로 유틸 구현이라고 하셨는데 제가 지금 건들이는 겸 하는게 공수가 덜 들 것 같아서 한꺼번에 같이 고쳤습니다!
  • https://www.notion.so/46784cd212394ec0a24722571742021d

📝 참고사항

📚 기타

Summary by CodeRabbit

  • 신규 기능

    • 연구 정보를 조회할 수 있는 RESTful API 엔드포인트 추가.
    • 연구 관련 응답 데이터를 캡슐화하는 CommonStudyResponse 클래스 도입.
    • 과제 마감일 필드를 LocalDateTime으로 변경하여 타입 안전성 향상.
  • 버그 수정

    • StudyResponse의 스케줄 포맷팅 로직 개선 및 불필요한 메서드 제거.

@AlmondBreez3 AlmondBreez3 self-assigned this Aug 12, 2024
@AlmondBreez3 AlmondBreez3 requested a review from a team as a code owner August 12, 2024 13:18
Copy link

coderabbitai bot commented Aug 12, 2024

Walkthrough

이번 변경 사항은 스터디 정보를 조회하는 RESTful API를 제공하는 CommonStudyController, 스터디 관련 작업을 관리하는 CommonStudyService, 그리고 API 응답 데이터를 캡슐화하는 CommonStudyResponse를 포함한 새로운 클래스들을 도입합니다. 이로 인해 스터디 정보에 대한 접근이 체계적이고 명확하게 이루어집니다.

Changes

파일 경로 변경 요약
src/main/java/com/gdschongik/gdsc/domain/study/api/CommonStudyController.java
src/main/java/com/gdschongik/gdsc/domain/study/application/CommonStudyService.java
CommonStudyControllerCommonStudyService 클래스를 새로 추가하여 스터디 정보를 조회하는 API 기능을 구현하였습니다. 각 클래스는 서비스와 컨트롤러 역할을 분리하여 클린 아키텍처를 유지합니다.
src/main/java/com/gdschongik/gdsc/domain/study/dto/response/CommonStudyResponse.java
src/main/java/com/gdschongik/gdsc/domain/study/dto/response/StudyResponse.java
CommonStudyResponse 레코드 클래스를 새로 추가하고, StudyResponse의 일정 포맷팅 로직을 간소화하여 코드 유지보수성을 향상시켰습니다.
src/main/java/com/gdschongik/gdsc/domain/study/dto/response/AssignmentResponse.java AssignmentResponsedeadline 필드를 LocalDateTime으로 변경하여 날짜 및 시간 처리의 명확성과 타입 안전성을 강화하였습니다.

Sequence Diagram(s)

sequenceDiagram
    participant Client
    participant CommonStudyController
    participant CommonStudyService
    participant StudyRepository

    Client->>CommonStudyController: GET /common/studies/{studyId}
    CommonStudyController->>CommonStudyService: getStudyInformation(studyId)
    CommonStudyService->>StudyRepository: findById(studyId)
    StudyRepository-->>CommonStudyService: Study entity
    CommonStudyService-->>CommonStudyController: CommonStudyResponse
    CommonStudyController-->>Client: 200 OK with CommonStudyResponse
Loading

Assessment against linked issues

Objective Addressed Explanation
스터디 기본 정보 조회 API 구현 ( #603 )
RESTful API 엔드포인트 추가
DTO 및 서비스 구조화 개선

🐰 변화의 기쁨을 담아
새로운 API로 더 나아가
스터디 정보가 손쉽게
우리에게 다가와
코드의 길을 밝혀주는
래빗의 마음을 담아
🌼✨


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 as 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.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

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.

@AlmondBreez3 AlmondBreez3 changed the title 스터디 기본 정보 조회 API feat: 스터디 기본 정보 조회 API Aug 12, 2024
Copy link

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

@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 94bff51 and cee9c1d.

Files selected for processing (5)
  • src/main/java/com/gdschongik/gdsc/domain/study/api/CommonStudyController.java (1 hunks)
  • src/main/java/com/gdschongik/gdsc/domain/study/application/CommonStudyService.java (1 hunks)
  • src/main/java/com/gdschongik/gdsc/domain/study/dto/response/CommonStudyResponse.java (1 hunks)
  • src/main/java/com/gdschongik/gdsc/domain/study/dto/response/StudyResponse.java (2 hunks)
  • src/main/java/com/gdschongik/gdsc/global/util/formatter/StudyFormatter.java (1 hunks)
Additional context used
Learnings (1)
src/main/java/com/gdschongik/gdsc/domain/study/application/CommonStudyService.java (1)
Learnt from: Sangwook02
PR: GDSC-Hongik/gdsc-server#431
File: src/main/java/com/gdschongik/gdsc/domain/study/application/StudyService.java:50-57
Timestamp: 2024-07-07T15:32:34.451Z
Learning: Consider using Stream API for creating lists in a more concise and potentially performant manner compared to traditional for-loops.
Additional comments not posted (9)
src/main/java/com/gdschongik/gdsc/domain/study/application/CommonStudyService.java (1)

17-26: 서비스 클래스의 설계가 적절합니다.

CommonStudyService는 스터디 정보를 조회하는 역할을 잘 수행하고 있습니다. @Transactional(readOnly = true)를 사용하여 읽기 전용 트랜잭션을 설정한 점이 좋습니다. 예외 처리도 적절하게 구현되어 있습니다.

src/main/java/com/gdschongik/gdsc/domain/study/api/CommonStudyController.java (1)

14-27: RESTful API 설계가 잘 되어 있습니다.

CommonStudyController는 스터디 정보를 조회하는 API 엔드포인트를 잘 정의하고 있습니다. @GetMapping@PathVariable을 적절히 사용하여 RESTful한 설계를 따르고 있습니다. API 설명을 위한 Swagger 주석도 잘 추가되어 있습니다.

src/main/java/com/gdschongik/gdsc/domain/study/dto/response/StudyResponse.java (1)

Line range hint 3-28:
포맷팅 로직이 개선되었습니다.

StudyResponse에서 스케줄 포맷팅을 StudyFormattergetHalfSchedule 메서드를 사용하여 간결하게 처리한 점이 좋습니다. 불필요한 메서드를 제거하여 코드가 더 깔끔해졌습니다. 이러한 변경은 유지보수성을 높이는 데 기여합니다.

src/main/java/com/gdschongik/gdsc/global/util/formatter/StudyFormatter.java (4)

13-15: 날짜 형식 검토 필요

getPeriod 메서드는 "MM.dd" 형식을 사용하고 있습니다. 이 형식이 모든 사용자의 로케일에 적합한지 확인이 필요합니다.


18-21: 스케줄 포맷팅 적절

getSchedule 메서드는 요일과 시간을 적절히 포맷팅하고 있습니다.


23-25: 부분 스케줄 포맷팅 적절

getHalfSchedule 메서드는 시작 시간만 포함하여 부분 스케줄을 적절히 포맷팅하고 있습니다.


27-38: 요일 변환 적절

getKoreanDayOfWeek 메서드는 DayOfWeek를 한국어 요일 이름으로 적절히 변환하고 있습니다.

src/main/java/com/gdschongik/gdsc/domain/study/dto/response/CommonStudyResponse.java (2)

9-19: 레코드 정의 및 문서화 적절

CommonStudyResponse 레코드는 불변 데이터 구조에 적합하며, Swagger 주석을 통해 API 문서화가 잘 되어 있습니다.


20-32: from 메서드 구현 적절

from 메서드는 Study 객체를 CommonStudyResponse로 변환하는 데 있어 적절하게 유틸리티 메서드를 사용하고 있습니다.

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

@NoArgsConstructor(access = AccessLevel.PRIVATE)
public class StudyFormatter {

public static String getPeriod(Period period) {
Copy link
Member

Choose a reason for hiding this comment

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

다른 Formatter 네이밍 컨벤션 체크해주세요

study.getIntroduction(),
study.getMentor().getName(),
getSchedule(study.getDayOfWeek(), study.getStartTime(), study.getEndTime()),
study.getTotalWeek().toString() + "주 코스",
Copy link
Member

Choose a reason for hiding this comment

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

이런 것도 전부 추출해주세요

import lombok.NoArgsConstructor;

@NoArgsConstructor(access = AccessLevel.PRIVATE)
public class StudyFormatter {
Copy link
Member

Choose a reason for hiding this comment

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

포매터 종류가 많아서, 각 메서드마다 결과물 예시 하나씩 작성 부탁드립니다

Copy link
Member

@Sangwook02 Sangwook02 left a comment

Choose a reason for hiding this comment

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

lgtm

@Slf4j
@Service
@RequiredArgsConstructor
@Transactional(readOnly = true)
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
@Transactional(readOnly = true)

메서드 레벨에 사용하면 클래스 레벨에는 없어도 될 것 같습니다

public class StudyFormatter {

public static String getPeriod(Period period) {
return period.getStartDate().format(DateTimeFormatter.ofPattern("MM.dd")) + "-"
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
return period.getStartDate().format(DateTimeFormatter.ofPattern("MM.dd")) + "-"
return period.getStartDate().format(DateTimeFormatter.ofPattern("MM.dd")) + " - "

Copy link

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

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

@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 cee9c1d and 2ff3722.

Files selected for processing (4)
  • src/main/java/com/gdschongik/gdsc/domain/study/application/CommonStudyService.java (1 hunks)
  • src/main/java/com/gdschongik/gdsc/domain/study/dto/response/AssignmentResponse.java (1 hunks)
  • src/main/java/com/gdschongik/gdsc/domain/study/dto/response/CommonStudyResponse.java (1 hunks)
  • src/main/java/com/gdschongik/gdsc/domain/study/dto/response/StudyResponse.java (2 hunks)
Files skipped from review as they are similar to previous changes (2)
  • src/main/java/com/gdschongik/gdsc/domain/study/application/CommonStudyService.java
  • src/main/java/com/gdschongik/gdsc/domain/study/dto/response/CommonStudyResponse.java
Additional comments not posted (4)
src/main/java/com/gdschongik/gdsc/domain/study/dto/response/AssignmentResponse.java (2)

12-12: 마감 기한 필드의 타입 변경

deadline 필드가 String에서 LocalDateTime으로 변경되었습니다. 이 변경은 타입 안전성을 높이고, 날짜 및 시간 값을 보다 정확하게 처리할 수 있게 합니다.


20-20: from 메서드의 타입 변경 확인

from 메서드에서 assignment.getDeadline()을 직접 반환하여 LocalDateTime 타입을 유지합니다. 이로 인해 코드가 간결해지고, 데이터 타입의 일관성이 유지됩니다.

src/main/java/com/gdschongik/gdsc/domain/study/dto/response/StudyResponse.java (2)

16-19: 생성자 필드 타입 변경

StudyResponse 생성자의 필드 타입이 DayOfWeek, LocalTime, LocalDateTime으로 변경되었습니다. 이는 데이터의 타입 안전성을 높이고 명확성을 개선합니다.


29-32: from 메서드의 필드 사용 변경

from 메서드에서 study.getDayOfWeek(), study.getStartTime(), study.getTotalWeek(), study.getPeriod().getStartDate()를 직접 사용하여 데이터의 구조적 표현을 강화합니다.

@AlmondBreez3 AlmondBreez3 merged commit 036e12d into develop Aug 14, 2024
1 check passed
@AlmondBreez3 AlmondBreez3 deleted the feature/603-get-study-information branch August 22, 2024 15:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

✨ 스터디 기본 정보 조회 API
3 participants