-
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-44) bookmark #45
Conversation
Walkthrough์ด Pull Request๋ Changes
Possibly related PRs
Suggested labels
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: 2
๐งน Outside diff range and nitpick comments (7)
src/main/kotlin/org/meogo/domain/bookmark/exception/BookmarkNotFoundException.kt (1)
6-8
:BookmarkNotFoundException
๊ฐ์ฒด ์ ์ธ์ด ์ ๋์ด ์์ต๋๋ค.Kotlin์
object
ํค์๋๋ฅผ ์ฌ์ฉํ์ฌ ์ฑ๊ธํค ์์ธ๋ฅผ ์์ฑํ ๊ฒ์ ์ข์ ๋ฐฉ์์ ๋๋ค.MeogoException
์ ์์๋ฐ๊ณ ํน์ ์ค๋ฅ ์ฝ๋๋ฅผ ์ฌ์ฉํ๋ ๊ฒ๋ ์ ์ ํฉ๋๋ค.๊ฐ๋ ์ฑ์ ๋์ด๊ธฐ ์ํด ๋ค์๊ณผ ๊ฐ์ด ๊ฐํ์ ์ถ๊ฐํ๋ ๊ฒ์ ๊ณ ๋ คํด ๋ณด์ธ์:
object BookmarkNotFoundException : MeogoException( ErrorCode.BOOKMARK_NOT_FOUND )src/main/kotlin/org/meogo/domain/bookmark/domain/BookmarkRepository.kt (1)
8-8
: ์ฌ์ฉ์ ์ค์ฌ ๋ถ๋งํฌ ๊ฒ์์ผ๋ก์ ๋ณ๊ฒฝ์ ์น์ธํฉ๋๋ค.์ด ๋ณ๊ฒฝ์ ๋ถ๋งํฌ ๊ด๋ฆฌ๋ฅผ ์ฌ์ฉ์ ์ค์ฌ์ผ๋ก ๊ฐ์ ํฉ๋๋ค. ๊ทธ๋ฌ๋ ๋ฐํ ํ์ ์
List<Bookmark>
๋ก ๋ณ๊ฒฝํ๋ ๊ฒ์ด ์ข์ต๋๋ค. ๋ถ๋งํฌ๊ฐ ์์ ๊ฒฝ์ฐ null ๋์ ๋น ๋ฆฌ์คํธ๋ฅผ ๋ฐํํ๋ฉด null ์ฒดํฌ๋ฅผ ์ค์ผ ์ ์์ต๋๋ค.๋ค์๊ณผ ๊ฐ์ด ๋ฉ์๋ ์๊ทธ๋์ฒ๋ฅผ ์์ ํ๋ ๊ฒ์ ๊ณ ๋ คํด๋ณด์ธ์:
fun findAllByUser(user: User): List<Bookmark>src/main/kotlin/org/meogo/global/error/exception/ErrorCode.kt (1)
21-21
: LGTM! ๋ถ๋งํฌ ๊ด๋ จ ์ค๋ฅ ์ฝ๋๊ฐ ์ ์ ํ ์ถ๊ฐ๋์์ต๋๋ค.์๋ก์ด
BOOKMARK_NOT_FOUND
์ค๋ฅ ์ฝ๋๊ฐ ๊ธฐ์กด ํจํด์ ๋ฐ๋ผ ์ฌ๋ฐ๋ฅด๊ฒ ์ถ๊ฐ๋์์ต๋๋ค. ์ด๋ PR ๋ชฉํ์ ์ธ๊ธ๋ ๋ถ๋งํฌ ๊ธฐ๋ฅ๊ณผ ์ผ์นํฉ๋๋ค.์์ ๊ฐ์ ์ฌํญ์ผ๋ก, ์ค๋ฅ ๋ฉ์์ง์ ์ผ๊ด์ฑ์ ์ํด ๋ค์๊ณผ ๊ฐ์ด ๋ณ๊ฒฝํ๋ ๊ฒ์ ๊ณ ๋ คํด ๋ณด์ธ์:
- BOOKMARK_NOT_FOUND(404, "Bookmark not found"), + BOOKMARK_NOT_FOUND(404, "Bookmark not found."),๋ค๋ฅธ ์ค๋ฅ ๋ฉ์์ง๋ค๊ณผ ๋ง์ฐฌ๊ฐ์ง๋ก ๋ฌธ์ฅ ๋์ ๋ง์นจํ๋ฅผ ์ถ๊ฐํ๋ฉด ๋์ฑ ์ผ๊ด๋ ์คํ์ผ์ด ๋ ๊ฒ ๊ฐ์ต๋๋ค.
src/main/kotlin/org/meogo/domain/bookmark/presentation/BookmarkController.kt (3)
13-17
: ํด๋์ค ์ ์ธ๊ณผ ์์ฑ์๊ฐ ์ ๊ตฌํ๋์์ต๋๋ค.@RestController์ @RequestMapping ์ด๋ ธํ ์ด์ ์ด ์ ์ ํ ์ฌ์ฉ๋์๊ณ , ์์ฑ์๋ฅผ ํตํ ์์กด์ฑ ์ฃผ์ ์ด ์ ๊ตฌํ๋์์ต๋๋ค.
๋ค์๊ณผ ๊ฐ์ด ์์ฑ์์ @Autowired ์ด๋ ธํ ์ด์ ์ ์ถ๊ฐํ๋ ๊ฒ์ด ์ข์ต๋๋ค:
@RestController @RequestMapping("/bookmark") +@Autowired class BookmarkController( private val bookmarkService: BookmarkService ) {
์ด๋ ๋ช ์์ ์ผ๋ก ์์กด์ฑ ์ฃผ์ ์ ๋ํ๋ด๋ฉฐ, ์ฝ๋์ ๊ฐ๋ ์ฑ์ ํฅ์์ํต๋๋ค.
19-22
: ๋ถ๋งํฌ ์์ฑ ๋ฉ์๋๊ฐ ์ ๊ตฌํ๋์์ต๋๋ค.POST ์์ฒญ์ ์ฒ๋ฆฌํ๋ ์๋ํฌ์ธํธ๋ก ์ ์ ํ ๊ตฌํ๋์์ต๋๋ค. @RequestParam์ ์ฌ์ฉํ์ฌ school_id๋ฅผ ๋ฐ์์ค๋ ๋ฐฉ์์ด ์ฌ๋ฐ๋ฆ ๋๋ค.
๋ค์๊ณผ ๊ฐ์ด ๋ฉ์๋์ ๋ฐํ ํ์ ์ ๋ช ์์ ์ผ๋ก ์ง์ ํ๋ ๊ฒ์ด ์ข์ต๋๋ค:
@ResponseStatus(HttpStatus.OK) @PostMapping -fun create(@RequestParam(name = "school_id")schoolId: Int) = +fun create(@RequestParam(name = "school_id")schoolId: Int): Unit = bookmarkService.execute(schoolId)์ด๋ ๊ฒ ํ๋ฉด ๋ฉ์๋์ ์๋๊ฐ ๋ ๋ช ํํด์ง๊ณ , ์ฝ๋์ ๊ฐ๋ ์ฑ์ด ํฅ์๋ฉ๋๋ค.
24-30
: ๋ถ๋งํฌ ์กฐํ ๋ฉ์๋๋ค์ด ์ ๊ตฌํ๋์์ต๋๋ค.GET ์์ฒญ์ ์ฒ๋ฆฌํ๋ ๋ ์๋ํฌ์ธํธ๊ฐ ์ ์ ํ ๊ตฌํ๋์์ต๋๋ค. ๋ฉ์๋ ์ด๋ฆ์ด ๋ช ํํ๊ณ ์ค๋ช ์ ์ ๋๋ค.
๋ค์๊ณผ ๊ฐ์ด ๊ฐ ๋ฉ์๋์ ๋ฐํ ํ์ ์ ๋ช ์์ ์ผ๋ก ์ง์ ํ๋ ๊ฒ์ด ์ข์ต๋๋ค:
@GetMapping("/query/my") -fun myBookmarks() = +fun myBookmarks(): List<BookmarkedSchoolResponse> = bookmarkService.queryBookmarkedSchool() @GetMapping("/query") -fun isBookmarked(@RequestParam(name = "school_id")schoolId: Int) = +fun isBookmarked(@RequestParam(name = "school_id")schoolId: Int): Boolean = bookmarkService.queryIsBookmarked(schoolId)์ด๋ ๊ฒ ํ๋ฉด ๊ฐ ๋ฉ์๋๊ฐ ์ด๋ค ํ์ ์ ๋ฐ์ดํฐ๋ฅผ ๋ฐํํ๋์ง ๋ช ํํด์ง๊ณ , ์ฝ๋์ ๊ฐ๋ ์ฑ๊ณผ ์ ์ง๋ณด์์ฑ์ด ํฅ์๋ฉ๋๋ค.
src/main/kotlin/org/meogo/domain/bookmark/service/BookmarkService.kt (1)
31-35
: ๋ณ์๋ช ๋ณ๊ฒฝ์ ํตํ ์ฝ๋ ๊ฐ๋ ์ฑ ํฅ์
val posts = bookmarkRepository.findAllByUser(user)
์์ ๋ณ์๋ช ์posts
๋ผ๊ณ ์ง์ ํ์ จ๋๋ฐ, ๋ฐํ๋๋ ๊ฐ์ ๋ถ๋งํฌ์ ๋ฆฌ์คํธ์ ๋๋ค. ๋ณ์๋ช ์bookmarks
๋ก ๋ณ๊ฒฝํ๋ฉด ์ฝ๋์ ๊ฐ๋ ์ฑ์ด ํฅ์๋ฉ๋๋ค.์ ์ฉ ๊ฐ๋ฅํ ์์ ์ฌํญ:
-fun queryBookmarkedSchool(): List<Int> { - val user = userFacade.currentUser() ?: throw UserNotFoundException - - val posts = bookmarkRepository.findAllByUser(user) - return posts?.map { it.schoolId } ?: emptyList() +fun queryBookmarkedSchool(): List<Int> { + val user = userFacade.currentUser() ?: throw UserNotFoundException() + + val bookmarks = bookmarkRepository.findAllByUser(user) + return bookmarks?.map { it.schoolId } ?: emptyList() }
๐ Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
๐ Files selected for processing (6)
- src/main/kotlin/org/meogo/domain/bookmark/domain/Bookmark.kt (2 hunks)
- src/main/kotlin/org/meogo/domain/bookmark/domain/BookmarkRepository.kt (1 hunks)
- src/main/kotlin/org/meogo/domain/bookmark/exception/BookmarkNotFoundException.kt (1 hunks)
- src/main/kotlin/org/meogo/domain/bookmark/presentation/BookmarkController.kt (1 hunks)
- src/main/kotlin/org/meogo/domain/bookmark/service/BookmarkService.kt (3 hunks)
- src/main/kotlin/org/meogo/global/error/exception/ErrorCode.kt (1 hunks)
๐ Additional comments (9)
src/main/kotlin/org/meogo/domain/bookmark/exception/BookmarkNotFoundException.kt (2)
1-1
: ํจํค์ง ์ ์ธ์ด ์ ์ ํฉ๋๋ค.ํจํค์ง ์ด๋ฆ์ด ํ์ค ๋ช ๋ช ๊ท์น์ ๋ฐ๋ฅด๊ณ ์์ผ๋ฉฐ, ๋๋ฉ์ธ(bookmark)๊ณผ ํด๋์ค ์ ํ(exception)์ ์ ํํ ๋ฐ์ํ๊ณ ์์ต๋๋ค.
3-4
: ์ํฌํธ ๋ฌธ์ด ์ ์ ํฉ๋๋ค.ํ์ํ ํด๋์ค๋ค(
ErrorCode
์MeogoException
)๋ง ์ํฌํธ๋์ด ์์ต๋๋ค. ์ด๋ ํ๋ก์ ํธ์ ์ ๊ตฌ์กฐํ๋ ์ค๋ฅ ์ฒ๋ฆฌ ๋ฉ์ปค๋์ฆ์ด ์์์ ์์ฌํฉ๋๋ค.src/main/kotlin/org/meogo/domain/bookmark/domain/BookmarkRepository.kt (2)
10-10
: ๋ถ๋งํฌ ๊ฒ์ ๊ธฐ๋ฅ ๊ฐ์ ์ ์น์ธํฉ๋๋ค.์ด ๋ณ๊ฒฝ์ ๋จ์ํ ์กด์ฌ ์ฌ๋ถ๋ฅผ ํ์ธํ๋ ๋์ ์ค์ ๋ถ๋งํฌ ๊ฐ์ฒด๋ฅผ ๋ฐํํจ์ผ๋ก์จ ๊ธฐ๋ฅ์ ๊ฐ์ ํฉ๋๋ค. ์ด๋ ๋ ๋ง์ ์ ์ฐ์ฑ์ ์ ๊ณตํ๊ณ ์ ์ฌ์ ์ผ๋ก ๋ฐ์ดํฐ๋ฒ ์ด์ค ์ฟผ๋ฆฌ ์๋ฅผ ์ค์ผ ์ ์์ต๋๋ค.
nullable ๋ฐํ ํ์
Bookmark?
๋ ์ฃผ์ด์ง ํ๊ต์ ์ฌ์ฉ์์ ๋ํ ๋ถ๋งํฌ๊ฐ ์กด์ฌํ์ง ์์ ์ ์์ผ๋ฏ๋ก ์ ์ ํฉ๋๋ค.
12-12
: ์กด์ฌ ํ์ธ ๋ฉ์๋ ์ฌ๋์ ์ ์น์ธํ์ง๋ง, ์ญ์ ๊ธฐ๋ฅ์ ๋ํด ์ง๋ฌธ์ด ์์ต๋๋ค.
existsBySchoolIdAndUser
๋ฉ์๋์ ์ฌ๋์ ์ ์ ์ฒด ๊ฐ์ฒด๋ฅผ ๊ฐ์ ธ์ค์ง ์๊ณ ๋ ๋ถ๋งํฌ์ ์กด์ฌ ์ฌ๋ถ๋ฅผ ๋น ๋ฅด๊ฒ ํ์ธํ ์ ์์ด ์ ์ฉํฉ๋๋ค.๊ทธ๋ฌ๋
deleteBySchoolIdAndUser
๋ฉ์๋๊ฐ ์ ๊ฑฐ๋ ๊ฒ์ผ๋ก ๋ณด์ ๋๋ค. ๋ถ๋งํฌ ์ญ์ ๊ธฐ๋ฅ์ด ์ฌ์ ํ ํ์ํ์ง, ๊ทธ๋ฆฌ๊ณ ์ด ๊ธฐ๋ฅ์ด ๋ค๋ฅธ ๊ณณ์ผ๋ก ์ด๋๋์๋์ง ํ์ธ์ด ํ์ํฉ๋๋ค.๋ค์ ์คํฌ๋ฆฝํธ๋ฅผ ์คํํ์ฌ ์ญ์ ๊ธฐ๋ฅ์ ์กด์ฌ ์ฌ๋ถ๋ฅผ ํ์ธํด ์ฃผ์ธ์:
โ Verification successful
์กด์ฌ ํ์ธ ๋ฉ์๋ ์ฌ๋์ ์ ์น์ธํฉ๋๋ค. ์ญ์ ๊ธฐ๋ฅ์ ์๋น์ค ๋ฐ ์ปจํธ๋กค๋ฌ ๊ณ์ธต์์ ๊ณ์ ์ ๊ณต๋ฉ๋๋ค.
BookmarkService.kt
๋ฐBookmarkController.kt
์์ ์ญ์ ๊ธฐ๋ฅ์ด ๊ตฌํ๋์ด ์์ด ๋ฆฌํฌ์งํ ๋ฆฌ์deleteBySchoolIdAndUser
์ ๊ฑฐ๋ ๋ฌธ์ ๋์ง ์์ต๋๋ค.๐ Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: ๋ถ๋งํฌ ์ญ์ ๊ธฐ๋ฅ ํ์ธ # Test: BookmarkRepository์์ delete ๊ด๋ จ ๋ฉ์๋ ๊ฒ์ echo "BookmarkRepository์์ delete ๊ด๋ จ ๋ฉ์๋ ๊ฒ์:" rg --type kotlin "fun.*delete.*Bookmark" src/main/kotlin/org/meogo/domain/bookmark/ # Test: ๋ค๋ฅธ ํ์ผ์์ ๋ถ๋งํฌ ์ญ์ ๋ก์ง ๊ฒ์ echo "\n๋ค๋ฅธ ํ์ผ์์ ๋ถ๋งํฌ ์ญ์ ๋ก์ง ๊ฒ์:" rg --type kotlin "delete.*[Bb]ookmark" src/main/kotlin/org/meogo/Length of output: 754
src/main/kotlin/org/meogo/domain/bookmark/domain/Bookmark.kt (2)
15-15
:schoolId
์์ฑ ๋ณ๊ฒฝ์ด ์ ์ ํ์ง๋ง ๊ธฐ์กด ์ฝ๋์ ๋ฏธ์น๋ ์ํฅ์ ํ์ธํด์ผ ํฉ๋๋ค.
schoolId
๋ฅผ non-nullable๋ก ๋ณ๊ฒฝํ ๊ฒ์ ์ข์ ๊ฒฐ์ ์ ๋๋ค. ์ด๋Bookmark
์ธ์คํด์ค๊ฐ ํญ์ ์ ํจํschoolId
๋ฅผ ๊ฐ์ง๋๋ก ๋ณด์ฅํฉ๋๋ค. ๊ทธ๋ฌ๋ ์ด ๋ณ๊ฒฝ์ผ๋ก ์ธํด ๊ธฐ์กด ์ฝ๋์ ์ํฅ์ ์ค ์ ์์ต๋๋ค.๋ค์ ์คํฌ๋ฆฝํธ๋ฅผ ์คํํ์ฌ
Bookmark
ํด๋์ค์ ์ฌ์ฉ์ ํ์ธํ๊ณ ํ์ํ ๊ฒฝ์ฐ ์์ ํ์ธ์:#!/bin/bash # Description: Verify usage of Bookmark class and potential impacts of schoolId change # Test: Search for Bookmark class usage rg --type kotlin "Bookmark\(" -A 5
1-1
: ํจํค์ง ์ ์ธ ๋ณ๊ฒฝ์ด ์ ์ ํฉ๋๋ค.๋๋ฉ์ธ ์ํฐํฐ๋ฅผ ๋ณ๋์ ํ์ ํจํค์ง๋ก ๋ถ๋ฆฌํ๋ ๊ฒ์ ์ข์ ๊ตฌ์กฐํ ๋ฐฉ์์ ๋๋ค. ์ด๋ ์ฝ๋์ ์กฐ์ง๊ณผ ๊ฐ๋ ์ฑ์ ํฅ์์ํต๋๋ค.
๋ค๋ฅธ ํ์ผ์์
Bookmark
ํด๋์ค๋ฅผ ์ฌ์ฉํ๋ ๊ณณ์ import ๋ฌธ์ ํ์ธํ๊ธฐ ์ํด ๋ค์ ์คํฌ๋ฆฝํธ๋ฅผ ์คํํ์ธ์:โ Verification successful
์ ํจํค์ง ๊ฒฝ๋ก์ ๋ง๊ฒ
Bookmark
ํด๋์ค์ import ๋ฌธ์ ์ ๋ฐ์ดํธํด์ผ ํฉ๋๋ค.๋ค์ ์คํฌ๋ฆฝํธ๋ฅผ ์คํํ์ฌ ๊ธฐ์กด์ ์๋ชป๋ import ๋ฌธ์ ํ์ธํ์ธ์:
ํจํค์ง ์ ์ธ ๋ณ๊ฒฝ์ด ์ ๋๋ก ๋ฐ์๋์์ต๋๋ค.
๋ชจ๋ import ๋ฌธ์ด ์ ํจํค์ง ๊ฒฝ๋ก
org.meogo.domain.bookmark.domain
์ ์ฌ์ฉํ๊ณ ์์ด ์ถ๊ฐ ์์ ์ด ํ์ํ์ง ์์ต๋๋ค.๐ Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify import statements for Bookmark class # Test: Search for import statements of Bookmark class rg --type kotlin "import.*Bookmark"Length of output: 1945
Script:
#!/bin/bash # Description: Verify import statements for Bookmark class after package change # Search for import statements of Bookmark class with the old package path rg --type kotlin "import org\.meogo\.domain\.bookmark\.Bookmark"Length of output: 66
src/main/kotlin/org/meogo/domain/bookmark/presentation/BookmarkController.kt (2)
1-11
: ํจํค์ง ์ ์ธ ๋ฐ ์ํฌํธ๊ฐ ์ ์ ํฉ๋๋ค.ํจํค์ง ์ ์ธ๊ณผ ์ํฌํธ๊ฐ Spring Boot REST ์ปจํธ๋กค๋ฌ์ ์ ํฉํ๊ฒ ์์ฑ๋์์ต๋๋ค. ๋ถํ์ํ ์ํฌํธ๋ ์์ผ๋ฉฐ, ํ์ํ ๋ชจ๋ ํด๋์ค๊ฐ ์ํฌํธ๋์ด ์์ต๋๋ค.
32-36
: ๋ถ๋งํฌ ์ญ์ ๋ฉ์๋๊ฐ ์ ๊ตฌํ๋์์ต๋๋ค.DELETE ์์ฒญ์ ์ฒ๋ฆฌํ๋ ์๋ํฌ์ธํธ๋ก ์ ์ ํ ๊ตฌํ๋์์ต๋๋ค. @RequestParam์ ์ฌ์ฉํ์ฌ school_id๋ฅผ ๋ฐ์์ค๋ ๋ฐฉ์์ด ์ฌ๋ฐ๋ฅด๋ฉฐ, @ResponseStatus(HttpStatus.NO_CONTENT)๋ฅผ ์ฌ์ฉํ์ฌ ์ญ์ ์์ ์ ๋ํ ์ ์ ํ ์๋ต ์ํ๋ฅผ ์ง์ ํ์ต๋๋ค.
๋ฉ์๋์ ๊ตฌํ์ด ๊ฐ๊ฒฐํ๊ณ ๋ช ํํฉ๋๋ค. ์ข์ ๊ตฌํ์ ๋๋ค.
src/main/kotlin/org/meogo/domain/bookmark/service/BookmarkService.kt (1)
1-1
: ํจํค์ง ์ด๋์ ๋ฐ๋ฅธ ์ฐธ์กฐ ์ ๋ฐ์ดํธ ํ์ธ ํ์ํด๋์ค
BookmarkService
์ ํจํค์ง๊ฐorg.meogo.domain.bookmark
์์org.meogo.domain.bookmark.service
๋ก ๋ณ๊ฒฝ๋์์ต๋๋ค. ์ด๋ก ์ธํด ์ด ํด๋์ค๋ฅผ ์ฐธ์กฐํ๋ ๋ค๋ฅธ ํ์ผ์ import ๋ฌธ์ด ์ฌ๋ฐ๋ฅด๊ฒ ์ ๋ฐ์ดํธ๋์๋์ง ํ์ธํด์ผ ํฉ๋๋ค.๋ค์ ์คํฌ๋ฆฝํธ๋ฅผ ์คํํ์ฌ ์ด์ ํจํค์ง ๊ฒฝ๋ก๋ก
BookmarkService
๋ฅผ importํ๋ ํ์ผ์ด ์๋์ง ํ์ธํ ์ ์์ต๋๋ค:์ด ์คํฌ๋ฆฝํธ๋ ์ด์ ํจํค์ง ๊ฒฝ๋ก๋ฅผ ์ฌ์ฉํ๋ ๋ชจ๋ ํ์ผ์ ๋์ดํฉ๋๋ค. ๊ฒฐ๊ณผ๊ฐ ์๋ค๋ฉด ๋ชจ๋ ์ฐธ์กฐ๊ฐ ์ฌ๋ฐ๋ฅด๊ฒ ์ ๋ฐ์ดํธ๋ ๊ฒ์ ๋๋ค.
โ Verification successful
๋ชจ๋ ์ฐธ์กฐ๊ฐ ์ฌ๋ฐ๋ฅด๊ฒ ์ ๋ฐ์ดํธ๋์์ต๋๋ค.
๐ Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: ์ด์ ํจํค์ง ๊ฒฝ๋ก๋ก BookmarkService๋ฅผ importํ๋ ํ์ผ ๊ฒ์ # Test: ์ด์ ํจํค์ง ๊ฒฝ๋ก๋ฅผ ์ฌ์ฉํ๋ import ๋ฌธ์ด ์๋ ํ์ผ ์ฐพ๊ธฐ rg --type kotlin 'import org\.meogo\.domain\.bookmark\.BookmarkService' -lLength of output: 76
val posts = bookmarkRepository.findAllBySchoolId(schoolId) | ||
return posts?.size ?: 0 | ||
fun queryBookmarkedSchool(): List<Int> { | ||
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.
์์ธ ์ธ์คํด์คํ ์ ๊ดํธ ์ถ๊ฐ ํ์
throw UserNotFoundException
๋์ throw UserNotFoundException()
์ฒ๋ผ ์์ธ๋ฅผ ์ธ์คํด์คํํ ๋ ๊ดํธ๋ฅผ ์ถ๊ฐํด์ผ ํฉ๋๋ค.
์ ์ฉ ๊ฐ๋ฅํ ์์ ์ฌํญ:
-val user = userFacade.currentUser() ?: throw UserNotFoundException
+val user = userFacade.currentUser() ?: throw UserNotFoundException()
๐ 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.
val user = userFacade.currentUser() ?: throw UserNotFoundException | |
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.
UserNotFoundException๊ฐ object๋ก ๋์ด์์ด์ ๊ด์ฐฎใด์ ๊ฒ ๊ฐ์
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.
@meltapplee, ์๊ฒ ์ต๋๋ค. UserNotFoundException
์ด ๊ฐ์ฒด๋ก ์ ์๋์ด ์์ด์ ๊ดํธ ์์ด๋ ์ฌ์ฉ ๊ฐ๋ฅํ๊ตฐ์. ์๋ ค์ฃผ์
์ ๊ฐ์ฌํฉ๋๋ค.
๐ฐโ
โ๏ธ Learnings added
Learnt from: meltapplee
PR: MEOGO-DSM/MEOGO_Backend_V3#45
File: src/main/kotlin/org/meogo/domain/bookmark/service/BookmarkService.kt:32-32
Timestamp: 2024-10-03T12:41:49.733Z
Learning: UserNotFoundException is defined as an object, so it can be thrown without parentheses.
Note: Learnings are effective only in the context of similar code segments. To apply general coding guidelines, please configure review instructions. You can manage existing learnings in the app.
@@ -37,6 +42,7 @@ | |||
|
|||
fun deleteBookmark(schoolId: Int) { | |||
val user = userFacade.currentUser() ?: throw UserNotFoundException | |||
bookmarkRepository.deleteBySchoolIdAndUser(schoolId, user) | |||
val bookmark = bookmarkRepository.findBySchoolIdAndUser(schoolId, user) ?: throw BookmarkNotFoundException |
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.
์์ธ ์ธ์คํด์คํ ์ ๊ดํธ ์ถ๊ฐ ํ์
throw BookmarkNotFoundException
๋์ throw BookmarkNotFoundException()
์ฒ๋ผ ์์ธ๋ฅผ ์ธ์คํด์คํํ ๋ ๊ดํธ๋ฅผ ์ถ๊ฐํด์ผ ํฉ๋๋ค.
์ ์ฉ ๊ฐ๋ฅํ ์์ ์ฌํญ:
-val bookmark = bookmarkRepository.findBySchoolIdAndUser(schoolId, user) ?: throw BookmarkNotFoundException
+val bookmark = bookmarkRepository.findBySchoolIdAndUser(schoolId, user) ?: throw BookmarkNotFoundException()
๐ 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.
val bookmark = bookmarkRepository.findBySchoolIdAndUser(schoolId, user) ?: throw BookmarkNotFoundException | |
val bookmark = bookmarkRepository.findBySchoolIdAndUser(schoolId, user) ?: throw BookmarkNotFoundException() |
close #44
Summary by CodeRabbit
New Features
๋ณ๊ฒฝ ์ฌํญ
schoolId
ํ๋๊ฐ ํ์๋ก ๋ณ๊ฒฝ๋์ด ๋ถ๋งํฌ ์์ฑ ์ ๋ฐ๋์ ์ ๊ณตํด์ผ ํจ.๋ฒ๊ทธ ์์