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 추가 #806

Merged
merged 6 commits into from
Oct 14, 2024

Conversation

Sangwook02
Copy link
Member

@Sangwook02 Sangwook02 commented Oct 13, 2024

🌱 관련 이슈

📌 작업 내용 및 특이사항

📝 참고사항

📚 기타

Summary by CodeRabbit

  • 새로운 기능

    • 학생 정보를 Excel 형식으로 다운로드할 수 있는 새로운 엔드포인트 추가.
    • 학습 관련 Excel 시트를 생성하는 기능 개선.
    • 회원 정보를 포함하는 Excel 워크북 생성 기능 간소화.
  • 버그 수정

    • 데이터 검색 로직을 새로운 헬퍼 메서드로 캡슐화하여 가독성 향상.
  • 문서화

    • 새로운 상수 및 메서드 추가로 Excel 시트 헤더 및 주간 과제/출석 관련 정보 개선.
    • Excel 워크시트 작성 실패에 대한 새로운 오류 코드 추가.

@Sangwook02 Sangwook02 added the ✨ feature 새로운 기능 추가 및 수정 label Oct 13, 2024
@Sangwook02 Sangwook02 self-assigned this Oct 13, 2024
@Sangwook02 Sangwook02 requested a review from a team as a code owner October 13, 2024 08:40
Copy link

coderabbitai bot commented Oct 13, 2024

Caution

Review failed

The pull request is closed.

Walkthrough

MentorStudyController에 새로운 엔드포인트가 추가되어 학생 정보를 Excel 형식으로 다운로드할 수 있게 되었습니다. createStudyWorkbook 메서드는 studyId를 경로 변수로 받아 Excel 파일을 생성하고 다운로드를 위한 적절한 헤더를 설정하여 ResponseEntity<byte[]>를 반환합니다. MentorStudyService는 Excel 파일 생성을 위한 새로운 메서드와 기존 메서드의 리팩토링이 포함되었습니다. 여러 DTO와 상수 클래스도 업데이트되었습니다.

Changes

파일 경로 변경 요약
src/main/java/com/gdschongik/gdsc/domain/member/api/AdminMemberController.java
src/main/java/com/gdschongik/gdsc/domain/member/application/AdminMemberService.java
throws IOException 제거하여 메서드 시그니처 간소화
src/main/java/com/gdschongik/gdsc/domain/study/api/MentorStudyController.java 새로운 엔드포인트 /{studyId}/students/excel 추가, 메서드 createStudyWorkbook 추가
src/main/java/com/gdschongik/gdsc/domain/study/application/MentorStudyService.java 메서드 createStudyExcel 추가, 기존 메서드 리팩토링, 새로운 헬퍼 메서드 추가
src/main/java/com/gdschongik/gdsc/domain/study/dao/StudyHistoryRepository.java 메서드 findAllByStudyId 추가
src/main/java/com/gdschongik/gdsc/domain/study/dto/response/StudyTodoResponse.java 메서드 isAttendance, isAssignment 추가
src/main/java/com/gdschongik/gdsc/global/common/constant/WorkbookConstant.java 새로운 상수 STUDY_SHEET_HEADER, WEEKLY_ASSIGNMENT, WEEKLY_ATTENDANCE 추가
src/main/java/com/gdschongik/gdsc/global/exception/ErrorCode.java 새로운 오류 코드 EXCEL_WORKSHEET_WRITE_FAILED 추가
src/main/java/com/gdschongik/gdsc/global/util/ExcelUtil.java 메서드 createStudyExcel 추가 및 기존 메서드 업데이트

Assessment against linked issues

