-
Notifications
You must be signed in to change notification settings - Fork 1
/
swagger.yaml
387 lines (380 loc) · 9.16 KB
/
swagger.yaml
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
swagger: '2.0'
info:
title: CU Then! API
description: 'AI Matchmaking application, built during the Cloud and Big Data course at Columbia University.'
version: 1.0.0
schemes:
- https
basePath: /v1
produces:
- application/json
paths:
/profile:
get:
summary: Get information of user given user id - Groups they are in, profile info, pending invites
tags:
- GetProfile
operationId: getProfile
parameters:
- name: currentUserId
in: body
required: true
schema:
type: integer
responses:
'200':
description: A valid set of user info
schema:
$ref: '#/definitions/UserInfo'
'403':
description: Unauthorized
schema:
$ref: '#/definitions/Error'
'500':
description: Unexpected error
schema:
$ref: '#/definitions/Error'
post:
summary: Change user information
tags:
- ModifyProfile
operationId: modifyProfile
parameters:
- name: newFeatures
in: body
required: true
schema:
$ref: '#/definitions/ProfileChanges'
responses:
'200':
description: Validation
schema:
type: string
'403':
description: Unauthorized
schema:
$ref: '#/definitions/Error'
'500':
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/getMatchInfo:
post:
summary: Get information of a matched user and the current groups the master user is in
tags:
- GetMatchInfo
operationId: getMatchInfo
produces:
- application/json
parameters:
- name: userMix
in: body
required: true
schema:
type: object
properties:
masterUserId:
type: integer
matchUserId:
type: integer
responses:
'200':
description: A valid set of combined info
schema:
type: object
properties:
matchUserProfile:
$ref: "#/definitions/User"
currentUserGroup:
type: array
items:
$ref: '#/definitions/Group'
'403':
description: Unauthorized
schema:
$ref: '#/definitions/Error'
'500':
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/group:
delete:
summary: Delete group the user is in
tags:
- DeleteGroup
operationId: deleteGroup
parameters:
- name: groupId
in: body
required: true
schema:
type: integer
responses:
'200':
description: Validation
schema:
type: string
'403':
description: Unauthorized
schema:
$ref: '#/definitions/Error'
'500':
description: Unexpected error
schema:
$ref: '#/definitions/Error'
post:
summary: Make new group
tags:
- MakeGroup
operationId: makeGroup
parameters:
- name: userIds
in: body
required: true
schema:
type: object
properties:
groupLeader:
type: integer
groupMembers:
type: array
items:
type: integer
responses:
'200':
description: Group that is made
schema:
$ref: '#/definitions/Group'
'403':
description: Unauthorized
schema:
$ref: '#/definitions/Error'
'500':
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/matchmaker:
post:
summary: CU Then! matchmaking endpoint.
description: |
This API takes in a user ID, fetches the user features, and passes them on to a matchmaking backend that returns a list of other users sorted by cosine similarity.
tags:
- Matchmaking
operationId: matchUser
produces:
- application/json
parameters:
- name: UserId
in: body
required: true
schema:
type: integer
responses:
'200':
description: A valid set of compatible users
schema:
$ref: '#/definitions/Compats'
'403':
description: Unauthorized
schema:
$ref: '#/definitions/Error'
'500':
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/extendInvitation:
post:
summary: Extend invitation
tags:
- Invitations
operationId: extendInvitation
produces:
- application/json
parameters:
- name: o_inv
in: body
required: true
schema:
$ref: '#/definitions/OutgoingInvitation'
responses:
'200':
description: Validation that invitation has been extended
schema:
type: string
'403':
description: Unauthorized
schema:
$ref: '#/definitions/Error'
'500':
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/respondToInvitation:
post:
summary: Respond to invitation
tags:
- Invitations
operationId: respondToInvitation
produces:
- application/json
parameters:
- name: response
in: body
required: true
schema:
$ref: '#/definitions/InvitationResponse'
responses:
'200':
description: Y/N response depending on whether or not invitation was accepted
schema:
type: string
'403':
description: Unauthorized
schema:
$ref: '#/definitions/Error'
'500':
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/chat:
post:
summary: Chat with other users
tags:
- Chat
operationId: chat
produces:
- application/json
parameters:
- name: chat
in: body
required: true
schema:
$ref: '#/definitions/ChatDiscussion'
responses:
'200':
description: Gets the list of messages of the group chat, and append the user's own message if UserChatMessage in body is not None
schema:
type: array
items:
$ref: "#/definitions/UserChatMessage"
'403':
description: Unauthorized
schema:
$ref: '#/definitions/Error'
'500':
description: Unexpected error
schema:
$ref: '#/definitions/Error'
definitions:
User:
type: object
properties:
userId:
type: integer
userName:
type: string
userFeatures:
type: array
items:
$ref: '#/definitions/Feature'
UserInfo:
type: object
properties:
groups:
type: array
items:
$ref: '#/definitions/Group'
userName:
type: string
userFeatures:
type: array
items:
$ref: '#/definitions/Feature'
pendingInvites:
type: array
items:
$ref: '#/definitions/IncomingInvitation'
Group:
type: object
properties:
groupId:
type: integer
groupLeader:
$ref: "#/definitions/User"
groupMembers:
type: array
items:
$ref: "#/definitions/User"
Compats:
type: object
properties:
compatibleUsers:
type: array
items:
$ref: '#/definitions/User'
Feature:
type: object
properties:
featureName:
type: string
featureValue:
type: string
Error:
type: object
properties:
code:
type: integer
format: int32
message:
type: string
OutgoingInvitation:
type: object
properties:
invitee:
type: integer
currentGroup:
type: integer
IncomingInvitation:
type: object
properties:
invitingGroup:
$ref: "#/definitions/Group"
invitee:
$ref: "#/definitions/User"
ChatDiscussion:
type: object
properties:
currentGroup:
$ref: "#/definitions/Group"
currentUser:
$ref: "#/definitions/User"
message:
$ref: "#/definitions/UserChatMessage"
ProfileChanges:
type: object
properties:
currentUser:
$ref: "#/definitions/User"
newFeatures:
type: array
items:
$ref: '#/definitions/Feature'
UserChatMessage:
type: object
properties:
userName:
type: string
text:
type: string
timestamp:
type: string
format: datetime
InvitationResponse:
type: object
properties:
response:
type: string
inviteeID:
type: integer
groupID:
type: integer