-
Notifications
You must be signed in to change notification settings - Fork 1
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
[BE]: spot table 수정 #374
Merged
Merged
[BE]: spot table 수정 #374
Conversation
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
spotSong(Nullable) 추가
photo table 분리에 따른 photo 데이터 저장 dto 생성
repository 방식 변경 custom repository 사용 안함 user save 로직 수정 기존 user가 있는지 확인 후 있으면 예외처리 없으면 그대로 저장
journeyV2, spotV2, photo entity 추가 및 custom repository 사용 안함
인터셉터를 활용한 여러개의 파일 저장 로직 생성 custom repository 사용 안함
spot 저장 router 변경에 따른 비지니스 로직 이동 (POST /spot -> POST /journey/:journeyId/spot) custom repository 사용 안함
기존 : linestring 자체의 길이를 측정하는 문제가 발생 해결 : ','로 나눈 배열의 길이를 측정하는 것으로 위치 좌표 수를 측정
기존 : get을 했을 때 에러가 발생 spot의 photo를 따로 나눈는 과정에서 변경사항을 조회 알고리즘에 적용하지 않아 dto로 parse하는 과정에서 key가 없다는 에러가 발생 해결 : typeorm의 relations 기능을 통해 journey와 spot 또 spot과 photo를 연결한 데이터를 출력하고 응답 dto에 맞게 변환해주는 함수를 수정
기존 : spot의 photo가 분리됨에 따른 변경사항이 비지니스 로직에 미적용 문제 발생 수정 후 : 조회 시 join을 spot과 photo까지 연결하여 전체 데이터를 불러올 수 있도록 수정
console.log 제거
…table-and-modift-logic [BE] ✨ : spot 테이블 변경 및 관련 비지니스 로직 수정
수정 전 : journeyId/date.now/idx 수정 후 : spotId/date.now/idx spot에 복수개의 photo를 저장할 수 있도록하기에 spot을 path로 지정하는게 더 좋다고 판단 또한 spot에 photo를 저장하는 로직의 경우 journeyId가 없고 spotId가 있어 추후 photo 추가 api를 위해 변경
spot/{spotId}/photo 해당 spot에 복수개의 photo를 저장할 수 있도록 구현
photo/{photoId} photoId에 해당하는 데이터를 삭제하는 api 구현
…_delete-api Be/task/append photo add delete api
수정 전 : POST journey/ 수정 후 : POST user/{userId}/journey
수정 전 : 데이터 저장만 수행 수정 후 : 해당하는 user가 있는지 확인 후 예외처리
수정 전 : user/{userId}/journey 수정 후 : user/{userId}/journey/start
수정 전 : journey/end 수정 후 : journey/{journeyId}/end
수정 전 : GET journey?userId&minCoordinate&maxCoordinate 수정 후 :GET user/{userId}/journey?minCoordinate&maxCoordinate
수정 전 : GET journey/last 수정 후 :GET user/{userId}/journey/last
수정 전: 기록 중인 journey가 있다면 오류 발생 수정 후: 기록 중인 journey가 있다면(title=null) 데이터 조회 시 is not null을 이용해 필터를 적용하여 데이터 조회 동작
수정 전: 1대다 관계에서 삭제를 진행하면 foreign key에 의해 delete 동작이 오률를 발생함 수정 후: entity에서 casecade를 적용 및 mysql 데이터베이스에서 delete 명령을 restrict에서 casecade로 수정
…and-dto [BE] ✨ : api path 변경
11 tasks
11 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
❗ 배경
🔧 작업 내역
#370
#371
#373
#374
📝 리뷰 노트
📸 스크린샷