-
Notifications
You must be signed in to change notification settings - Fork 248
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
3단계 - 수강신청(DB 적용) #647
Open
yunji1201
wants to merge
5
commits into
next-step:yunji1201
Choose a base branch
from
yunji1201:step3
base: yunji1201
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
3단계 - 수강신청(DB 적용) #647
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
64634ad
refactor : 2단계 코멘트를 바탕으로 리팩토링 진행 (이너클래스 수정, 접근 제어자 수정)
yunji1201 11ca7b1
feat : 이미지 CRUD 및 테스트 코드 추가
yunji1201 8f0c531
feat : 강의 CRUD 및 테스트 코드 추가
yunji1201 5e18079
refactor : schema에서 foreign key 제거하기
yunji1201 630f407
refactor : 이미지에서의 session_id 제거
yunji1201 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/main/java/nextstep/courses/domain/ImageRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package nextstep.courses.domain; | ||
|
||
public interface ImageRepository { | ||
int save(Image image); | ||
|
||
Image findById(Long id); | ||
|
||
int update(Image image); | ||
|
||
int deleteById(Long id); | ||
} |
This file was deleted.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
src/main/java/nextstep/courses/domain/SessionRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package nextstep.courses.domain; | ||
|
||
import nextstep.courses.domain.session.Session; | ||
|
||
public interface SessionRepository { | ||
int save(Session session); | ||
|
||
Session findById(Long id); | ||
|
||
int update(Session session); | ||
|
||
int deleteById(Long id); | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/java/nextstep/courses/domain/session/FreeSession.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package nextstep.courses.domain.session; | ||
|
||
import nextstep.courses.constants.SessionStatus; | ||
import nextstep.courses.domain.Image; | ||
|
||
import java.time.LocalDate; | ||
|
||
public class FreeSession extends Session { | ||
public FreeSession(Long courseId, String title, LocalDate startDate, LocalDate endDate, Image sessionImage) { | ||
super(courseId, title, startDate, endDate, sessionImage, SessionStatus.READY); | ||
} | ||
|
||
@Override | ||
public void enroll(int payment) { | ||
if (status != SessionStatus.OPEN) { | ||
throw new IllegalStateException("수강 신청은 모집중인 상태에서만 가능합니다."); | ||
} | ||
enrollCount++; | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
src/main/java/nextstep/courses/domain/session/PaidSession.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package nextstep.courses.domain.session; | ||
|
||
import nextstep.courses.constants.SessionStatus; | ||
import nextstep.courses.domain.Image; | ||
|
||
import java.time.LocalDate; | ||
|
||
public class PaidSession extends Session { | ||
private int maxEnrollment; | ||
private int sessionFee; | ||
|
||
public abstract class Session { | ||
protected Long courseId; | ||
|
||
public Session(Long courseId, String title, LocalDate startDate, LocalDate endDate, Image sessionImage, SessionStatus status) { | ||
this.courseId = courseId; | ||
} | ||
} | ||
|
||
public PaidSession(Long courseId, String title, LocalDate startDate, LocalDate endDate, Image sessionImage, int maxEnrollment, int sessionFee) { | ||
super(courseId, title, startDate, endDate, sessionImage, SessionStatus.READY); | ||
this.maxEnrollment = maxEnrollment; | ||
this.sessionFee = sessionFee; | ||
} | ||
|
||
@Override | ||
public void enroll(int payment) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 요거는 꼭 그래야되는 건 아닌데, 유효성검사의 책임을 다른 클래스로 위임하는건 어떨까요 ? |
||
if (status != SessionStatus.OPEN) { | ||
throw new IllegalStateException("수강 신청은 모집중인 상태에서만 가능합니다."); | ||
} | ||
if (enrollCount >= maxEnrollment) { | ||
throw new IllegalStateException("수강 인원이 초과되었습니다."); | ||
} | ||
if (payment != sessionFee) { | ||
throw new IllegalArgumentException("결제 금액이 수강료와 일치하지 않습니다."); | ||
} | ||
enrollCount++; | ||
} | ||
|
||
public int getSessionFee() { | ||
return sessionFee; | ||
} | ||
} |
93 changes: 93 additions & 0 deletions
93
src/main/java/nextstep/courses/domain/session/Session.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
package nextstep.courses.domain.session; | ||
|
||
import nextstep.courses.constants.SessionStatus; | ||
import nextstep.courses.domain.Image; | ||
|
||
import java.time.LocalDate; | ||
import java.time.temporal.ChronoUnit; | ||
|
||
public abstract class Session { | ||
protected Long id; | ||
protected Long courseId; | ||
protected String title; | ||
protected LocalDate startDate; | ||
protected LocalDate endDate; | ||
protected Image sessionImage; | ||
protected int enrollCount; | ||
protected SessionStatus status; | ||
|
||
public Session(Long courseId, String title, LocalDate startDate, LocalDate endDate, Image sessionImage, SessionStatus status) { | ||
validateDate(startDate, endDate); | ||
this.courseId = courseId; | ||
this.title = title; | ||
this.startDate = startDate; | ||
this.endDate = endDate; | ||
this.sessionImage = sessionImage; | ||
this.status = status; | ||
this.enrollCount = 0; | ||
} | ||
|
||
public Session(String title, LocalDate startDate, LocalDate endDate, Image sessionImage, SessionStatus status) { | ||
this(null, title, startDate, endDate, sessionImage, status); | ||
} | ||
|
||
private void validateDate(LocalDate startDate, LocalDate endDate) { | ||
if (startDate.isAfter(endDate)) { | ||
throw new IllegalArgumentException("시작일은 종료일 이전이어야 합니다."); | ||
} | ||
} | ||
|
||
public void startEnrollment() { | ||
this.status = SessionStatus.OPEN; | ||
} | ||
|
||
public void closeEnrollment() { | ||
this.status = SessionStatus.CLOSED; | ||
} | ||
|
||
public abstract void enroll(int payment); | ||
|
||
public int getEnrolledCount() { | ||
return enrollCount; | ||
} | ||
|
||
public Long getId() { | ||
return id; | ||
} | ||
|
||
public Long getCourseId() { | ||
return courseId; | ||
} | ||
|
||
public String getTitle() { | ||
return title; | ||
} | ||
|
||
public void setTitle(String title) { | ||
this.title = title; | ||
} | ||
|
||
public long getDuration() { | ||
return ChronoUnit.DAYS.between(startDate, endDate); | ||
} | ||
|
||
public LocalDate getStartTime() { | ||
return this.startDate; | ||
} | ||
|
||
public LocalDate getEndTime() { | ||
return this.endDate; | ||
} | ||
|
||
public void setId(long id) { | ||
this.id = id; | ||
} | ||
|
||
public Image getSessionImage() { | ||
return sessionImage; | ||
} | ||
|
||
public void setSessionImage(Image sessionImage) { | ||
this.sessionImage = sessionImage; | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
필드를 굳이 구현체에 따라 나눌 필요가 있을까요 ? 디비상으로는 무료강의도 값을 가지고 있긴 할텐데요!