diff --git a/src/main/java/vom/spring/domain/webcam/controller/WebcamController.java b/src/main/java/vom/spring/domain/webcam/controller/WebcamController.java index 801b665..d11bb87 100644 --- a/src/main/java/vom/spring/domain/webcam/controller/WebcamController.java +++ b/src/main/java/vom/spring/domain/webcam/controller/WebcamController.java @@ -21,6 +21,9 @@ import vom.spring.domain.webcam.dto.WebcamRequestDto; import vom.spring.domain.webcam.dto.WebcamResponseDto; import vom.spring.domain.webcam.service.WebcamServcie; +import vom.spring.domain.webpush.service.FcmService; + +import java.io.IOException; @Tag(name = "화상채팅(시그널링) API", description = "화상채팅 API 명세서") @RestController @@ -28,6 +31,7 @@ @Slf4j public class WebcamController { private final WebcamServcie webcamServcie; + private final FcmService fcmService; // private final SimpMessagingTemplate messagingTemplate; /** * 방 생성 @@ -41,8 +45,9 @@ public class WebcamController { content = @Content(schema = @Schema(implementation = ErrorResponse.class))) }) @PostMapping("/api/webcam") - public ResponseEntity createWebcamRoom(@RequestBody WebcamRequestDto.CreateWebcamDto request) { + public ResponseEntity createWebcamRoom(@RequestBody WebcamRequestDto.CreateWebcamDto request) throws IOException { WebcamResponseDto.CreateWebcamDto response = webcamServcie.createWebcamRoom(request); + fcmService.sendMessageTo(request.getToMemberId()); return ResponseEntity.status(HttpStatus.OK).body(response); } /**