-
Notifications
You must be signed in to change notification settings - Fork 0
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
๐ :: (Meogo-48) modify my page #49
Conversation
Walkthrough์ด ๋ณ๊ฒฝ ์ฌํญ์ Changes
Possibly related PRs
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? ๐ชง TipsChatThere are 3 ways to chat with CodeRabbit:
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)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
Actionable comments posted: 9
๐งน Outside diff range and nitpick comments (3)
src/main/kotlin/org/meogo/domain/user/service/QueryMyPageService.kt (1)
10-10
: ํด๋์ค ์ด๋ฆ ๋ณ๊ฒฝ์ด ์ ์ ํฉ๋๋ค.ํด๋์ค ์ด๋ฆ์
MyPageService
์์QueryMyPageService
๋ก ๋ณ๊ฒฝํ ๊ฒ์ CQRS ํจํด์ Query ๋ถ๋ถ๊ณผ ์ผ์นํ์ฌ ์ข์ ๋ณ๊ฒฝ์ ๋๋ค. ์ด๋ ์๋น์ค์ ๋ชฉ์ ์ ๋ ๋ช ํํ ๋ํ๋ ๋๋ค.ํ๋์ ์์ ๊ฐ์ ์ฌํญ์ ์ ์๋๋ฆฝ๋๋ค:
execute()
๋ฉ์๋์์userFacade.currentUser()
์ ๊ฒฐ๊ณผ๋ฅผ ์ฒ๋ฆฌํ ๋, ์๋น์ค ์ฐ์ฐ์(?:
) ๋์requireNotNull()
์ ์ฌ์ฉํ๋ ๊ฒ์ด ๋ ๋ช ์์ ์ผ ์ ์์ต๋๋ค. ์ด๋ ๊ฒ ํ๋ฉด ์ฝ๋์ ์๋๊ฐ ๋ ๋ช ํํด์ง๋๋ค.fun execute(): MyPageResponse { val user = requireNotNull(userFacade.currentUser()) { "User not found" } return MyPageResponse( user.name, user.accountId, user.enrolledSchool, user.profile ) }์ด ๋ณ๊ฒฝ์ ์ ํ์ฌํญ์ด๋ฉฐ, ํ์ฌ ๊ตฌํ๋ ์ถฉ๋ถํ ๋ช ํํ๊ณ ํจ๊ณผ์ ์ ๋๋ค.
src/main/kotlin/org/meogo/domain/user/facade/UserFacade.kt (1)
currentUser
๋ฉ์๋ ์ฌ์ฉ ์ ์์ ํ null ์ฒ๋ฆฌ ํ์
currentUser
๋ฉ์๋๊ฐ nullable ํ์ ์ ๋ฐํํ๋ฏ๋ก, ์ผ๋ถ ์๋น์ค ํด๋์ค์์!!
์ฐ์ฐ์๋ฅผ ์ฌ์ฉํ์ฌ ๊ฐ์ ๋ก ์ธ๋ํํ๊ณ ์์ต๋๋ค. ์ด๋NullPointerException
์ ์ ๋ฐํ ์ ์์ผ๋ฏ๋ก, ๋ค์ ํ์ผ๋ค์์ null ์ฒ๋ฆฌ๋ฅผ ์์ ํ๊ฒ ๊ตฌํํ๋๋ก ์์ ์ด ํ์ํฉ๋๋ค:
src/main/kotlin/org/meogo/domain/comment/service/DeleteCommentService.kt
src/main/kotlin/org/meogo/domain/post/service/DeletePostService.kt
๐ Analysis chain
Line range hint
15-18
:currentUser
๋ฉ์๋ ๊ฒํ ํ์
getUserByAccountId
๋ฉ์๋๊ฐ ์ด์ nullable ํ์ ์ ๋ฐํํ๋ฏ๋ก,currentUser
๋ฉ์๋์ ๊ตฌํ์ ๊ฒํ ํด์ผ ํฉ๋๋ค.
currentUser
๋ฉ์๋๋ ์ฌ์ ํUser?
๋ฅผ ๋ฐํํ๊ณ ์์ด ํ์ ์ธก๋ฉด์์๋ ๋ฌธ์ ๊ฐ ์์ต๋๋ค.- ํ์ง๋ง
getUserByAccountId
์ ๋ณ๊ฒฝ์ผ๋ก ์ธํดcurrentUser
๋ฉ์๋์ ๋์์ด ์๋ํ ๋๋ก์ธ์ง ํ์ธ์ด ํ์ํฉ๋๋ค.- null ์ฒ๋ฆฌ ๋ก์ง์ด ์ ์ ํ์ง ๊ฒํ ํ๊ณ , ํ์ํ๋ค๋ฉด ์ถ๊ฐ์ ์ธ null ์ฒดํฌ๋ฅผ ๊ณ ๋ คํด๋ณด์ธ์.
currentUser
๋ฉ์๋์ ํธ์ถ ์ง์ ๋ค์ ํ์ธํ์ฌ null ์ฒ๋ฆฌ๊ฐ ์ ์ ํ ์ด๋ฃจ์ด์ง๊ณ ์๋์ง ๊ฒ์ฆํด ๋ณด์ธ์. ๋ค์ ์คํฌ๋ฆฝํธ๋ฅผ ์คํํ์ฌcurrentUser
์ ์ฌ์ฉ ํจํด์ ํ์ธํ ์ ์์ต๋๋ค:๐ Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Find usages of currentUser() method rg --type kotlin "\.currentUser\(\)" -A 5Length of output: 14407
src/main/kotlin/org/meogo/domain/user/presentation/UserController.kt (1)
32-33
: ์์กด์ฑ ์ฃผ์ ์ด ์ ์ ํ ์ ๋ฐ์ดํธ๋์์ต๋๋ค.์๋ก์ด ์๋น์ค ํด๋์ค๋ค์ด ์ฌ๋ฐ๋ฅด๊ฒ ์ฃผ์ ๋์์ต๋๋ค. ์ด๋ ์ปจํธ๋กค๋ฌ ๋ฉ์๋์ ๋ณ๊ฒฝ ์ฌํญ๊ณผ ์ผ์นํฉ๋๋ค.
๊ฐ๋ ์ฑ ํฅ์์ ์ํด ์์กด์ฑ ์ฃผ์ ์์๋ฅผ ์ํ๋ฒณ ์์ผ๋ก ์ ๋ ฌํ๋ ๊ฒ์ ๊ณ ๋ คํด ๋ณด์ธ์. ์๋ฅผ ๋ค์ด:
class UserController( private val checkAccountIdService: CheckAccountIdService, private val modifyUserInfoService: ModifyUserInfoService, private val queryMyPageService: QueryMyPageService, private val userSignInService: UserSignInService, private val userSignUpService: UserSignUpService ) { // ... }
๐ Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
๐ Files selected for processing (8)
- src/main/kotlin/org/meogo/domain/user/domain/User.kt (1 hunks)
- src/main/kotlin/org/meogo/domain/user/domain/UserRepository.kt (1 hunks)
- src/main/kotlin/org/meogo/domain/user/facade/UserFacade.kt (1 hunks)
- src/main/kotlin/org/meogo/domain/user/presentation/UserController.kt (3 hunks)
- src/main/kotlin/org/meogo/domain/user/presentation/dto/request/UserModifyRequest.kt (1 hunks)
- src/main/kotlin/org/meogo/domain/user/service/ModifyUserInfoService.kt (2 hunks)
- src/main/kotlin/org/meogo/domain/user/service/QueryMyPageService.kt (1 hunks)
- src/main/kotlin/org/meogo/domain/user/service/UserSignInService.kt (0 hunks)
๐ค Files with no reviewable changes (1)
- src/main/kotlin/org/meogo/domain/user/service/UserSignInService.kt
๐งฐ Additional context used
๐ Additional comments (7)
src/main/kotlin/org/meogo/domain/user/presentation/dto/request/UserModifyRequest.kt (1)
1-6
: ์ ๋ฐ์ ์ธ ๊ตฌ์กฐ์ ๋ช ๋ช ์ด ์ ์ ํฉ๋๋ค.๋ฐ์ดํฐ ํด๋์ค์ ์ฌ์ฉ๊ณผ ์์ฑ ์ด๋ฆ์ด ๋ช ํํ๊ณ ์ดํดํ๊ธฐ ์ฝ์ต๋๋ค. DTO๋ก์์ ์ญํ ์ ์ ์ํํ ๊ฒ์ผ๋ก ๋ณด์ ๋๋ค.
src/main/kotlin/org/meogo/domain/user/domain/User.kt (2)
15-15
:name
์์ฑ์ ๊ฐ๋ณ์ฑ ๋ณ๊ฒฝ์ ๋ํ ๊ณ ๋ ค ํ์
name
์์ฑ์val
์์var
๋ก ๋ณ๊ฒฝํ๋ฉด ๊ฐ์ฒด์ ์ํ๊ฐ ๋ณ๊ฒฝ ๊ฐ๋ฅํด์ง๋๋ค. ์ด๋ ์๋๋ ๋ณ๊ฒฝ์ด์ง๋ง, ๋ค์ ์ฌํญ์ ๊ณ ๋ คํด์ผ ํฉ๋๋ค:
- ์ค๋ ๋ ์์ ์ฑ: ์ฌ๋ฌ ์ค๋ ๋์์ ๋์์ ์ด ์์ฑ์ ์ ๊ทผํ ๊ฒฝ์ฐ ๋๊ธฐํ ๋ฌธ์ ๊ฐ ๋ฐ์ํ ์ ์์ต๋๋ค.
- ๋ถ๋ณ์ฑ ์์ค: ๊ฐ์ฒด์ ์ผ๊ด์ฑ์ ์ ์งํ๊ธฐ ์ด๋ ค์์ง ์ ์์ต๋๋ค.
- ์์ธก ๊ฐ๋ฅ์ฑ ๊ฐ์: ๊ฐ์ฒด์ ์ํ๊ฐ ์ธ์ ๋ ๋ณ๊ฒฝ๋ ์ ์์ด ์ฝ๋์ ์์ธก ๊ฐ๋ฅ์ฑ์ด ๋ฎ์์ง ์ ์์ต๋๋ค.
์ด๋ฌํ ๋ณ๊ฒฝ์ด ํ์ํ ์ด์ ์ ์ ์ฌ์ ์ธ ์ํฅ์ ํ๊ณผ ๋ ผ์ํ๋ ๊ฒ์ด ์ข์ต๋๋ค.
#!/bin/bash # ๋ค๋ฅธ ํ์ผ์์ User ๊ฐ์ฒด์ name ์์ฑ์ ์ง์ ๋ณ๊ฒฝํ๋ ์ฝ๋๊ฐ ์๋์ง ํ์ธ rg --type kotlin 'user\.name\s*=' -g '!**/User.kt'
23-23
:enrolledSchool
์์ฑ์ ๊ฐ๋ณ์ฑ ๋ณ๊ฒฝ์ ๋ํ ๊ฒํ ํ์
enrolledSchool
์์ฑ์val
์์var
๋ก ๋ณ๊ฒฝํ ๊ฒ์name
์์ฑ๊ณผ ์ ์ฌํ ์ํฅ์ ๋ฏธ์นฉ๋๋ค:
- ์ค๋ ๋ ์์ ์ฑ: ๋ฉํฐ์ค๋ ๋ ํ๊ฒฝ์์ ๋๊ธฐํ ์ด์๊ฐ ๋ฐ์ํ ์ ์์ต๋๋ค.
- ๋ถ๋ณ์ฑ ์์ค: ๊ฐ์ฒด์ ์ผ๊ด์ฑ ์ ์ง๊ฐ ๋ ์ด๋ ค์์ง ์ ์์ต๋๋ค.
- ์์ธก ๊ฐ๋ฅ์ฑ ๊ฐ์: ๊ฐ์ฒด์ ์ํ ๋ณ๊ฒฝ์ด ๋ ์์ ๋ก์์ ธ ์ฝ๋์ ์์ธก์ด ์ด๋ ค์์ง ์ ์์ต๋๋ค.
๋ํ,
enrolledSchool
์ดInt?
ํ์ ์ด๋ฉฐ ๊ธฐ๋ณธ๊ฐ์ด 0์ธ ๊ฒ์ ๋ํด ๊ณ ๋ คํด ๋ณด์์ผ ํฉ๋๋ค. 0์ด ์ ํจํ ๊ฐ์ธ์ง, ์๋๋ฉดnull
์ ์ฌ์ฉํ๋ ๊ฒ์ด ๋ ์ ์ ํ์ง ๊ฒํ ๊ฐ ํ์ํฉ๋๋ค.์ด ๋ณ๊ฒฝ์ ํ์์ฑ๊ณผ ์ ์ฌ์ ์ํฅ์ ๋ํด ํ ๋ด์์ ๋ ผ์ํ๋ ๊ฒ์ด ์ข์ต๋๋ค.
โ Verification successful
enrolledSchool
์์ฑ ๋ณ๊ฒฝ ๊ฒ์ฆ ์๋ฃ๋ณ๊ฒฝ ์ฌํญ์ ํ์ธํ ๊ฒฐ๊ณผ, ๋ค๋ฅธ ํ์ผ์์
enrolledSchool
์์ฑ์ ์ง์ ๋ณ๊ฒฝํ๋ ์ฝ๋๋ ๋ฐ๊ฒฌ๋์ง ์์์ต๋๋ค. ๋ฐ๋ผ์,enrolledSchool
์var
๋ก ๋ณ๊ฒฝํ๋ ๋ฐ ๋ฐ๋ฅธ ์ธ๋ถ ์ํฅ์ ์์์ ํ์ธํ์ต๋๋ค.๐ Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # ๋ค๋ฅธ ํ์ผ์์ User ๊ฐ์ฒด์ enrolledSchool ์์ฑ์ ์ง์ ๋ณ๊ฒฝํ๋ ์ฝ๋๊ฐ ์๋์ง ํ์ธ rg --type kotlin 'user\.enrolledSchool\s*=' -g '!**/User.kt'Length of output: 518
src/main/kotlin/org/meogo/domain/user/presentation/UserController.kt (3)
4-4
: ์๋ก์ด import ๋ฌธ์ด ์ ์ ํ ์ถ๊ฐ๋์์ต๋๋ค.์๋ก์ด DTO์ ์๋น์ค ํด๋์ค์ ๋ํ import ๋ฌธ์ด ์ฌ๋ฐ๋ฅด๊ฒ ์ถ๊ฐ๋์์ต๋๋ค. ์ด๋ ์ปจํธ๋กค๋ฌ ํด๋์ค์ ๋ณ๊ฒฝ ์ฌํญ๊ณผ ์ผ์นํฉ๋๋ค.
Also applies to: 9-10
53-53
:myPage
๋ฉ์๋๊ฐ ์ ์ ํ ์ ๋ฐ์ดํธ๋์์ต๋๋ค.
myPage
๋ฉ์๋๊ฐ ์๋ก์ดqueryMyPageService
๋ฅผ ์ฌ์ฉํ๋๋ก ์ฌ๋ฐ๋ฅด๊ฒ ์์ ๋์์ต๋๋ค. ๋ฉ์๋ ์๊ทธ๋์ฒ์ ๋ฐํ ํ์ ์ด ์ ์ง๋์ด API ๊ณ์ฝ์ ์ ์งํค๊ณ ์์ต๋๋ค.
55-61
:updateProfile
๋ฉ์๋๊ฐ ์ ์ ํ ๊ฐ์ ๋์์ต๋๋ค.๋ฉ์๋ ์ด๋ฆ ๋ณ๊ฒฝ, ์๋ก์ด ๋งค๊ฐ๋ณ์ ์ถ๊ฐ, ๊ทธ๋ฆฌ๊ณ ์๋น์ค ๋ก์ง ๋ณ๊ฒฝ์ด ์ ์ด๋ฃจ์ด์ก์ต๋๋ค. ์ด ๋ณ๊ฒฝ์ผ๋ก ์ฌ์ฉ์ ์ ๋ณด ์์ ๊ณผ ํ๋กํ ์ด๋ฏธ์ง ์ ๋ก๋๋ฅผ ํจ๊ป ์ฒ๋ฆฌํ ์ ์๊ฒ ๋์์ต๋๋ค.
๋ค์ ์ฌํญ๋ค์ ํ์ธํด ์ฃผ์ธ์:
modifyUserInfoService.execute()
๋ฉ์๋๊ฐfile
๋งค๊ฐ๋ณ์๊ฐ null์ผ ๋ ์ ์ ํ ์ฒ๋ฆฌํ๋์ง ํ์ธํ์ธ์.- ํด๋ผ์ด์ธํธ ์ธก์์ ์ด API ๋ณ๊ฒฝ์ ๋์ํ ์ ์๋๋ก ๋ฌธ์ํ๊ฐ ์ ๋ฐ์ดํธ๋์๋์ง ํ์ธํ์ธ์.
์์ธ ์ฒ๋ฆฌ๋ฅผ ๊ฐ์ ํ๊ธฐ ์ํด ๋ค์๊ณผ ๊ฐ์ ๋ฐฉ์์ ๊ณ ๋ คํด ๋ณด์ธ์:
@PatchMapping("/modify") fun updateProfile( @RequestPart(name = "image", required = false) file: MultipartFile?, @Valid @RequestPart(name = "request") request: UserModifyRequest ) = modifyUserInfoService.execute(request, file)์ด๋ ๊ฒ ํ๋ฉด
request
์ ๋ํ ์ ํจ์ฑ ๊ฒ์ฌ๊ฐ ์๋์ผ๋ก ์ํ๋๋ฉฐ,file
์ด ์ ํ์ ์์ ๋ช ์์ ์ผ๋ก ๋ํ๋ผ ์ ์์ต๋๋ค.src/main/kotlin/org/meogo/domain/user/service/ModifyUserInfoService.kt (1)
31-31
: ํ๋กํ ์ด๋ฏธ์ง URL์ด null์ธ ๊ฒฝ์ฐ ์ฒ๋ฆฌ ํ์ธ ํ์ํ์ผ์ด ์ ๊ณต๋์ง ์์ ๊ฒฝ์ฐ
url
์ดnull
์ด ๋ฉ๋๋ค.updateProfile
๋ฉ์๋๊ฐurl
์ดnull
์ธ ๊ฒฝ์ฐ๋ฅผ ์ฌ๋ฐ๋ฅด๊ฒ ์ฒ๋ฆฌํ๋์ง ํ์ธํด์ผ ํฉ๋๋ค.๋ค์ ์คํฌ๋ฆฝํธ๋ฅผ ์คํํ์ฌ
updateProfile
๋ฉ์๋๊ฐurl
์ดnull
์ธ ๊ฒฝ์ฐ๋ฅผ ์ฒ๋ฆฌํ๋์ง ํ์ธํ ์ ์์ต๋๋ค:โ Verification successful
ํ๋กํ ์ด๋ฏธ์ง URL์ด null์ธ ๊ฒฝ์ฐ ์ ์์ ์ผ๋ก ์ฒ๋ฆฌ๋ฉ๋๋ค.
๐ Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: updateProfile ๋ฉ์๋๊ฐ url์ด null์ธ ๊ฒฝ์ฐ๋ฅผ ์ฒ๋ฆฌํ๋์ง ํ์ธํฉ๋๋ค. # updateProfile ๋ฉ์๋ ์ ์๋ฅผ ๊ฒ์ํ์ฌ url ๋งค๊ฐ๋ณ์๊ฐ nullable์ธ์ง ํ์ธํฉ๋๋ค. rg --type kotlin 'fun updateProfile' -A 5Length of output: 1224
src/main/kotlin/org/meogo/domain/user/presentation/dto/request/UserModifyRequest.kt
Show resolved
Hide resolved
src/main/kotlin/org/meogo/domain/user/service/ModifyUserInfoService.kt
Outdated
Show resolved
Hide resolved
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.
Actionable comments posted: 0
๐งน Outside diff range and nitpick comments (2)
src/main/kotlin/org/meogo/global/auth/AuthDetailsService.kt (1)
14-15
: LGTM: loadUserByUsername ๋ฉ์๋์ ๊ฐ์ ๋ ์ค๋ฅ ์ฒ๋ฆฌ
loadUserByUsername
๋ฉ์๋์ ๋ณ๊ฒฝ์ ์ฌ์ฉ์๋ฅผ ์ฐพ์ง ๋ชปํ์ ๋ ๋ช ์์ ์ผ๋กUserNotFoundException
์ ๋ฐ์์์ผ ์ค๋ฅ ์ฒ๋ฆฌ๋ฅผ ๊ฐ์ ํฉ๋๋ค. ์ด๋ ์ฝ๋์ ์์ ์ฑ์ ๋์ด๊ณ ๋๋ฒ๊น ์ ์ฉ์ดํ๊ฒ ํฉ๋๋ค.๋ ๋์ ๊ฐ๋ ์ฑ์ ์ํด ๋ค์๊ณผ ๊ฐ์ด ๋ฉ์๋๋ฅผ ๋ถ๋ฆฌํ๋ ๊ฒ์ ๊ณ ๋ คํด ๋ณด์ธ์:
override fun loadUserByUsername(username: String): UserDetails { val user = getUserOrThrow(username) return AuthDetails(user.accountId, user.role) } private fun getUserOrThrow(username: String): User = userFacade.getUserByAccountId(username) ?: throw UserNotFoundException์ด๋ ๊ฒ ํ๋ฉด ๋ฉ์๋์ ์ฃผ์ ๋ก์ง๊ณผ ์์ธ ์ฒ๋ฆฌ๋ฅผ ๋ถ๋ฆฌํ์ฌ ์ฝ๋์ ๊ฐ๋ ์ฑ๊ณผ ์ ์ง๋ณด์์ฑ์ ๋์ฑ ํฅ์์ํฌ ์ ์์ต๋๋ค.
src/main/kotlin/org/meogo/domain/review/service/QueryAllBySchoolIdService.kt (1)
27-27
: ์ฌ์ฉ์ ์กฐํ ๋ก์ง ๊ฐ์ ์น์ธ ๋ฐ ์ ์์ฌ์ฉ์๋ฅผ ์ฐพ์ง ๋ชปํ์ ๋
UserNotFoundException
์ throwํ๋ ๊ฒ์ ์ข์ ๊ฐ์ ์ ๋๋ค. ์ด๋ null ํฌ์ธํฐ ์์ธ๋ฅผ ๋ฐฉ์งํ๊ณ ๋ ๋ช ํํ ์ค๋ฅ ์ฒ๋ฆฌ๋ฅผ ์ ๊ณตํฉ๋๋ค.๊ฐ๋ ์ฑ์ ๋์ฑ ๋์ด๊ธฐ ์ํด ๋ค์๊ณผ ๊ฐ์ด Elvis ์ฐ์ฐ์๋ฅผ ์ฌ์ฉํ๋ ๊ฒ์ ๊ณ ๋ คํด ๋ณด์ธ์:
val user = userFacade.getUserById(review.userId) ?: throw UserNotFoundException()์ด๋ ๊ฒ ํ๋ฉด ์ฝ๋์ ์๋๊ฐ ๋ ๋ช ํํด์ง๊ณ ๊ฐ๊ฒฐํด์ง๋๋ค.
๐ Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
๐ Files selected for processing (3)
- src/main/kotlin/org/meogo/domain/review/service/QueryAllBySchoolIdService.kt (2 hunks)
- src/main/kotlin/org/meogo/domain/user/facade/UserFacade.kt (1 hunks)
- src/main/kotlin/org/meogo/global/auth/AuthDetailsService.kt (2 hunks)
๐ง Files skipped from review as they are similar to previous changes (1)
- src/main/kotlin/org/meogo/domain/user/facade/UserFacade.kt
๐งฐ Additional context used
๐ Additional comments (3)
src/main/kotlin/org/meogo/global/auth/AuthDetailsService.kt (1)
3-3
: LGTM: UserNotFoundException ๊ฐ์ ธ์ค๊ธฐ ์ถ๊ฐ
UserNotFoundException
์ ๊ฐ์ ธ์ค๋ ๊ฒ์loadUserByUsername
๋ฉ์๋์ ์๋ก์ด ์์ธ ์ฒ๋ฆฌ์ ํ์ํฉ๋๋ค. ์ด๋ ์ฝ๋์ ๊ฐ๋ ์ฑ๊ณผ ์ ์ง๋ณด์์ฑ์ ํฅ์์ํต๋๋ค.src/main/kotlin/org/meogo/domain/review/service/QueryAllBySchoolIdService.kt (2)
6-6
: import ๋ฌธ ์ถ๊ฐ ์น์ธ
UserNotFoundException
์ importํ๋ ๊ฒ์ ์ ์ ํฉ๋๋ค. ์ด๋queryAllBySchoolId
ํจ์์์ ์ฌ์ฉ์๋ฅผ ์ฐพ์ง ๋ชปํ์ ๋ ์ด ์์ธ๋ฅผ throwํ๋ ์๋ก์ด ๋ก์ง๊ณผ ์ผ์นํฉ๋๋ค.
Line range hint
1-43
: ์ ์ฒด ๊ฒํ ์์ฝ์ด PR์ ๋ณ๊ฒฝ ์ฌํญ๋ค์ ์ ๋ฐ์ ์ผ๋ก ์ฝ๋์ ํ์ง์ ํฅ์์ํต๋๋ค.
UserNotFoundException
์ ๋์ ๊ณผ ์ฌ์ฉ์ ์ค๋ฅ ์ฒ๋ฆฌ๋ฅผ ๊ฐ์ ํ๊ณ ์ ์ฌ์ ์ธ null ํฌ์ธํฐ ์์ธ๋ฅผ ๋ฐฉ์งํฉ๋๋ค. ์ด๋ฌํ ๋ณ๊ฒฝ์ผ๋กQueryAllBySchoolIdService
์ ์์ ์ฑ๊ณผ ์ ๋ขฐ์ฑ์ด ํฅ์๋์์ต๋๋ค.์ ์๋ ์์ ๊ฐ์ ์ฌํญ์ ๊ณ ๋ คํด ๋ณด์๊ณ , ๊ทธ ์ธ์๋ ์ด PR์ ์น์ธํด๋ ์ข์ ๊ฒ ๊ฐ์ต๋๋ค.
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.
Actionable comments posted: 4
๐ Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
๐ Files selected for processing (2)
- src/main/kotlin/org/meogo/domain/user/domain/UserRepository.kt (1 hunks)
- src/main/kotlin/org/meogo/domain/user/service/ModifyUserInfoService.kt (2 hunks)
๐งฐ Additional context used
๐ Additional comments (3)
src/main/kotlin/org/meogo/domain/user/domain/UserRepository.kt (1)
9-10
: findById ๋ฉ์๋ ์ถ๊ฐ ์น์ธ
findById
๋ฉ์๋์ ์ถ๊ฐ๋ ์ ์ ํด ๋ณด์ ๋๋ค:
- UUID๋ก ์ฌ์ฉ์๋ฅผ ์ฐพ๋ ๊ธฐ๋ฅ์ ๋ช ์์ ์ผ๋ก ์ ๊ณตํฉ๋๋ค.
- ๋ฐํ ํ์ ์ด
User?
๋ก ๋์ด ์์ด, ์ฌ์ฉ์๊ฐ ์กด์ฌํ์ง ์์ ๊ฒฝ์ฐ๋ฅผ ์ ์ ํ ์ฒ๋ฆฌํ ์ ์์ต๋๋ค.- ์ด๋ ์ด์ ๋ฆฌ๋ทฐ ์ฝ๋ฉํธ์์ ์ ์๋ null ์ฒ๋ฆฌ ๋ฐฉ์๊ณผ ์ผ์นํฉ๋๋ค.
src/main/kotlin/org/meogo/domain/user/service/ModifyUserInfoService.kt (2)
15-20
: ํด๋์ค ์ด๋ฆ ๋ณ๊ฒฝ ๋ฐ ์์ฑ์ ๋งค๊ฐ๋ณ์ ์์ ์ด ์ ์ ํฉ๋๋ค.ํด๋์ค ์ด๋ฆ์
UploadProfileService
์์ModifyUserInfoService
๋ก ๋ณ๊ฒฝํ ๊ฒ์ ๊ธฐ๋ฅ์ ํ์ฅ์ ์ ๋ฐ์ํ๊ณ ์์ต๋๋ค. ๋ํ, ์์ฑ์ ๋งค๊ฐ๋ณ์์ ์ฌ์ ๋ ฌ๊ณผuserFacade
์ถ๊ฐ๋ ๋ ผ๋ฆฌ์ ์ผ๋ก ๋ณด์ ๋๋ค.
24-32
:execute
๋ฉ์๋์ ์ ๋ฐ์ ์ธ ๋ณ๊ฒฝ์ฌํญ์ด ์ ์ ํฉ๋๋ค.๋ฉ์๋ ์๊ทธ๋์ฒ ๋ณ๊ฒฝ๊ณผ ์๋ก์ด ๋ก์ง ๊ตฌํ์ด ํ์ฅ๋ ๊ธฐ๋ฅ์ ์ ๋ฐ์ํ๊ณ ์์ต๋๋ค. ์ฌ์ฉ์ ์ ๋ณด ์ ๋ฐ์ดํธ์ ํ๋กํ ์ด๋ฏธ์ง ๊ด๋ฆฌ๊ฐ ํจ๊ณผ์ ์ผ๋ก ํตํฉ๋์์ต๋๋ค.
fun findByAccountId(accountId: String): User? | ||
fun findById(id: UUID): User? | ||
|
||
fun findByAccountId(accountId: String): User |
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.
findByAccountId ๋ฉ์๋์ ๋ฐํ ํ์ ๋ณ๊ฒฝ์ ๋ํ ์ฐ๋ ค
findByAccountId
๋ฉ์๋์ ๋ฐํ ํ์
์ User?
์์ User
๋ก ๋ณ๊ฒฝํ ๊ฒ์ ์ ์ฌ์ ์ธ ๋ฌธ์ ๋ฅผ ์ผ๊ธฐํ ์ ์์ต๋๋ค:
- ์ด ๋ณ๊ฒฝ์ ๋ฉ์๋๊ฐ ํญ์ User ๊ฐ์ฒด๋ฅผ ๋ฐํํ๋ค๊ณ ๊ฐ์ ํฉ๋๋ค.
- ์กด์ฌํ์ง ์๋ accountId๋ก ์กฐํํ ๊ฒฝ์ฐ, ์๊ธฐ์น ์์ NullPointerException์ด ๋ฐ์ํ ์ ์์ต๋๋ค.
- Kotlin์ null ์์ ์ฑ ์์น์ ์๋ฐฐ๋ฉ๋๋ค.
๋ค์๊ณผ ๊ฐ์ด ์์ ์ ์ ์ํฉ๋๋ค:
-fun findByAccountId(accountId: String): User
+fun findByAccountId(accountId: String): User?
์ด๋ ๊ฒ ํ๋ฉด accountId์ ํด๋นํ๋ ์ฌ์ฉ์๊ฐ ์์ ๊ฒฝ์ฐ๋ฅผ ์์ ํ๊ฒ ์ฒ๋ฆฌํ ์ ์์ต๋๋ค.
๐ 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.
fun findByAccountId(accountId: String): User | |
fun findByAccountId(accountId: String): User? |
val url = fileUtil.upload(file, Path.USER) | ||
user.updateProfile(url) | ||
userRepository.save(user) | ||
if (file != null && user.profile != defaultImage) fileUtil.delete(user.profile, Path.USER) |
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.
๐ ๏ธ Refactor suggestion
ํ๋กํ ์ด๋ฏธ์ง ์ญ์ ์กฐ๊ฑด ๊ฐ์ ์ ์
ํ์ฌ ๊ตฌํ์ ์ด์ ๋ฆฌ๋ทฐ ์๊ฒฌ์ ๋ถ๋ถ์ ์ผ๋ก ๋ฐ์ํ์ง๋ง, ๋ ๊ฐ์ ํ ์ ์์ต๋๋ค. ๋ค์๊ณผ ๊ฐ์ด ์์ ํ๋ ๊ฒ์ด ์ข๊ฒ ์ต๋๋ค:
if (file != null && user.profile != defaultImage) {
fileUtil.delete(user.profile, Path.USER)
}
์ด๋ ๊ฒ ํ๋ฉด ์ฝ๋์ ๊ฐ๋ ์ฑ์ด ํฅ์๋๊ณ , ์กฐ๊ฑด์ ์๋๊ฐ ๋ ๋ช ํํด์ง๋๋ค.
) { | ||
|
||
@Transactional | ||
fun uploadProfile(file: MultipartFile) { | ||
fun execute(request: UserModifyRequest, file: MultipartFile?) { | ||
val user = userFacade.currentUser() ?: throw UserNotFoundException |
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.
๐ ๏ธ Refactor suggestion
UserNotFoundException
์ฒ๋ฆฌ ๊ฐ์ ๊ถ์ฅ
ํ์ฌ UserNotFoundException
์ ๋์ง๋ ๋ฐฉ์์ด ๊ฐ์ ๋์์ง๋ง, ๋ ๋์ ์๋ฌ ์ฒ๋ฆฌ๋ฅผ ์ํด ๋ค์๊ณผ ๊ฐ์ด ์์ ํ๋ ๊ฒ์ด ์ข๊ฒ ์ต๋๋ค:
val user = userFacade.currentUser() ?: throw UserNotFoundException()
์ด๋ ๊ฒ ํ๋ฉด ์์ธ์ ์ถ๊ฐ ์ ๋ณด๋ฅผ ํฌํจ์ํฌ ์ ์๊ณ , ์์ธ ์ฒ๋ฆฌ์ ์ผ๊ด์ฑ์ ์ ์งํ ์ ์์ต๋๋ค.
close #48
Summary by CodeRabbit
์๋ก์ด ๊ธฐ๋ฅ
UserModifyRequest
์ถ๊ฐ.QueryMyPageService
์ถ๊ฐ.๋ฒ๊ทธ ์์
๋ฆฌํฉํ ๋ง
UploadProfileService
๊ฐModifyUserInfoService
๋ก ์ด๋ฆ ๋ณ๊ฒฝ ๋ฐ ๊ธฐ๋ฅ ๊ฐ์ .MyPageService
๊ฐQueryMyPageService
๋ก ์ด๋ฆ ๋ณ๊ฒฝ.