-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitcamp-openapi.yaml
623 lines (622 loc) · 15.2 KB
/
bitcamp-openapi.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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
openapi: 3.0.1
info:
title: Bitcamp Backend
description: >-
The backend for the Bitcamp's app, live site, etc.
Supplements Dashboard.
contact:
email: tech@bit.camp
license:
name: MIT
version: 1.0.0
servers:
- url: https://api.bit.camp
tags:
- name: login
description: User Auth
- name: announce
description: Announcements and Notifications
- name: entry
description: Checking in to Bitcamp
- name: events
description: Events within Bitcamp.
- name: questions
description: Questions server
- name: teams
description: Team endpoints
paths:
/login:
post:
tags:
- login
summary: Log in as a hacker or organizer
description: Auths a user with the backend for the main app.
operationId: hackerLogin
requestBody:
description: "User credentials"
content:
application/json:
schema:
$ref: "#/components/schemas/LoginBody"
responses:
200:
description: successful operation
headers:
access-token:
schema:
type: string
description: Client auth token
content:
application/json:
schema:
$ref: "#/components/schemas/UserData"
400:
description: Invalid login
content: {}
/login/admin:
post:
tags:
- login
summary: Log in as an organizer
description: Like /login, but with a server-side check that the person is at least an organizer.
operationId: adminLogin
requestBody:
description: "User credentials"
content:
application/json:
schema:
$ref: "#/components/schemas/LoginBody"
responses:
200:
description: successful operation
headers:
access-token:
schema:
type: string
description: Client auth token
content:
application/json:
schema:
$ref: "#/components/schemas/UserData"
400:
description: Invalid login
content: {}
/login/validate-token:
get:
tags:
- login
summary: Validate a user's authentication token
description: Returns whether the user's auth token is valid
operationId: validateToken
security:
- HackerToken: []
- AdminToken: []
responses:
200:
description: The user has a valid token
content: {}
400:
description: Invalid token
content: {}
/announce:
get:
tags:
- announce
summary: Gets a list of announcements
description: Gets a list of all announcements
operationId: listAnnouncements
responses:
200:
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Announcement"
post:
tags:
- announce
summary: Create an announcement
operationId: createAnnounce
security:
- AdminToken: []
requestBody:
description: "Announcement"
content:
application/json:
schema:
type: object
properties:
title:
type: string
body:
type: string
responses:
200:
description: successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/Announcement"
400:
description: Invalid body
content: {}
put:
tags:
- announce
summary: Update an announcement
operationId: updateAnnouncement
security:
- AdminToken: []
parameters:
- in: "query"
name: id
schema:
type: integer
requestBody:
description: "Announcement"
content:
application/json:
schema:
type: object
properties:
title:
type: string
body:
type: string
responses:
200:
description: successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/Announcement"
400:
description: Invalid body
content: {}
delete:
tags:
- announce
summary: Delete an announcement
operationId: deleteAnnouncement
security:
- AdminToken: []
parameters:
- in: "query"
name: id
schema:
type: integer
responses:
204:
description: The resource was deleted successfully.
400:
description: Invalid id
content: {}
/announce/subscribe:
post:
tags:
- announce
summary: Subscribes to push notifications with an expo token.
description: Accepts a user's expo token, and sends announcements to them
operationId: notifySubscribe
security:
- HackerToken: []
- AdminToken: []
requestBody:
description: "User credentials"
content:
application/json:
schema:
type: object
properties:
token:
type: string
responses:
204:
description: Successful pairing
400:
description: Error
content: {}
/entry/checkin:
post:
tags:
- entry
summary: Checks a user in to Bitcamp
description: Accepts a hacker's email, marks them as checked in, and returns their info
operationId: entryCheckin
security:
- AdminToken: []
requestBody:
description: "Email"
content:
application/json:
schema:
type: object
properties:
email:
type: string
format: email
responses:
200:
description: successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/UserData"
400:
description: Invalid body
content: {}
/entry/nfc-pair:
post:
tags:
- entry
summary: Associates a NFC id with a user
description: Associates a NFC id with a user
operationId: entryPairing
security:
- AdminToken: []
requestBody:
description: "User id, nfc data"
content:
application/json:
schema:
type: object
properties:
id:
type: integer
description: user id
nfc:
type: string
description: data from NFC band
responses:
204:
description: Paired successful
400:
description: Invalid body
content: {}
/events:
get:
tags:
- events
summary: List events
description: List of all events
operationId: listEvents
responses:
200:
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Event"
/events/follow:
post:
tags:
- events
summary: Follows an event
description: Allows user to get notified prior to the event.
operationId: followEvent
security:
- HackerToken: []
- AdminToken: []
parameters:
- in: "query"
name: id
schema:
type: integer
responses:
204:
description: successful operation
404:
description: event not found
/events/unfollow:
post:
tags:
- events
summary: Unfollow an event
description: Removes user from being notified about an event
operationId: unfollowEvent
security:
- HackerToken: []
- AdminToken: []
parameters:
- in: "query"
name: id
schema:
type: integer
responses:
204:
description: successful operation
404:
description: event not found
/events/following-count:
get:
tags:
- events
summary: List how many people favorited each event
description: List of all ids and how many people favorited each
operationId: listFavoriteCounts
responses:
200:
description: successful operation
content:
application/json:
schema:
type: array
items:
type: object
properties:
eventId:
type: integer
count:
type: integer
/events/following:
get:
tags:
- events
summary: List a user's followed events
description: List the ids of each event the user follows
operationId: listUserFollows
security:
- HackerToken: []
- AdminToken: []
responses:
200:
description: successful operation
content:
application/json:
schema:
type: array
items:
type: integer
uniqueItems: true
/events/checkin:
post:
tags:
- events
summary: Checks a user in to an event
description: Accepts a hacker's email, marks them as checked in, and returns their info
operationId: eventCheckin
security:
- AdminToken: []
requestBody:
description: "Email or NFC"
content:
application/json:
schema:
type: object
properties:
email:
type: string
nullable: true
nfcId:
type: string
nullable: true
responses:
200:
description: successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/UserData"
400:
description: Invalid body
content: {}
/questions:
get:
tags:
- questions
description: List all of a user's questions
summary: List all of a user's questions
security:
- HackerToken: []
- AdminToken: []
responses:
200:
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Question"
/questions/submit:
post:
tags:
- questions
description: Submit question
summary: Submit question
security:
- HackerToken: []
- AdminToken: []
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/BaseQuestion"
responses:
200:
description: successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/Question"
400:
description: invalid credentials
/questions/delete:
delete:
tags:
- questions
description: Detelete a question (only the original asker can delete a question)
summary: Deletes a question
security:
- HackerToken: []
- AdminToken: []
parameters:
- in: "query"
name: questionId
schema:
type: integer
responses:
204:
description: The resource was deleted successfully.
400:
description: invalid credentials
/questions/claim:
post:
tags:
- questions
description: Claim question
summary: Claim question
security:
- AdminToken: []
responses:
204:
description: successful operation
/teams:
get:
tags:
- teams
description: Get team scores
summary: Get team scores
responses:
200:
description: successful operation
content:
application/json:
schema:
type: array
items:
type: object
properties:
color:
$ref: "#/components/schemas/Team"
points:
type: integer
components:
schemas:
Team:
type: string
enum:
- "red"
- "green"
- "blue"
LoginBody:
type: object
properties:
email:
type: string
format: email
password:
type: string
format: password
UserData:
type: object
properties:
id:
type: integer
firstName:
type: string
lastName:
type: string
email:
type: string
format: email
userType:
type: string
enum:
- attendee
- mentor
- organizer
- admin
rsvp:
type: string
checkIn:
type: string
team:
$ref: "#/components/schemas/Team"
foodRestrictions:
type: boolean
foodRestrictionsInfo:
type: string
Announcement:
type: object
properties:
id:
type: integer
title:
type: string
body:
type: string
timestamp:
type: string
format: date-time
Event:
type: object
properties:
id:
type: integer
title:
type: string
description:
type: string
caption:
type: string
categories:
type: array
items:
type: string
enum:
- main
- food
- mini
- workshop
- sponsored
uniqueItems: true
location:
type: string
startTime:
type: string
format: date-time
endTime:
type: string
format: date-time
pointVal:
type: string
BaseQuestion:
type: object
properties:
question:
type: string
slackUsername:
type: string
location:
type: string
Question:
allOf:
- $ref: "#/components/schemas/BaseQuestion"
- type: object
properties:
id:
type: integer
askerId:
type: integer
claimed:
type: boolean
claimerName:
type: string
nullable: true
timestamp:
type: string
format: datetime
securitySchemes:
HackerToken:
type: apiKey
in: header
name: access-token
AdminToken:
type: apiKey
in: header
name: access-token