-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
src/main/java/com/umc/DongnaeFriend/domain/dongnae/controller/DongnaeCommentController.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,23 @@ | ||
package com.umc.DongnaeFriend.domain.dongnae.controller; | ||
|
||
import com.umc.DongnaeFriend.domain.account.sharing.dto.ReqSharingCommentDto; | ||
import com.umc.DongnaeFriend.domain.dongnae.dto.DongnaeCommentDto; | ||
import com.umc.DongnaeFriend.domain.dongnae.service.DongnaeCommentService; | ||
import lombok.RequiredArgsConstructor; | ||
import org.springframework.web.bind.annotation.*; | ||
|
||
@RequiredArgsConstructor | ||
@RestController | ||
@RequestMapping("/town-information/comments") | ||
public class DongnaeCommentController { | ||
private final DongnaeCommentService dongnaeCommentService; | ||
|
||
// [동네정보] 댓글 등록 | ||
@PostMapping("/{townInformationId}") | ||
public String postComment(@PathVariable("townInformationId") Long townInformationId, @RequestBody DongnaeCommentDto dongnaeCommentDto) { | ||
dongnaeCommentService.newComment(townInformationId, dongnaeCommentDto); | ||
return ""; | ||
} | ||
|
||
|
||
} |
13 changes: 13 additions & 0 deletions
13
src/main/java/com/umc/DongnaeFriend/domain/dongnae/dto/DongnaeCommentDto.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 com.umc.DongnaeFriend.domain.dongnae.dto; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Getter | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
public class DongnaeCommentDto { | ||
Long parentCommentId; | ||
String content; | ||
} |
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
61 changes: 61 additions & 0 deletions
61
src/main/java/com/umc/DongnaeFriend/domain/dongnae/service/DongnaeCommentService.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,61 @@ | ||
package com.umc.DongnaeFriend.domain.dongnae.service; | ||
|
||
import com.umc.DongnaeFriend.domain.account.sharing.entity.SharingBoard; | ||
import com.umc.DongnaeFriend.domain.account.sharing.entity.SharingComment; | ||
import com.umc.DongnaeFriend.domain.dongnae.dto.DongnaeCommentDto; | ||
import com.umc.DongnaeFriend.domain.dongnae.entity.DongnaeBoard; | ||
import com.umc.DongnaeFriend.domain.dongnae.entity.DongnaeComment; | ||
import com.umc.DongnaeFriend.domain.dongnae.respository.DongnaeCommentRepository; | ||
import com.umc.DongnaeFriend.domain.user.entity.User; | ||
import lombok.RequiredArgsConstructor; | ||
import org.springframework.stereotype.Service; | ||
|
||
import java.util.Optional; | ||
|
||
@RequiredArgsConstructor | ||
@Service | ||
public class DongnaeCommentService { | ||
private final DongnaeCommentRepository dongnaeCommentRepository; | ||
|
||
|
||
public String newComment(Long townInformationId, DongnaeCommentDto dongnaeCommentDto) { | ||
// !임시! 유저 가져오기 | ||
User user = dongnaeCommentRepository.findByUserId(1L); | ||
|
||
// 게시판 가져오기 | ||
DongnaeBoard dongnaeBoard = dongnaeCommentRepository.findByDongnaeBoardId(townInformationId); | ||
|
||
// 대댓글 등록 | ||
if (!(dongnaeCommentDto.getParentCommentId() == null)){ | ||
// 부모 댓글 가져오기 | ||
Optional<DongnaeComment> parentCommentOptional = dongnaeCommentRepository.findById(dongnaeCommentDto.getParentCommentId()); | ||
DongnaeComment parentComment = parentCommentOptional.get(); | ||
|
||
// 댓글 빌드 | ||
DongnaeComment comment = DongnaeComment.builder() | ||
.parentComment(parentComment) | ||
.content(dongnaeCommentDto.getContent()) | ||
.isDeleted(false) | ||
.dongnaeBoard(dongnaeBoard) | ||
.user(user) | ||
.build(); | ||
|
||
dongnaeCommentRepository.save(comment); | ||
|
||
return "대댓글 등록 성공"; | ||
|
||
} | ||
|
||
// 댓글 빌드 | ||
DongnaeComment comment = DongnaeComment.builder() | ||
.content(dongnaeCommentDto.getContent()) | ||
.isDeleted(false) | ||
.dongnaeBoard(dongnaeBoard) | ||
.user(user) | ||
.build(); | ||
|
||
dongnaeCommentRepository.save(comment); | ||
|
||
return "댓글 등록 성공"; | ||
} | ||
} |