-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yaml
1021 lines (994 loc) · 31.8 KB
/
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
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.0
info:
title: DDD API
description: 사용자 등록, 출석 및 관리 API입니다.
version: 0.3.0
servers:
- url: https://localhost:8000/v1
description: 로컬 개발 서버
tags:
- name: health-check
description: 서버 상태 확인 관련 작업
- name: auth
description: 사용자 인증 관련 작업
- name: invite-code
description: 초대코드 관련 작업
- name: user
description: 사용자 등록 및 관리 관련 작업
- name: qr
description: QR 코드 관련 작업
- name: schedule
description: 스케쥴 관련 작업
- name: attendance
description: 출석 관련 작업
paths:
/health:
get:
tags:
- health-check
summary: 서버 헬스 체크
description: 서버의 상태를 확인하기 위한 헬스 체크 엔드포인트입니다.
responses:
'200':
description: 서버가 정상적으로 작동 중
content:
application/json:
schema:
type: object
properties:
code:
type: number
message:
type: string
data:
type: object
properties:
status:
type: string
example: "healthy"
timestamp:
type: string
format: date-time
description: 요청 시각 (ISO8601 포맷, UTC)
example: "2024-10-06T12:34:56Z"
/auth/google/url:
get:
tags:
- auth
summary: Generate Google Login URL
description: Endpoint to generate the Google login URL.
responses:
200:
description: Successfully generated the Google login URL.
content:
application/json:
schema:
type: object
properties:
login_url:
type: string
example: "https://accounts.google.com/o/oauth2/auth"
/auth/google/login:
post:
tags:
- auth
summary: Login with Google
description: Login or register a user using Google auth.
requestBody:
description: The payload for logging in with Google.
required: true
content:
application/json:
schema:
type: object
properties:
access_token:
type: string
example: "your-google-access-token"
responses:
200:
description: Successfully logged in.
content:
application/json:
schema:
type: object
properties:
token:
type: string
example: "your-auth-token"
400:
description: Invalid access token or login failed.
/auth/google/callback:
get:
tags:
- auth
summary: Google auth Callback
description: Handle the callback from Google after successful auth.
responses:
200:
description: Successfully logged in and received JWT.
content:
application/json:
schema:
type: object
properties:
access_token:
type: string
example: "your-jwt-access-token"
refresh_token:
type: string
example: "your-jwt-refresh-token"
400:
description: auth failed.
/auth/token/refresh:
post:
tags:
- auth
summary: Refresh JWT
description: Refresh the JWT access token using the refresh token.
requestBody:
description: The payload for refreshing the access token.
required: true
content:
application/json:
schema:
type: object
properties:
refresh_token:
type: string
example: "your-jwt-refresh-token"
responses:
200:
description: Successfully refreshed the access token.
content:
application/json:
schema:
type: object
properties:
access_token:
type: string
example: "new-jwt-access-token"
400:
description: Invalid refresh token.
/auth/token/verify:
post:
tags:
- auth
summary: Verify JWT
description: Verify the JWT access token and return the associated user ID.
requestBody:
description: The payload for verifying the JWT.
required: true
content:
application/json:
schema:
type: object
properties:
access_token:
type: string
example: "your-jwt-access-token"
responses:
200:
description: Successfully verified the JWT and retrieved the user ID.
content:
application/json:
schema:
type: object
properties:
code:
type: number
message:
type: string
data:
type: object
properties:
user_id:
type: integer
example: 123
400:
description: Invalid or expired JWT.
/invite-code:
post:
tags:
- invite-code
summary: 초대코드 생성
description: 일반 유저 또는 운영진으로 등록할 수 있는 초대코드를 생성합니다.
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
invite_type:
type: string
enum: [member, moderator]
description: 초대코드 유형 (멤버 또는 운영진)
expire_time:
type: string
format: date-time
description: 초대코드 만료 시각 (기본 일주일)
one_time_use:
type: boolean
default: false
description: 초대 코드를 한 번만 사용 가능한 경우 (기본 false)
required:
- invite_type
responses:
'201':
description: 초대코드가 성공적으로 생성되었습니다.
content:
application/json:
schema:
type: object
properties:
code:
type: number
message:
type: string
data:
$ref: '#/components/schemas/InviteCode'
'400':
description: 잘못된 요청 데이터
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'401':
description: 인증 실패
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/invite-code/validation:
post:
tags:
- invite-code
summary: 초대코드 검증
description: 사용자가 입력한 초대코드의 유효성을 검사합니다.
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
invite_code:
type: string
description: 검증할 초대코드
required:
- invite_code
responses:
'200':
description: 초대코드가 유효함
content:
application/json:
schema:
type: object
properties:
code:
type: number
message:
type: string
default: "valid invite code."
data:
type: object
properties:
valid:
type: boolean
description: 초대코드의 유효성 여부.
invite_type:
type: string
enum: [member, moderator]
description: 초대 유형 (멤버 또는 운영진).
'400':
description: 잘못된 초대코드
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/users:
post:
tags:
- user
summary: 신규 유저 등록
description: 초대코드를 사용하여 일반 유저 또는 운영진을 등록합니다.
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
invite_code:
type: string
example: "1234"
description: 등록에 사용할 초대코드
name:
type: string
example: "김디디"
description: 유저의 이름
tags:
type: array
example: ["role:member", "position:designer", "team:ios2", "generation:11기"]
items:
type: string
description: 사용자 태그
required:
- invite_code
- name
responses:
'201':
description: 유저가 성공적으로 등록되었습니다.
content:
application/json:
schema:
$ref: "#/components/schemas/SuccessResponse"
'400':
description: 잘못된 초대코드 또는 누락된 정보
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/users/{user_id}:
get:
tags:
- user
summary: 유저 정보 조회 ("me" 사용 가능)
description: 인증된 사용자의 개인 정보를 조회합니다.
security:
- bearerAuth: []
parameters:
- name: user_id
required: true
in: path
schema:
type: string
description: 조회할 유저의 ID (UUID 사용)
responses:
'200':
description: 개인 정보 조회 성공
content:
application/json:
schema:
type: object
properties:
code:
type: number
message:
type: string
data:
type: object
properties:
name:
type: string
example: "김디디"
description: 유저 이름
tags:
type: array
example: ["role:member", "position:designer", "team:ios2", "generation:11기"]
items:
type: string
description: 사용자 태그
'401':
description: 인증 실패
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
patch:
tags:
- user
summary: 유저 정보 수정
description: 유저의 정보를 수정합니다.
security:
- bearerAuth: []
parameters:
- name: user_id
required: true
in: path
schema:
type: string
description: 수정할 유저의 ID (UUID 사용)
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
name:
type: string
example: "김디디"
description: 유저의 이름
tags:
type: array
example: ["role:member", "position:designer", "team:ios2", "generation:11기"]
items:
type: string
description: 사용자 태그
responses:
'200':
description: 개인정보 수정 완료
content:
application/json:
schema:
$ref: "#/components/schemas/SuccessResponse"
delete:
tags:
- user
summary: 유저 탈퇴
description: 인증된 사용자의 유저 정보를 삭제합니다.
security:
- bearerAuth: []
parameters:
- name: user_id
in: path
required: true
schema:
type: string
description: 삭제할 유저의 ID (UUID 사용)
responses:
'200':
description: 유저 탈퇴 성공
content:
application/json:
schema:
$ref: "#/components/schemas/SuccessResponse"
'401':
description: 인증 실패
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'400':
description: 오류로 인한 삭제 실패
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/users/{user_id}/attendance:
get:
tags:
- user
summary: 유저의 출석 정보 조회
description: 특정 유저의 출석 정보를 조회합니다.
security:
- bearerAuth: []
parameters:
- name: user_id
in: path
required: true
schema:
type: string
description: 조회할 유저의 ID
responses:
'200':
description: 출석 정보 조회 성공
content:
application/json:
schema:
type: object
properties:
code:
type: number
message:
type: string
data:
type: object
properties:
start_time:
type: string
format: date-time
description: 활동 시작 날짜 (ISO8601 포맷, UTC)
end_time:
type: string
format: date-time
description: 활동 종료 날짜 (ISO8601 포맷, UTC)
attendance_count:
type: integer
description: 출석 횟수
late_count:
type: integer
description: 지각 횟수
absent_count:
type: integer
description: 결석 횟수
schedules:
type: array
description: 참석 대상인 모든 스케쥴
items:
type: object
properties:
title:
type: string
example: "직군 세션2"
description: 스케쥴 제목
description:
type: string
example: "커리큘럼에 대한 설명 문구 작성"
description: 스케쥴 설명 문구
schedule_time:
type: string
format: date-time
description: 스케쥴 시간 (ISO8601 포맷, UTC)
attendance_status:
type: string
enum: [tbd, present, late, absent, exception]
description: 출석 상태 (미정, 출석, 지각, 결석, 예외)
note:
type: string
example: "군대 훈련으로 인한 결석 등..🧏"
description: 출석 관련 비고
'401':
description: 인증 실패
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/qr/encode:
post:
tags:
- qr
summary: QR 문자열 생성
description: 사용자 ID 및 타임스탬프를 포함하여, QR로 인코딩할 문자열을 생성합니다.
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
user_id:
type: string
format: uuid
description: 사용자의 ID (UUID)
required:
- user_id
responses:
'200':
description: QR 문자열이 성공적으로 생성되었습니다.
content:
application/json:
schema:
type: object
properties:
code:
type: number
example: 200
message:
type: string
example: "QR encode success"
data:
type: object
properties:
qr_string:
type: string
example: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
description: QR 인코딩된 문자열(JWT 등)
/qr/decode:
post:
tags:
- qr
summary: QR 문자열 디코딩/검증
description: QR 문자열을 디코딩한 뒤, 포함된 시간 정보가 유효한지(만료 등)를 검증합니다.
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
qr_string:
type: string
description: 디코딩할 QR 문자열(JWT 등)
required:
- qr_string
responses:
'200':
description: 유효한 QR 문자열로부터 정보를 성공적으로 디코딩했습니다.
content:
application/json:
schema:
type: object
properties:
code:
type: number
example: 200
message:
type: string
example: "QR decode success"
data:
type: object
properties:
user_id:
type: string
format: uuid
description: 디코딩된 사용자 ID (UUID)
timestamp:
type: string
format: date-time
description: QR 생성 시간 (ISO8601 포맷, UTC)
'400':
description: QR 문자열을 해석할 수 없음 (형식 오류 등)
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'410':
description: QR 정보가 만료되었거나 사용 불가능함
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'422':
description: QR 문자열은 해독됐지만, 추가적으로 처리할 수 없는 상태 (기타 예외)
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/schedules:
get:
tags:
- schedule
summary: 스케쥴 목록 조회
description: 스케쥴 목록을 조회합니다.
security:
- bearerAuth: []
responses:
'200':
description: 스케쥴 목록
content:
application/json:
schema:
type: object
properties:
code:
type: number
message:
type: string
data:
type: array
items:
type: object
properties:
id:
type: string
format: uuid
description: 스케쥴 ID (UUID)
title:
type: string
example: "직군 세션2"
description: 스케쥴 제목
description:
type: string
example: "커리큘럼에 대한 설명 문구 작성"
description: 스케쥴 설명 문구
start_time:
type: string
format: date-time
description: 스케쥴 시작 시간 (ISO8601 포맷, UTC)
end_time:
type: string
format: date-time
description: 스케쥴 종료 시간 (ISO8601 포맷, UTC)
/schedules/{schedule_id}:
get:
tags:
- schedule
summary: 스케쥴 조회 ("now" 사용 가능)
description: 특정 스케쥴의 세부 정보를 조회합니다.
security:
- bearerAuth: []
parameters:
- name: schedule_id
in: path
required: true
schema:
type: string
format: uuid
description: 조회할 스케쥴의 ID (UUID 사용)
responses:
'200':
description: 스케쥴 세부 정보 조회
content:
application/json:
schema:
type: object
properties:
code:
type: number
message:
type: string
data:
type: object
properties:
title:
type: string
example: "직군 세션2"
description: 스케쥴 제목
description:
type: string
example: "커리큘럼에 대한 설명 문구 작성"
description: 스케쥴 설명 문구
start_time:
type: string
format: date-time
description: 스케쥴 시작 시간 (ISO8601 포맷, UTC)
end_time:
type: string
format: date-time
description: 스케쥴 종료 시간 (ISO8601 포맷, UTC)
patch:
tags:
- schedule
summary: 스케쥴 수정
description: 특정 스케쥴의 정보를 수정합니다.
security:
- bearerAuth: []
parameters:
- name: schedule_id
in: path
required: true
schema:
type: string
format: uuid
description: 수정할 스케쥴의 ID (UUID 사용)
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
title:
type: string
example: "직군 세션2"
description: 스케쥴 제목
description:
type: string
example: "커리큘럼에 대한 설명 문구 작성"
description: 스케쥴 설명 문구
start_time:
type: string
format: date-time
description: 스케쥴 시작 시간 (ISO8601 포맷, UTC)
end_time:
type: string
format: date-time
description: 스케쥴 종료 시간 (ISO8601 포맷, UTC)
responses:
'200':
description: 스케쥴 수정 성공
content:
application/json:
schema:
$ref: "#/components/schemas/SuccessResponse"
'400':
description: 잘못된 요청 데이터
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
delete:
tags:
- schedule
summary: 스케쥴 삭제
description: 특정 스케쥴을 삭제합니다.
security:
- bearerAuth: []
parameters:
- name: schedule_id
in: path
required: true
schema:
type: string
format: uuid
description: 삭제할 스케쥴의 ID (UUID 사용)
responses:
'200':
description: 스케쥴 삭제 성공
content:
application/json:
schema:
$ref: "#/components/schemas/SuccessResponse"
'400':
description: 오류로 인한 삭제 실패
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/schedules/{schedule_id}/attendances:
get:
tags:
- attendance
summary: 출석 현황 조회
description: 특정 스케줄의 출석 현황을 조회합니다.
security:
- bearerAuth: []
parameters:
- name: schedule_id
in: path
required: true
schema:
type: string
description: 조회할 스케줄 ID
responses:
'200':
description: 출석 현황 조회 성공
content:
application/json:
schema:
type: object
properties:
code:
type: number
message:
type: string
data:
type: object
properties:
attendance_count:
type: integer
description: 출석 인원
late_count:
type: integer
description: 지각 인원
absent_count:
type: integer
description: 결석 인원
members:
type: array
description: 참석 대상인 모든 멤버
items:
type: object
properties:
name:
type: string
example: "김디디"
description: 유저 이름
tags:
type: array
example: ["role:member", "position:designer", "team:ios2", "generation:11기"]
items:
type: string
description: 사용자 태그
attendance_status:
type: string
enum: [tbd, present, late, absent, exception]
description: 출석 상태 (미정, 출석, 지각, 결석, 예외)
note:
type: string
example: "군대 훈련으로 인한 결석 등..🧏"
description: 출석 관련 비고
/schedules/{schedule_id}/attendances/{user_id}:
patch:
tags:
- attendance
summary: 출석 수정
description: 특정 스케줄의 출석을 수정합니다.
security:
- bearerAuth: []
parameters:
- name: schedule_id
in: path
required: true
schema:
type: string
format: uuid
description: 수정할 스케쥴의 ID (UUID 사용)
- name: user_id
in: path
required: true
schema:
type: string
format: uuid
description: 수정할 멤버 ID (UUID 사용)
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
attendance_status:
type: string
enum: [present, late, absent, unknown]
description: 출석 상태 (출석, 지각, 결석, 정보 없음)
attendance_time:
type: string
format: date-time
description: 출석이 등록된 시간 (ISO8601 포맷, UTC)
method:
type: string
enum: [qr, manual]
description: 출석 등록 방법 (QR 코드 또는 수동 등록)
note:
type: string
example: "군대 훈련으로 인한 결석 등..🧏"
description: 출석 관련 비고
responses:
'200':
description: 출석이 성공적으로 수정되었습니다.
content:
application/json:
schema:
$ref: "#/components/schemas/SuccessResponse"
'400':
description: 잘못된 요청 데이터
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
'401':
description: 인증 실패
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
schemas:
InviteCode:
type: object
properties:
code:
type: string
description: 등록을 위한 초대코드
invite_type:
type: string
enum: [member, moderator]
description: 초대 유형 (일반 유저 또는 운영진)
created_at:
type: string
format: date-time
description: 생성 시각 (ISO8601 포맷, UTC)
required:
- code
- invite_type
- created_at
SuccessResponse:
type: object
properties:
code:
type: number
description: 성공 코드
message:
type: string
example: "success"
description: 성공 메시지
data: