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 구현 #31

Merged
merged 10 commits into from
Jan 8, 2024
Merged

[feat] 여행 생성 API 구현 #31

merged 10 commits into from
Jan 8, 2024

Conversation

gardening-y
Copy link
Member

@gardening-y gardening-y commented Jan 8, 2024

Related Issue 📌

close #27

Description ✔️

  • TripService에 Trip과 Participant를 생성하는 비즈니스 로직을 구현하였습니다. getUser를 통해 User 검증을 하고, 가져온 User에 해당하는 Participant를 생성할 수 있도록 설계하였으며, UUID를 통해 랜덤으로 6자리 코드를 생성하여 Trip을 생성하도록 했습니다. 이전에 중복되는 코드를 사용하면 안되기에 중복 검증 메서드를 통해 코드를 생성할 수 있도록 do-while문을 사용해줬습니다. 또한, Trip에 endDate가 startDate보다 빠르거나 endDate가 오늘 날짜보다 빠른 경우를 검증하도록 구현했습니다.
  • 여행 생성 요청, 응답 dto로 TripCreateRequest, TripCreateResponse를 구현하였습니다.
  • TripController 클래스를 구현하였습니다.
  • TripRepository, ParticipantRepository 클래스를 구현하였습니다.
  • 여행 생성 메서드와 참가자 생성 메서드를 구현하였습니다.

# Conflicts:
#	doorip-api/src/main/java/org/doorip/trip/api/TripApiController.java
#	doorip-api/src/main/java/org/doorip/trip/service/TripService.java
#	doorip-common/src/main/java/org/doorip/message/ErrorMessage.java
#	doorip-domain/src/main/java/org/doorip/trip/domain/Participant.java
#	doorip-domain/src/main/java/org/doorip/trip/domain/Trip.java
#	doorip-domain/src/main/java/org/doorip/trip/repository/TripRepository.java
Copy link
Member

@SunwoongH SunwoongH left a comment

Choose a reason for hiding this comment

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

고생하셨습니다.

@gardening-y gardening-y merged commit 32d2c81 into develop Jan 8, 2024
1 check passed
@SunwoongH SunwoongH deleted the feature/27 branch July 11, 2024 04:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[feat] 여행 생성 API 구현
2 participants