Objective Addressed Explanation
스터디원 엑셀 다운로드 API 추가 (#787)

Possibly related PRs

Suggested reviewers

  • AlmondBreez3
  • seulgi99
  • uwoobeat

🐰 새로운 기능이 생겼어요,
학생 정보가 Excel로 쏙!
다운로드는 간편하게,
스터디원 모두 기뻐해요!
🥕✨


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

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: 5

🧹 Outside diff range and nitpick comments (10)
src/main/java/com/gdschongik/gdsc/global/common/constant/WorkbookConstant.java (3)

15-15: WEEKLY_ASSIGNMENT 상수가 적절히 정의되었습니다.

주차별 과제를 위한 포맷 문자열이 잘 정의되어 있습니다. 동적으로 주차 번호를 삽입할 수 있어 유연성이 좋습니다.

개선 제안: 상수명을 WEEKLY_ASSIGNMENT_FORMAT으로 변경하면 이 상수가 포맷 문자열임을 더 명확히 나타낼 수 있습니다.


16-16: WEEKLY_ATTENDANCE 상수가 적절히 정의되었습니다.

주차별 출석을 위한 포맷 문자열이 잘 정의되어 있습니다. WEEKLY_ASSIGNMENT와 일관된 접근 방식을 사용하고 있어 좋습니다.

개선 제안: WEEKLY_ASSIGNMENT와 마찬가지로, 상수명을 WEEKLY_ATTENDANCE_FORMAT으로 변경하면 이 상수가 포맷 문자열임을 더 명확히 나타낼 수 있습니다.


Line range hint 1-20: 전체적으로 PR 목표에 부합하는 변경사항입니다.

이 파일의 변경사항은 스터디원 엑셀 다운로드 API 추가라는 PR의 목표에 잘 부합합니다. 새로 추가된 상수들은 스터디 관련 정보를 엑셀 파일로 생성하는 데 필요한 기초를 제공합니다. 기존 상수들과의 일관성도 잘 유지되고 있습니다.

향후 개선사항: 만약 다양한 유형의 워크북이 추가될 예정이라면, 각 워크북 유형별로 별도의 상수 클래스를 만드는 것을 고려해 보세요. 예를 들어, StudyWorkbookConstant, MemberWorkbookConstant 등으로 분리하면 코드의 구조화와 유지보수성이 향상될 수 있습니다.

src/main/java/com/gdschongik/gdsc/domain/study/dao/StudyHistoryRepository.java (1)

23-24: 새로운 메서드가 잘 추가되었습니다.

새로 추가된 findAllByStudyId 메서드는 기존 메서드들과 일관성 있게 작성되었으며, PR의 목적에 부합합니다. 스프링 데이터 JPA 명명 규칙을 잘 따르고 있습니다.

일관성을 위해 기존의 findByStudyId 메서드와 새로운 findAllByStudyId 메서드 사이에 빈 줄을 추가하는 것이 좋겠습니다. 이렇게 하면 코드의 가독성이 향상될 것입니다.

src/main/java/com/gdschongik/gdsc/domain/study/dto/response/StudyTodoResponse.java (3)

67-69: 메서드 구현이 적절합니다.

isAttendance() 메서드의 구현이 간결하고 명확합니다. 이는 StudyTodoResponse의 사용성을 향상시킵니다.

일관성을 위해 다음과 같이 메서드 이름을 변경하는 것을 고려해 보세요:

-    public boolean isAttendance() {
+    public boolean isAttendanceType() {
         return todoType == ATTENDANCE;
     }

이렇게 하면 StudyTodoType 열거형의 이름과 더 일치하게 됩니다.


71-73: 메서드 구현이 적절합니다.

isAssignment() 메서드의 구현이 간결하고 명확합니다. 이는 StudyTodoResponse의 사용성을 향상시키며, isAttendance() 메서드와 일관성이 있습니다.

일관성을 위해 다음과 같이 메서드 이름을 변경하는 것을 고려해 보세요:

-    public boolean isAssignment() {
+    public boolean isAssignmentType() {
         return todoType == ASSIGNMENT;
     }

이렇게 하면 StudyTodoType 열거형의 이름과 더 일치하게 됩니다.


67-73: 새로운 메서드에 대한 문서화 추가 제안

새로 추가된 isAttendance()isAssignment() 메서드는 StudyTodoResponse 레코드의 기능을 향상시킵니다. 하지만 이 메서드들의 목적과 사용 방법을 명확히 하기 위해 문서화를 추가하는 것이 좋겠습니다.

각 메서드 위에 JavaDoc 주석을 추가하는 것을 고려해 보세요. 예를 들면:

/**
 * 이 StudyTodoResponse가 출석 유형인지 확인합니다.
 * @return 출석 유형이면 true, 그렇지 않으면 false
 */
public boolean isAttendance() {
    return todoType == ATTENDANCE;
}

/**
 * 이 StudyTodoResponse가 과제 유형인지 확인합니다.
 * @return 과제 유형이면 true, 그렇지 않으면 false
 */
public boolean isAssignment() {
    return todoType == ASSIGNMENT;
}

이렇게 하면 코드의 가독성과 유지보수성이 향상될 것입니다.

src/main/java/com/gdschongik/gdsc/domain/study/api/MentorStudyController.java (2)

73-86: Excel 다운로드 기능이 잘 구현되었습니다. 파일명 개선 제안

새로운 createStudyWorkbook 메서드가 요구사항을 잘 충족시키고 있습니다. ResponseEntity와 헤더 설정이 적절히 이루어져 있어 파일 다운로드 기능이 정상적으로 작동할 것으로 보입니다.

개선 제안:
파일명을 "study.xls"로 하드코딩하는 대신, 스터디 ID나 이름을 포함시켜 더 구체적으로 만들면 좋을 것 같습니다. 예를 들어:

String filename = String.format("study_%d.xls", studyId);
ContentDisposition contentDisposition =
        ContentDisposition.builder("attachment").filename(filename).build();

이렇게 하면 사용자가 여러 스터디의 엑셀 파일을 다운로드할 때 파일을 쉽게 구분할 수 있습니다.


75-86: 예외 처리 개선 제안

현재 메서드는 IOException을 던질 수 있다고 선언되어 있지만, 구체적인 예외 처리가 없습니다. 다음과 같은 개선을 제안합니다:

  1. mentorStudyService.createStudyExcel(studyId) 메서드에서 발생할 수 있는 구체적인 예외들을 파악하고, 이에 대한 처리를 추가하세요.
  2. 가능하다면 사용자에게 더 명확한 에러 메시지를 제공할 수 있도록 예외를 잡아 처리하는 것을 고려해보세요.

예시:

try {
    byte[] response = mentorStudyService.createStudyExcel(studyId);
    // ... (나머지 코드)
} catch (StudyNotFoundException e) {
    return ResponseEntity.notFound().build();
} catch (IOException e) {
    return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR)
            .body("엑셀 파일 생성 중 오류가 발생했습니다.");
}

이렇게 하면 클라이언트에게 더 명확한 에러 응답을 제공할 수 있습니다.

src/main/java/com/gdschongik/gdsc/global/util/ExcelUtil.java (1)

75-76: TODO 항목 처리 필요

코드에 // todo: 수료 여부 추가라는 주석이 있습니다. 수료 여부 필드가 아직 구현되지 않은 것으로 보입니다.

수료 여부 필드 추가 및 관련 구현에 도움이 필요하시면 말씀해주세요. 새로운 GitHub 이슈를 생성하거나 구현을 도와드릴 수 있습니다.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 382ac9a and ff6af2b.

📒 Files selected for processing (6)
  • src/main/java/com/gdschongik/gdsc/domain/study/api/MentorStudyController.java (2 hunks)
  • src/main/java/com/gdschongik/gdsc/domain/study/application/MentorStudyService.java (4 hunks)
  • src/main/java/com/gdschongik/gdsc/domain/study/dao/StudyHistoryRepository.java (1 hunks)
  • src/main/java/com/gdschongik/gdsc/domain/study/dto/response/StudyTodoResponse.java (1 hunks)
  • src/main/java/com/gdschongik/gdsc/global/common/constant/WorkbookConstant.java (1 hunks)
  • src/main/java/com/gdschongik/gdsc/global/util/ExcelUtil.java (4 hunks)
🧰 Additional context used
🔇 Additional comments (9)
src/main/java/com/gdschongik/gdsc/global/common/constant/WorkbookConstant.java (1)

12-14: STUDY_SHEET_HEADER 상수가 적절히 정의되었습니다.

스터디 멤버 정보를 위한 헤더가 잘 정의되어 있습니다. 이름, 학번, 디스코드 정보 등 필요한 정보들이 포함되어 있어 적절해 보입니다.

src/main/java/com/gdschongik/gdsc/domain/study/api/MentorStudyController.java (3)

11-11: 새로운 임포트가 적절히 추가되었습니다.

IOException, ContentDisposition, 그리고 MediaType의 임포트는 새로운 Excel 다운로드 기능을 위해 필요하며 올바르게 추가되었습니다.

Also applies to: 16-17


Line range hint 1-86: 전반적인 구현이 잘 되었으나 몇 가지 개선 사항이 있습니다

새로운 Excel 다운로드 기능이 성공적으로 구현되었습니다. PR의 목적을 잘 달성하고 있으며, 전체적인 구조가 적절합니다. 다만 다음 사항들을 개선하면 더 좋을 것 같습니다:

  1. 파일명을 더 구체적으로 지정하여 사용자 편의성 향상
  2. 예외 처리를 더 구체적으로 하여 오류 상황에 대한 명확한 피드백 제공
  3. 보안 검증 메커니즘 추가 또는 확인하여 무단 접근 방지

이러한 개선사항들을 반영하면 코드의 품질과 안정성이 더욱 향상될 것입니다.


73-75: 보안 검증 추가 필요

현재 구현에서는 인증이나 권한 검사가 명시적으로 보이지 않습니다. 다음 사항을 고려해 보시기 바랍니다:

  1. 이 엔드포인트에 접근하기 위한 인증 메커니즘이 있는지 확인하세요.
  2. 요청한 사용자가 해당 스터디의 정보를 다운로드할 권한이 있는지 검증하는 로직을 추가하세요.

예를 들어:

@PreAuthorize("@studyAuthorizationChecker.isMentor(#studyId)")
@GetMapping("/{studyId}/students/excel")
public ResponseEntity<byte[]> createStudyWorkbook(@PathVariable Long studyId) throws IOException {
    // ... (기존 코드)
}

이렇게 하면 오직 해당 스터디의 멘토만이 학생 정보를 다운로드할 수 있게 됩니다.

보안 검증이 다른 곳에서 이루어지고 있는지 확인하기 위해 다음 스크립트를 실행해 주세요:

src/main/java/com/gdschongik/gdsc/global/util/ExcelUtil.java (2)

34-35: 메소드 호출 이름 변경 반영 확인

메소드 이름이 createSheet에서 createMemberSheetByRole로 변경되었으며, 해당 호출 부분도 정확히 수정되어 있습니다.


39-43: 새로운 기능 추가 확인

스터디 엑셀 파일을 생성하는 createStudyExcel 메소드가 적절하게 추가되었습니다. 기능 구현 및 예외 처리가 올바르게 되어 있습니다.

src/main/java/com/gdschongik/gdsc/domain/study/application/MentorStudyService.java (3)

26-26: ExcelUtil import 확인되었습니다

ExcelUtil을 올바르게 import하여 Excel 관련 기능을 사용할 수 있게 되었습니다.


48-48: ExcelUtil 의존성 주입 확인

ExcelUtil을 멤버 변수로 선언하고, @RequiredArgsConstructor를 통해 의존성을 주입하여 설정하였습니다.


78-80: 코드 재사용성을 높이기 위한 리팩토링 좋습니다

getStudyAchievementMap, getAttendanceMap, getAssignmentHistoryMap 메서드를 활용하여 중복 코드를 줄이고 가독성을 향상시켰습니다.

Comment on lines +109 to +128
private Sheet setUpStudySheet(Workbook workbook, String sheetName, long totalWeek) {
Sheet sheet = workbook.createSheet(sheetName);

Row row = sheet.createRow(0);
IntStream.range(0, STUDY_SHEET_HEADER.length).forEach(i -> {
Cell cell = row.createCell(i);
cell.setCellValue(STUDY_SHEET_HEADER[i]);
});

for (int i = 1; i <= totalWeek; i++) {
Cell cell = row.createCell(row.getLastCellNum());
cell.setCellValue(String.format(WEEKLY_ASSIGNMENT, i));
}

for (int i = 1; i <= totalWeek; i++) {
Cell cell = row.createCell(row.getLastCellNum());
cell.setCellValue(String.format(WEEKLY_ATTENDANCE, i));
}
return sheet;
}
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue

헤더 셀 인덱스 관리 방식 개선

setUpStudySheet 메소드에서 헤더를 생성할 때 row.getLastCellNum()을 사용하고 있습니다. 하지만 새로운 행에서 getLastCellNum()은 예상치 못한 값을 반환할 수 있으므로 주의가 필요합니다.

헤더 셀 인덱스를 별도의 변수로 관리하여 정확한 위치에 헤더가 추가되도록 수정하는 것을 권장합니다.

int cellIndex = STUDY_SHEET_HEADER.length;

// 과제 헤더 추가
for (int i = 1; i <= totalWeek; i++) {
    Cell cell = row.createCell(cellIndex++);
    cell.setCellValue(String.format(WEEKLY_ASSIGNMENT, i));
}

// 출석 헤더 추가
for (int i = 1; i <= totalWeek; i++) {
    Cell cell = row.createCell(cellIndex++);
    cell.setCellValue(String.format(WEEKLY_ATTENDANCE, i));
}
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
private Sheet setUpStudySheet(Workbook workbook, String sheetName, long totalWeek) {
Sheet sheet = workbook.createSheet(sheetName);
Row row = sheet.createRow(0);
IntStream.range(0, STUDY_SHEET_HEADER.length).forEach(i -> {
Cell cell = row.createCell(i);
cell.setCellValue(STUDY_SHEET_HEADER[i]);
});
for (int i = 1; i <= totalWeek; i++) {
Cell cell = row.createCell(row.getLastCellNum());
cell.setCellValue(String.format(WEEKLY_ASSIGNMENT, i));
}
for (int i = 1; i <= totalWeek; i++) {
Cell cell = row.createCell(row.getLastCellNum());
cell.setCellValue(String.format(WEEKLY_ATTENDANCE, i));
}
return sheet;
}
private Sheet setUpStudySheet(Workbook workbook, String sheetName, long totalWeek) {
Sheet sheet = workbook.createSheet(sheetName);
Row row = sheet.createRow(0);
IntStream.range(0, STUDY_SHEET_HEADER.length).forEach(i -> {
Cell cell = row.createCell(i);
cell.setCellValue(STUDY_SHEET_HEADER[i]);
});
int cellIndex = STUDY_SHEET_HEADER.length;
// 과제 헤더 추가
for (int i = 1; i <= totalWeek; i++) {
Cell cell = row.createCell(cellIndex++);
cell.setCellValue(String.format(WEEKLY_ASSIGNMENT, i));
}
// 출석 헤더 추가
for (int i = 1; i <= totalWeek; i++) {
Cell cell = row.createCell(cellIndex++);
cell.setCellValue(String.format(WEEKLY_ATTENDANCE, i));
}
return sheet;
}

Comment on lines 65 to 96
private void createStudySheet(Workbook workbook, Study study, List<StudyStudentResponse> content) {
Sheet sheet = setUpStudySheet(workbook, study.getTitle(), study.getTotalWeek());

content.forEach(student -> {
Row studentRow = sheet.createRow(sheet.getLastRowNum() + 1);
studentRow.createCell(0).setCellValue(student.name());
studentRow.createCell(1).setCellValue(student.studentId());
studentRow.createCell(2).setCellValue(student.discordUsername());
studentRow.createCell(3).setCellValue(student.nickname());
studentRow.createCell(4).setCellValue(student.githubLink());
// todo: 수료 여부 추가
studentRow.createCell(5).setCellValue("X");
studentRow.createCell(6).setCellValue(student.isFirstRoundOutstandingStudent() ? "O" : "X");
studentRow.createCell(7).setCellValue(student.isSecondRoundOutstandingStudent() ? "O" : "X");
studentRow.createCell(8).setCellValue(student.attendanceRate());
studentRow.createCell(9).setCellValue(student.assignmentRate());
student.studyTodos().stream()
.filter(StudyTodoResponse::isAssignment)
.forEach(todo -> {
studentRow
.createCell(studentRow.getLastCellNum())
.setCellValue(todo.assignmentSubmissionStatus().getValue());
});
student.studyTodos().stream()
.filter(StudyTodoResponse::isAttendance)
.forEach(todo -> {
studentRow
.createCell(studentRow.getLastCellNum())
.setCellValue(todo.attendanceStatus().getValue());
});
});
}
Copy link

@coderabbitai coderabbitai bot Oct 13, 2024

Choose a reason for hiding this comment

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

⚠️ Potential issue

셀 인덱스 관리 방식 개선 필요

createStudySheet 메소드에서 학생 데이터를 셀에 추가할 때 studentRow.getLastCellNum()을 사용하고 있습니다. 그러나 반복문 내에서 이 메소드를 사용하면 셀 인덱스 관리에 문제가 발생할 수 있습니다.

셀 인덱스를 별도의 변수로 관리하여 데이터가 정확한 위치에 입력되도록 수정하는 것을 권장합니다.

int cellIndex = 5; // 초기 셀 인덱스 설정
// 수료 여부
// TODO: 수료 여부 추가
studentRow.createCell(cellIndex++).setCellValue("X");
studentRow.createCell(cellIndex++).setCellValue(student.isFirstRoundOutstandingStudent() ? "O" : "X");
studentRow.createCell(cellIndex++).setCellValue(student.isSecondRoundOutstandingStudent() ? "O" : "X");
studentRow.createCell(cellIndex++).setCellValue(student.attendanceRate());
studentRow.createCell(cellIndex++).setCellValue(student.assignmentRate());

// 과제 상태 입력
student.studyTodos().stream()
        .filter(StudyTodoResponse::isAssignment)
        .forEach(todo -> {
            studentRow.createCell(cellIndex++)
                    .setCellValue(todo.assignmentSubmissionStatus().getValue());
        });

// 출석 상태 입력
student.studyTodos().stream()
        .filter(StudyTodoResponse::isAttendance)
        .forEach(todo -> {
            studentRow.createCell(cellIndex++)
                    .setCellValue(todo.attendanceStatus().getValue());
        });
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
private void createStudySheet(Workbook workbook, Study study, List<StudyStudentResponse> content) {
Sheet sheet = setUpStudySheet(workbook, study.getTitle(), study.getTotalWeek());
content.forEach(student -> {
Row studentRow = sheet.createRow(sheet.getLastRowNum() + 1);
studentRow.createCell(0).setCellValue(student.name());
studentRow.createCell(1).setCellValue(student.studentId());
studentRow.createCell(2).setCellValue(student.discordUsername());
studentRow.createCell(3).setCellValue(student.nickname());
studentRow.createCell(4).setCellValue(student.githubLink());
// todo: 수료 여부 추가
studentRow.createCell(5).setCellValue("X");
studentRow.createCell(6).setCellValue(student.isFirstRoundOutstandingStudent() ? "O" : "X");
studentRow.createCell(7).setCellValue(student.isSecondRoundOutstandingStudent() ? "O" : "X");
studentRow.createCell(8).setCellValue(student.attendanceRate());
studentRow.createCell(9).setCellValue(student.assignmentRate());
student.studyTodos().stream()
.filter(StudyTodoResponse::isAssignment)
.forEach(todo -> {
studentRow
.createCell(studentRow.getLastCellNum())
.setCellValue(todo.assignmentSubmissionStatus().getValue());
});
student.studyTodos().stream()
.filter(StudyTodoResponse::isAttendance)
.forEach(todo -> {
studentRow
.createCell(studentRow.getLastCellNum())
.setCellValue(todo.attendanceStatus().getValue());
});
});
}
private void createStudySheet(Workbook workbook, Study study, List<StudyStudentResponse> content) {
Sheet sheet = setUpStudySheet(workbook, study.getTitle(), study.getTotalWeek());
content.forEach(student -> {
Row studentRow = sheet.createRow(sheet.getLastRowNum() + 1);
studentRow.createCell(0).setCellValue(student.name());
studentRow.createCell(1).setCellValue(student.studentId());
studentRow.createCell(2).setCellValue(student.discordUsername());
studentRow.createCell(3).setCellValue(student.nickname());
studentRow.createCell(4).setCellValue(student.githubLink());
int cellIndex = 5; // 초기 셀 인덱스 설정
// 수료 여부
// TODO: 수료 여부 추가
studentRow.createCell(cellIndex++).setCellValue("X");
studentRow.createCell(cellIndex++).setCellValue(student.isFirstRoundOutstandingStudent() ? "O" : "X");
studentRow.createCell(cellIndex++).setCellValue(student.isSecondRoundOutstandingStudent() ? "O" : "X");
studentRow.createCell(cellIndex++).setCellValue(student.attendanceRate());
studentRow.createCell(cellIndex++).setCellValue(student.assignmentRate());
// 과제 상태 입력
student.studyTodos().stream()
.filter(StudyTodoResponse::isAssignment)
.forEach(todo -> {
studentRow.createCell(cellIndex++)
.setCellValue(todo.assignmentSubmissionStatus().getValue());
});
// 출석 상태 입력
student.studyTodos().stream()
.filter(StudyTodoResponse::isAttendance)
.forEach(todo -> {
studentRow.createCell(cellIndex++)
.setCellValue(todo.attendanceStatus().getValue());
});
});
}

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

Choose a reason for hiding this comment

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

@uwoobeat 안녕하세요, 말씀하신 부분 확인했습니다. createMemberSheetByRole 메소드에서도 셀 인덱스 관리를 개선할 수 있습니다. 현재 해당 메소드에서는 셀 인덱스를 하드코딩하고 있는데, cellIndex 변수를 사용하여 관리하면 유지보수성과 가독성을 향상시킬 수 있습니다. 아래와 같이 수정해보실 수 있습니다:

private void createMemberSheetByRole(Workbook workbook, String sheetName, @Nullable MemberRole role) {
    Sheet sheet = setUpMemberSheet(workbook, sheetName);

    memberRepository.findAllByRole(role).forEach(member -> {
        Row memberRow = sheet.createRow(sheet.getLastRowNum() + 1);
        int cellIndex = 0;
        memberRow.createCell(cellIndex++).setCellValue(member.getCreatedAt().toString());
        memberRow.createCell(cellIndex++).setCellValue(member.getName());
        memberRow.createCell(cellIndex++).setCellValue(member.getStudentId());
        memberRow.createCell(cellIndex++)
                .setCellValue(Optional.ofNullable(member.getDepartment())
                        .map(Department::getDepartmentName)
                        .orElse(""));
        memberRow.createCell(cellIndex++).setCellValue(member.getPhone());
        memberRow.createCell(cellIndex++).setCellValue(member.getEmail());
        memberRow.createCell(cellIndex++).setCellValue(member.getDiscordUsername());
        memberRow.createCell(cellIndex++).setCellValue(member.getNickname());
    });
}

이렇게 수정하면 셀 인덱스를 일관성 있게 관리할 수 있어 코드의 신뢰성을 높일 수 있습니다. 확인 부탁드립니다.

@@ -208,4 +200,65 @@ private void updateAllStudyDetailCurriculum(
studyDetailRepository.saveAll(studyDetails);
log.info("[MentorStudyService] 스터디 상세정보 커리큘럼 작성 완료: studyDetailId={}", studyDetails);
}

@Transactional(readOnly = true)
public byte[] createStudyExcel(Long studyId) throws IOException {
Copy link

@coderabbitai coderabbitai bot Oct 13, 2024

Choose a reason for hiding this comment

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

⚠️ Potential issue

IOException 처리 방식 개선 필요

createStudyExcel 메서드에서 IOException을 throws하고 있습니다. 서비스 계층에서는 체크 예외를 직접 throws하기보다는 내부에서 처리하거나 적절한 런타임 예외로 변환하는 것이 좋습니다. IOException을 catch하여 CustomException으로 래핑하면 클라이언트가 에러를 더 명확히 이해할 수 있습니다.

수정 제안:

- public byte[] createStudyExcel(Long studyId) throws IOException {
+ public byte[] createStudyExcel(Long studyId) {

예외 처리 추가:

try {
    return excelUtil.createStudyExcel(study, content);
} catch (IOException e) {
    throw new CustomException(FILE_CREATION_FAILED, e);
}

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

Choose a reason for hiding this comment

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

@uwoobeat 네, 확인하였습니다. 제안드린 사항을 검토해주셔서 감사합니다.

((
( ^.^)
o(_(")(")

Comment on lines +221 to +238
studyHistories.forEach(studyHistory -> {
List<StudyAchievement> currentStudyAchievements =
studyAchievementMap.getOrDefault(studyHistory.getStudent().getId(), new ArrayList<>());
List<Attendance> currentAttendances =
attendanceMap.getOrDefault(studyHistory.getStudent().getId(), new ArrayList<>());
List<AssignmentHistory> currentAssignmentHistories =
assignmentHistoryMap.getOrDefault(studyHistory.getStudent().getId(), new ArrayList<>());

List<StudyTodoResponse> studyTodos = new ArrayList<>();
studyDetails.forEach(studyDetail -> {
studyTodos.add(StudyTodoResponse.createAttendanceType(
studyDetail, LocalDate.now(), isAttended(currentAttendances, studyDetail)));
studyTodos.add(StudyTodoResponse.createAssignmentType(
studyDetail, getSubmittedAssignment(currentAssignmentHistories, studyDetail)));
});

content.add(StudyStudentResponse.of(studyHistory, currentStudyAchievements, studyTodos));
});
Copy link

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

스트림 API 활용으로 코드 간결화 가능

studyHistories를 순회하며 StudyStudentResponse를 생성하는 부분에서 스트림 API를 활용하면 코드를 더욱 간결하게 표현할 수 있습니다.

예시 수정안:

List<StudyStudentResponse> content = studyHistories.stream().map(studyHistory -> {
    List<StudyAchievement> currentStudyAchievements =
            studyAchievementMap.getOrDefault(studyHistory.getStudent().getId(), new ArrayList<>());
    List<Attendance> currentAttendances =
            attendanceMap.getOrDefault(studyHistory.getStudent().getId(), new ArrayList<>());
    List<AssignmentHistory> currentAssignmentHistories =
            assignmentHistoryMap.getOrDefault(studyHistory.getStudent().getId(), new ArrayList<>());

    List<StudyTodoResponse> studyTodos = studyDetails.stream().flatMap(studyDetail -> Stream.of(
            StudyTodoResponse.createAttendanceType(
                    studyDetail, LocalDate.now(), isAttended(currentAttendances, studyDetail)),
            StudyTodoResponse.createAssignmentType(
                    studyDetail, getSubmittedAssignment(currentAssignmentHistories, studyDetail))
    )).collect(Collectors.toList());

    return StudyStudentResponse.of(studyHistory, currentStudyAchievements, studyTodos);
}).collect(Collectors.toList());

Comment on lines +243 to +263
private Map<Long, List<StudyAchievement>> getStudyAchievementMap(Long studyId, List<Long> studentIds) {
List<StudyAchievement> studyAchievements =
studyAchievementRepository.findByStudyIdAndMemberIds(studyId, studentIds);
return studyAchievements.stream()
.collect(groupingBy(
studyAchievement -> studyAchievement.getStudent().getId()));
}

private Map<Long, List<Attendance>> getAttendanceMap(Long studyId, List<Long> studentIds) {
List<Attendance> attendances = attendanceRepository.findByStudyIdAndMemberIds(studyId, studentIds);
return attendances.stream()
.collect(groupingBy(attendance -> attendance.getStudent().getId()));
}

private Map<Long, List<AssignmentHistory>> getAssignmentHistoryMap(Long studyId, List<Long> studentIds) {
List<AssignmentHistory> assignmentHistories =
assignmentHistoryRepository.findByStudyIdAndMemberIds(studyId, studentIds);
return assignmentHistories.stream()
.collect(groupingBy(
assignmentHistory -> assignmentHistory.getMember().getId()));
}
Copy link

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

유사한 메서드들의 중복 제거 고려

getStudyAchievementMap, getAttendanceMap, getAssignmentHistoryMap 메서드들이 유사한 로직을 가지고 있습니다. 제네릭을 활용하거나 공통 메서드로 추출하여 중복을 줄일 수 있습니다.

예시 수정안:

private <T, R> Map<Long, List<T>> getEntityMap(Long studyId, List<Long> studentIds,
                                               BiFunction<Long, List<Long>, List<T>> repositoryMethod,
                                               Function<T, R> groupingFunction) {
    List<T> entities = repositoryMethod.apply(studyId, studentIds);
    return entities.stream()
            .collect(groupingBy(entity -> groupingFunction.apply(entity).getId()));
}

// 활용 예시
private Map<Long, List<StudyAchievement>> getStudyAchievementMap(Long studyId, List<Long> studentIds) {
    return getEntityMap(studyId, studentIds,
            studyAchievementRepository::findByStudyIdAndMemberIds,
            studyAchievement -> studyAchievement.getStudent());
}

private Map<Long, List<Attendance>> getAttendanceMap(Long studyId, List<Long> studentIds) {
    return getEntityMap(studyId, studentIds,
            attendanceRepository::findByStudyIdAndMemberIds,
            attendance -> attendance.getStudent());
}

private Map<Long, List<AssignmentHistory>> getAssignmentHistoryMap(Long studyId, List<Long> studentIds) {
    return getEntityMap(studyId, studentIds,
            assignmentHistoryRepository::findByStudyIdAndMemberIds,
            assignmentHistory -> assignmentHistory.getMember());
}

Copy link
Member

@kckc0608 kckc0608 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

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

미리 승인해두겠습니다

@@ -208,4 +200,65 @@ private void updateAllStudyDetailCurriculum(
studyDetailRepository.saveAll(studyDetails);
log.info("[MentorStudyService] 스터디 상세정보 커리큘럼 작성 완료: studyDetailId={}", studyDetails);
}

@Transactional(readOnly = true)
public byte[] createStudyExcel(Long studyId) throws IOException {
Copy link
Member

Choose a reason for hiding this comment

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

이거 체크해보시면 좋을듯 합니다

Comment on lines 65 to 96
private void createStudySheet(Workbook workbook, Study study, List<StudyStudentResponse> content) {
Sheet sheet = setUpStudySheet(workbook, study.getTitle(), study.getTotalWeek());

content.forEach(student -> {
Row studentRow = sheet.createRow(sheet.getLastRowNum() + 1);
studentRow.createCell(0).setCellValue(student.name());
studentRow.createCell(1).setCellValue(student.studentId());
studentRow.createCell(2).setCellValue(student.discordUsername());
studentRow.createCell(3).setCellValue(student.nickname());
studentRow.createCell(4).setCellValue(student.githubLink());
// todo: 수료 여부 추가
studentRow.createCell(5).setCellValue("X");
studentRow.createCell(6).setCellValue(student.isFirstRoundOutstandingStudent() ? "O" : "X");
studentRow.createCell(7).setCellValue(student.isSecondRoundOutstandingStudent() ? "O" : "X");
studentRow.createCell(8).setCellValue(student.attendanceRate());
studentRow.createCell(9).setCellValue(student.assignmentRate());
student.studyTodos().stream()
.filter(StudyTodoResponse::isAssignment)
.forEach(todo -> {
studentRow
.createCell(studentRow.getLastCellNum())
.setCellValue(todo.assignmentSubmissionStatus().getValue());
});
student.studyTodos().stream()
.filter(StudyTodoResponse::isAttendance)
.forEach(todo -> {
studentRow
.createCell(studentRow.getLastCellNum())
.setCellValue(todo.attendanceStatus().getValue());
});
});
}
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

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

@Sangwook02 Sangwook02 merged commit 53f6967 into develop Oct 14, 2024
1 check passed
@Sangwook02 Sangwook02 deleted the feature/787-download-study-excel branch November 1, 2024 06:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨ feature 새로운 기능 추가 및 수정
Projects
None yet
Development

Successfully merging this pull request may close these issues.

✨ 스터디원 엑셀 다운로드 API 추가
3 participants