File tree 7 files changed +61
-13
lines changed
src/main/java/ttakkeun/ttakkeun_server
7 files changed +61
-13
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -22,11 +22,11 @@ public class InquiryController {
22
22
23
23
private final InquiryService inquiryService ;
24
24
25
- @ Operation (summary = "문의하기" )
25
+ @ Operation (summary = "문의하기 API " )
26
26
@ PostMapping (value = "/add" , consumes = "multipart/form-data" )
27
27
public ApiResponse <InquiryResponseDTO .AddResultDTO > add (
28
28
@ AuthenticationPrincipal Member member ,
29
- @ RequestParam ( "type" ) InquiryType inquiryType ,
29
+ @ RequestParam InquiryType inquiryType ,
30
30
@ RequestPart @ Valid InquiryRequestDTO inquiryRequestDTO ,
31
31
@ RequestPart (required = false ) List <MultipartFile > multipartFile
32
32
) {
@@ -36,4 +36,14 @@ public ApiResponse<InquiryResponseDTO.AddResultDTO> add(
36
36
37
37
return ApiResponse .onSuccess (resultDTO );
38
38
}
39
+
40
+ @ Operation (summary = "문의 내용 조회하기 API" )
41
+ @ GetMapping (value = "/{inquiry_id}" )
42
+ public ApiResponse <List <InquiryResponseDTO .getResultDTO >> getInquiry (
43
+ @ AuthenticationPrincipal Member member
44
+ ) {
45
+ List <InquiryResponseDTO .getResultDTO > resultDTO = inquiryService .getInquiry (member );
46
+
47
+ return ApiResponse .onSuccess (resultDTO );
48
+ }
39
49
}
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ public ApiResponse<List<RecommendProductDTO>> getSearchProductsFromNaver(
90
90
}
91
91
92
92
@ Operation (summary = "좋아요/취소 토글 API" )
93
- @ PatchMapping ("/like/{product_id}" )
93
+ @ PutMapping ("/like/{product_id}" )
94
94
public ApiResponse <LikeResponseDTO .Result > toggleLikeProduct (
95
95
@ PathVariable Long product_id ,
96
96
@ AuthenticationPrincipal Member member ,
Original file line number Diff line number Diff line change 4
4
import org .springframework .stereotype .Component ;
5
5
import org .springframework .web .multipart .MultipartFile ;
6
6
import ttakkeun .ttakkeun_server .dto .inquiry .InquiryRequestDTO ;
7
+ import ttakkeun .ttakkeun_server .dto .inquiry .InquiryResponseDTO ;
7
8
import ttakkeun .ttakkeun_server .entity .Inquiry ;
8
9
import ttakkeun .ttakkeun_server .entity .InquiryImage ;
9
10
import ttakkeun .ttakkeun_server .entity .Member ;
@@ -53,4 +54,18 @@ public Inquiry toInquiry(
53
54
54
55
return inquiry ;
55
56
}
57
+
58
+ public InquiryResponseDTO .getResultDTO toDTO (Inquiry inquiry ) {
59
+ List <String > imageUrls = inquiry .getImages ().stream ()
60
+ .map (InquiryImage ::getImageUrl )
61
+ .toList ();
62
+
63
+ return InquiryResponseDTO .getResultDTO .builder ()
64
+ .contents (inquiry .getContents ())
65
+ .email (inquiry .getEmail ())
66
+ .created_at (inquiry .getCreatedAt ())
67
+ .inquiryType (inquiry .getInquiryType ().toString ())
68
+ .imageUrl (imageUrls )
69
+ .build ();
70
+ }
56
71
}
Original file line number Diff line number Diff line change 5
5
import lombok .Getter ;
6
6
import lombok .NoArgsConstructor ;
7
7
8
+ import java .time .LocalDateTime ;
9
+ import java .util .List ;
10
+
8
11
public class InquiryResponseDTO {
9
12
@ Builder
10
13
@ Getter
@@ -13,4 +16,16 @@ public class InquiryResponseDTO {
13
16
public static class AddResultDTO {
14
17
Long inquiryId ;
15
18
}
19
+
20
+ @ Builder
21
+ @ Getter
22
+ @ NoArgsConstructor
23
+ @ AllArgsConstructor
24
+ public static class getResultDTO {
25
+ String contents ;
26
+ String email ;
27
+ String inquiryType ;
28
+ List <String > imageUrl ;
29
+ LocalDateTime created_at ;
30
+ }
16
31
}
Original file line number Diff line number Diff line change 1
1
package ttakkeun .ttakkeun_server .repository ;
2
2
3
+ import org .springframework .data .domain .Page ;
4
+ import org .springframework .data .domain .Pageable ;
3
5
import org .springframework .data .jpa .repository .JpaRepository ;
4
6
import org .springframework .stereotype .Repository ;
5
7
import ttakkeun .ttakkeun_server .entity .Inquiry ;
8
+ import ttakkeun .ttakkeun_server .entity .Member ;
9
+
10
+ import java .util .List ;
6
11
7
12
@ Repository
8
13
public interface InquiryRepository extends JpaRepository <Inquiry , Long > {
9
-
14
+ List < Inquiry > findByMember ( Member member );
10
15
}
Original file line number Diff line number Diff line change 4
4
import lombok .RequiredArgsConstructor ;
5
5
import org .springframework .stereotype .Service ;
6
6
import org .springframework .web .multipart .MultipartFile ;
7
+ import ttakkeun .ttakkeun_server .apiPayLoad .exception .ExceptionHandler ;
7
8
import ttakkeun .ttakkeun_server .converter .InquiryConverter ;
8
9
import ttakkeun .ttakkeun_server .dto .inquiry .InquiryRequestDTO ;
9
10
import ttakkeun .ttakkeun_server .dto .inquiry .InquiryResponseDTO ;
14
15
15
16
import java .util .List ;
16
17
18
+ import static ttakkeun .ttakkeun_server .apiPayLoad .code .status .ErrorStatus .PET_NOT_FOUND ;
19
+ import static ttakkeun .ttakkeun_server .apiPayLoad .code .status .ErrorStatus ._NOT_FOUND ;
20
+
17
21
@ Service
18
22
@ Transactional
19
23
@ RequiredArgsConstructor
@@ -40,4 +44,12 @@ public InquiryResponseDTO.AddResultDTO addInquiry(
40
44
.inquiryId (newInquiry .getInquiryId ())
41
45
.build ();
42
46
}
47
+
48
+ public List <InquiryResponseDTO .getResultDTO > getInquiry (Member member ) {
49
+ List <Inquiry > inquiries = inquiryRepository .findByMember (member );
50
+
51
+ return inquiries .stream ()
52
+ .map (inquiryConverter ::toDTO )
53
+ .toList ();
54
+ }
43
55
}
You can’t perform that action at this time.
0 commit comments