-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathVideoRoomController.java
211 lines (154 loc) · 7.71 KB
/
VideoRoomController.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
package oncoding.concoder.controller;
import java.util.List;
import java.util.Map;
import io.openvidu.java.client.Connection;
import io.openvidu.java.client.ConnectionProperties;
import io.openvidu.java.client.OpenVidu;
import io.openvidu.java.client.OpenViduHttpException;
import io.openvidu.java.client.OpenViduJavaClientException;
import io.openvidu.java.client.Session;
import io.openvidu.java.client.SessionProperties;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import oncoding.concoder.dto.ChatDTO.UserAndRoomResponse;
import oncoding.concoder.dto.ChatDTO.ExitResponse;
import oncoding.concoder.dto.ChatDTO.UserResponse;
import oncoding.concoder.service.ChattingService;
import org.json.simple.JSONObject;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.event.EventListener;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.messaging.handler.annotation.DestinationVariable;
import org.springframework.messaging.handler.annotation.MessageMapping;
import org.springframework.messaging.simp.SimpAttributesContextHolder;
import org.springframework.messaging.simp.SimpMessagingTemplate;
import org.springframework.messaging.simp.stomp.StompHeaderAccessor;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.socket.messaging.SessionConnectEvent;
import org.springframework.web.socket.messaging.SessionDisconnectEvent;
import javax.annotation.PostConstruct;
@Slf4j
@RestController
@RequiredArgsConstructor
public class VideoRoomController {
private final ChattingService chattingService;
private final SimpMessagingTemplate template;
@Value("${OPENVIDU_SECRET}")
private String OPENVIDU_SECRET;
private OpenVidu openvidu;
@PostConstruct
public void init() {
this.openvidu = new OpenVidu("http://localhost:4443/", OPENVIDU_SECRET);
}
@MessageMapping("/video/chat/{roomId}")
public void chat(@DestinationVariable final String roomId, JSONObject ob) {
log.debug("/rooms/chat/{}, userId: {}", roomId, ob.get("userId").toString());
log.debug("/rooms/chat/{}, content: {}", roomId, ob.get("content").toString());
chattingService.sendMessage(roomId, ob);
log.debug("after chatting convert and send");
}
/**
* 코드를 해당 룸 사용자들에게 공유
* @param roomId
* @param ob
*/
@MessageMapping("/code/{roomId}")
private void codeShare(@DestinationVariable final String roomId,JSONObject ob) {
template.convertAndSend("/sub/code/"+roomId,ob);
log.debug("convertAndSend to /sub/code/{}: {}", roomId, ob.toJSONString());
}
// 실시간으로 들어온 User 감지하여 전체 User 리스트 반환
@MessageMapping("/video/joined-room-info/{roomId}")
private List<UserResponse> joinRoom(@DestinationVariable final String roomId, JSONObject ob) {
String userId = ob.get("userId").toString();
log.debug("@MessageMapping(\"/video/joined-room-info\") roomId : {}", roomId);
log.debug("@MessageMapping(\"/video/joined-room-info\") userId : {}", userId);
List<UserResponse> userResponseList = chattingService.enter(roomId, userId);
template.convertAndSend("/sub/video/joined-room-info/"+ roomId, userResponseList);
log.debug("convertAndSend to /sub/video/joined-room-info/{}: {}", roomId, userResponseList);
return userResponseList;
}
// 실시간으로 나간 User 감지하여 리턴
@MessageMapping("/video/unjoined-room-info/{roomId}")
private ExitResponse unJoinRoom(@DestinationVariable final String roomId, JSONObject ob) {
String userId = (String) ob.get("userId");
log.debug("@MessageMapping(\"/video/unjoined-room-info\") roomId: {}, userId: {}", roomId, userId);
ExitResponse exitResponse = chattingService.exit(roomId, userId);
template.convertAndSend("/sub/video/unjoined-room-info/"+roomId, exitResponse);
log.debug("convertAndSend to /sub/video/unjoined-room-info/{}", userId);
return exitResponse;
}
/**
* @param params The Session properties
* @return The Session ID
*/
@PostMapping("/sessions")
public ResponseEntity<String> initializeSession(@RequestBody(required = false) Map<String, Object> params)
throws OpenViduJavaClientException, OpenViduHttpException {
SessionProperties properties = SessionProperties.fromJson(params).build();
Session session = openvidu.createSession(properties);
return new ResponseEntity<>(session.getSessionId(), HttpStatus.OK);
}
/**
* @param sessionId The Session in which to create the Connection
* @param params The Connection properties
* @return The Token associated to the Connection
*/
@PostMapping("/sessions/{sessionId}/connections")
public ResponseEntity<String> createConnection(@PathVariable("sessionId") String sessionId,
@RequestBody(required = false) Map<String, Object> params)
throws OpenViduJavaClientException, OpenViduHttpException {
Session session = openvidu.getActiveSession(sessionId);
if (session == null) {
return new ResponseEntity<>(HttpStatus.NOT_FOUND);
}
ConnectionProperties properties = ConnectionProperties.fromJson(params).build();
Connection connection = session.createConnection(properties);
return new ResponseEntity<>(connection.getToken(), HttpStatus.OK);
}
// caller의 정보를 다른 callee들에게 쏴준다.
@MessageMapping("/video/caller-info/{roomId}")
private void caller(@DestinationVariable final String roomId,JSONObject ob) {
template.convertAndSend("/sub/video/caller-info/"+roomId,ob);
log.debug("convertAndSend to /sub/video/caller-info/{} : {}", roomId, ob.toJSONString());
}
// caller와 callee의 signaling을 위해 callee 정보를 쏴준다.
@MessageMapping("/video/callee-info/{roomId}")
private void answerCall(@DestinationVariable final String roomId,JSONObject ob) {
template.convertAndSend("/sub/video/callee-info/"+roomId,ob);
log.debug("convertAndSend to /sub/video/callee-info/{} : {}", roomId, ob);
}
@EventListener
private void handleSessionConnected(SessionConnectEvent event) {
String sessionId = SimpAttributesContextHolder.currentAttributes().getSessionId();
//connect하고 나서 클라이언트한테 본내주면 될 듯
log.debug("session connected sessionId: {}", sessionId);
}
@EventListener
public void handleSessionDisconnect(SessionDisconnectEvent event) {
StompHeaderAccessor accessor = StompHeaderAccessor.wrap(event.getMessage());
String sessionId = accessor.getSessionId();
log.debug("disconnect event Listener sessionId: {}", sessionId);
}
@PostMapping("/video")
public ResponseEntity<UserAndRoomResponse> createRoomAndUser(@RequestBody JSONObject ob) {
String username = (String) ob.get("username");
UserAndRoomResponse response = chattingService.createRoomAndUser(username);
return ResponseEntity.ok(response);
}
@PostMapping("/video/user")
public ResponseEntity<UserResponse> createUser(@RequestBody JSONObject ob) {
String username = (String) ob.get("username");
UserResponse response = chattingService.createOnlyUser(username);
return ResponseEntity.ok(response);
}
@DeleteMapping("/video")
public void clearRoomAndUser() {
chattingService.clear();
}
}