-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathasyncapi.yaml
More file actions
297 lines (297 loc) · 7.65 KB
/
asyncapi.yaml
File metadata and controls
297 lines (297 loc) · 7.65 KB
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
asyncapi: "2.6.0"
info:
title: Playproof 소켓 API
version: "1.0.0"
description: |
Playproof 실시간 이벤트 (Socket.IO).
클라이언트는 Authorization 헤더(Bearer) 또는 socket auth 토큰으로 JWT를 제공해야 합니다.
defaultContentType: application/json
servers:
socket:
url: "{host}"
protocol: socket.io
description: Socket.IO 서버 엔드포인트
variables:
host:
default: localhost:3000
description: API 서버 호스트와 포트
security:
- bearerAuth: []
channels:
joinRoom:
subscribe:
summary: 클라이언트가 채팅방에 참여
message:
$ref: "#/components/messages/JoinRoom"
leaveRoom:
subscribe:
summary: 클라이언트가 채팅방을 나감
message:
$ref: "#/components/messages/LeaveRoom"
sendMessage:
subscribe:
summary: 클라이언트가 채팅 메시지 전송
message:
$ref: "#/components/messages/SendMessage"
newMessage:
publish:
summary: 서버가 새 채팅 메시지 브로드캐스트
message:
$ref: "#/components/messages/NewMessage"
voiceJoin:
subscribe:
summary: 클라이언트가 보이스룸에 참여
message:
$ref: "#/components/messages/VoiceJoin"
voiceLeave:
subscribe:
summary: 클라이언트가 보이스룸을 나감
message:
$ref: "#/components/messages/VoiceLeave"
voiceUserJoined:
publish:
summary: 서버가 보이스룸 참여 브로드캐스트
message:
$ref: "#/components/messages/VoiceUserJoined"
voiceUserLeft:
publish:
summary: 서버가 보이스룸 퇴장 브로드캐스트
message:
$ref: "#/components/messages/VoiceUserLeft"
getFriendOnlineStatus:
subscribe:
summary: 친구 온라인 상태 목록 조회
message:
$ref: "#/components/messages/GetFriendOnlineStatus"
friendOnline:
publish:
summary: 친구가 온라인 상태가 됨
message:
$ref: "#/components/messages/FriendOnline"
friendOffline:
publish:
summary: 친구가 오프라인 상태가 됨
message:
$ref: "#/components/messages/FriendOffline"
error:
publish:
summary: 서버가 에러 정보 전송
message:
$ref: "#/components/messages/Error"
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
messages:
JoinRoom:
name: joinRoom
title: 채팅방 참여 요청
description: |
응답(ack):
- ok: true, data: { roomId, azitId }
- ok: false, error: ApiError
payload:
$ref: "#/components/schemas/JoinRoomPayload"
LeaveRoom:
name: leaveRoom
title: 채팅방 나가기 요청
payload:
$ref: "#/components/schemas/JoinRoomPayload"
SendMessage:
name: sendMessage
title: 채팅 메시지 전송 요청
description: |
응답(ack):
- ok: true, data: ChatMessage
- ok: false, error: ApiError
payload:
$ref: "#/components/schemas/SendMessagePayload"
NewMessage:
name: newMessage
title: 새 채팅 메시지 브로드캐스트
payload:
$ref: "#/components/schemas/ChatMessage"
VoiceJoin:
name: voiceJoin
title: 보이스룸 참여 요청
description: |
응답(ack):
- ok: true, data: { roomId }
- ok: false, error: ApiError
payload:
$ref: "#/components/schemas/JoinRoomPayload"
VoiceLeave:
name: voiceLeave
title: 보이스룸 나가기 요청
description: |
응답(ack):
- ok: true, data: { roomId }
- ok: false, error: ApiError
payload:
$ref: "#/components/schemas/JoinRoomPayload"
VoiceUserJoined:
name: voiceUserJoined
title: 보이스룸 참여 이벤트
payload:
$ref: "#/components/schemas/VoiceUserEvent"
VoiceUserLeft:
name: voiceUserLeft
title: 보이스룸 퇴장 이벤트
payload:
$ref: "#/components/schemas/VoiceUserEvent"
GetFriendOnlineStatus:
name: getFriendOnlineStatus
title: 친구 온라인 상태 목록 조회 요청
description: |
응답(ack):
- ok: true, data: { onlineIds: number[] }
- ok: false, error: ApiError
payload:
$ref: "#/components/schemas/FriendOnlineStatusPayload"
FriendOnline:
name: friendOnline
title: 친구 온라인 이벤트
payload:
$ref: "#/components/schemas/FriendPresenceEvent"
FriendOffline:
name: friendOffline
title: 친구 오프라인 이벤트
payload:
$ref: "#/components/schemas/FriendPresenceEvent"
Error:
name: error
title: 에러 이벤트
payload:
$ref: "#/components/schemas/ApiError"
schemas:
JoinRoomPayload:
type: object
required:
- roomId
properties:
roomId:
type: integer
example: 1
SendMessagePayload:
type: object
required:
- roomId
properties:
roomId:
type: integer
example: 1
content:
type: string
nullable: true
description: 메시지 텍스트 (없으면 mediaUrls 필요)
example: "안녕하세요!"
mediaUrls:
type: array
items:
type: string
format: uri
maxItems: 5
description: 업로드 API로 받은 이미지 URL 목록
ChatMessage:
type: object
required:
- id
- chatRoomId
- memberId
- userId
- content
- createdAt
properties:
id:
type: integer
example: 1
chatRoomId:
type: integer
example: 1
memberId:
type: integer
example: 1
userId:
type: integer
example: 1
nickname:
type: string
nullable: true
example: "닉네임"
content:
type: string
example: "안녕하세요!"
mediaUrls:
type: array
items:
type: string
format: uri
description: 첨부 이미지 URL 목록
createdAt:
type: string
format: date-time
example: "2025-01-01T00:00:00.000Z"
VoiceUserEvent:
type: object
required:
- roomId
- userId
properties:
roomId:
type: integer
example: 1
userId:
type: integer
example: 1
FriendOnlineStatusPayload:
type: object
required:
- userIds
properties:
userIds:
type: array
items:
type: integer
example: [1, 2, 3]
FriendPresenceEvent:
type: object
required:
- userId
properties:
userId:
type: integer
example: 1
ApiErrorDetail:
type: object
required:
- field
- value
- reason
properties:
field:
type: string
example: "roomId"
value:
description: 잘못된 값
nullable: true
reason:
type: string
example: "roomId가 올바르지 않습니다."
ApiError:
type: object
required:
- code
- message
properties:
code:
type: string
example: "INVALID_ROOM"
message:
type: string
example: "roomId가 올바르지 않습니다."
errors:
type: array
items:
$ref: "#/components/schemas/ApiErrorDetail"