-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
422 lines (415 loc) · 11.2 KB
/
openapi.yaml
File metadata and controls
422 lines (415 loc) · 11.2 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
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
openapi: 3.1.0
servers:
- url: http://localhost:8080
description: 開発環境
info:
title: 基本情報編集API
version: 1.0.0
description: ユーザーの基本情報を編集するためのAPI
paths:
/api/profile/basic-info:
get:
summary: 基本情報を取得する
description: 現在登録されているユーザーの基本情報を返します。
responses:
'200':
description: 取得成功
content:
application/json:
schema:
$ref: '#/components/schemas/BasicInfo'
'500':
description: サーバーエラー
put:
summary: 基本情報を更新する
description: 学籍番号や名前、自己紹介などの基本情報を編集します。
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/BasicInfo'
responses:
'200':
description: 更新成功
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateResponse'
'400':
description: バリデーションエラー
'500':
description: サーバーエラー
/api/members:
get:
summary: メンバー一覧を取得する
description: サークルメンバーのサマリ情報一覧を返します。
responses:
'200':
description: 取得成功
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/MemberSummary'
'500':
description: サーバーエラー
post:
summary: メンバーを登録する
description: 新しいメンバーを登録します。
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/MemberCreate'
responses:
'201':
description: 登録成功
content:
application/json:
schema:
$ref: '#/components/schemas/MemberCreateResponse'
'400':
description: バリデーションエラー
'500':
description: サーバーエラー
/api/members/{id}:
get:
summary: メンバー詳細を取得する
description: 指定したメンバーの詳細情報を返します。
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: 取得成功
content:
application/json:
schema:
$ref: '#/components/schemas/MemberDetail'
'404':
description: メンバーが見つかりません
'500':
description: サーバーエラー
/api/line-oauth:
get:
summary: LINE OAuthコールバック
description: LINEのOAuthコールバックURLとして、付与されたcodeをアクセストークンに交換し、認証済みユーザー情報を返します。
parameters:
- name: code
in: query
required: true
schema:
type: string
description: LINE OAuth認可コード
- name: state
in: query
required: false
schema:
type: string
description: CSRF対策のstate値
responses:
'200':
description: アクセストークンとユーザー情報の取得に成功
content:
application/json:
schema:
$ref: '#/components/schemas/LineOAuthResponse'
'400':
description: 無効なcodeまたはstate
'500':
description: サーバーエラー
components:
schemas:
BasicInfo:
type: object
required:
- student_id
- faculty
- last_name
- first_name
- nickname
- self_introduction
- visibility
properties:
student_id:
type: string
example: B1234567
faculty:
type: string
example: 情報工学部
last_name:
type: string
example: 田中
first_name:
type: string
example: 太郎
nickname:
type: string
example: たなたろ
self_introduction:
type: string
description: Markdown形式の自己紹介文
example: |
# 自己紹介
プログラミングが好きな2年生です!
## 興味のある分野
- **Webアプリ開発**
- **機械学習**
visibility:
$ref: '#/components/schemas/Visibility'
Visibility:
type: object
required:
- name
- self_introduction
- x
- instagram
properties:
name:
type: boolean
example: false
self_introduction:
type: boolean
example: true
x:
type: boolean
example: false
instagram:
type: boolean
example: true
UpdateResponse:
type: object
properties:
status:
type: string
example: success
message:
type: string
example: 基本情報を更新しました。
MemberSummary:
type: object
required:
- id
- name
- nickname
- roles
properties:
id:
type: string
example: "1"
name:
type: string
example: "田中 太郎"
nickname:
type: string
example: "たなたろ"
roles:
type: array
items:
type: string
example: ["Web班", "副代表"]
avatar:
type: string
example: "https://example.com/avatar.jpg"
MemberDetail:
allOf:
- $ref: '#/components/schemas/MemberSummary'
- type: object
required:
- department
- year
- bio
- accounts
- links
- events
properties:
department:
type: string
example: "情報工学部"
year:
type: string
example: "2年生"
bio:
type: string
description: Markdown形式の自己紹介
example: |
# 自己紹介
プログラミングが好きな2年生です!
accounts:
type: object
required:
- line
- discord
- github
properties:
line:
type: boolean
example: true
discord:
type: boolean
example: true
github:
type: boolean
example: true
links:
type: array
items:
type: object
required:
- title
- url
properties:
title:
type: string
example: "個人ブログ"
url:
type: string
example: "https://example.com"
events:
type: array
items:
type: object
required:
- name
- date
- status
properties:
name:
type: string
example: "新歓BBQ大会"
date:
type: string
format: date
example: "2024-04-15"
status:
type: string
enum: [upcoming, completed]
example: "upcoming"
LineOAuthResponse:
type: object
required:
- access_token
- expires_in
- user
properties:
access_token:
type: string
description: LINEから発行されたアクセストークン
example: 5C2Yx...d9q
refresh_token:
type: string
description: 必要に応じて返されるリフレッシュトークン
example: 8Pd1...0Lm
expires_in:
type: integer
description: アクセストークンの有効期限(秒)
example: 2592000
user:
$ref: '#/components/schemas/LineUser'
LineUser:
type: object
required:
- user_id
- display_name
properties:
user_id:
type: string
description: LINEユーザーID
example: U123456789abcdef
display_name:
type: string
description: 表示名
example: 田中太郎
picture_url:
type: string
format: uri
description: プロフィール画像URL
example: https://profile.line-scdn.net/abc123
status_message:
type: string
description: ステータスメッセージ
example: いつでも連絡ください
MemberCreate:
type: object
required:
- name
- nickname
- department
- year
- bio
- roles
- accounts
properties:
name:
type: string
example: "田中 太郎"
nickname:
type: string
example: "たなたろ"
department:
type: string
example: "情報工学部"
year:
type: string
example: "2年生"
bio:
type: string
description: Markdown形式の自己紹介
example: "プログラミングが好きな2年生です!"
roles:
type: array
items:
type: string
example: ["Web班", "副代表"]
avatar:
type: string
example: "https://example.com/avatar.jpg"
accounts:
type: object
required:
- line
- discord
- github
properties:
line:
type: boolean
example: true
discord:
type: boolean
example: true
github:
type: boolean
example: false
links:
type: array
items:
type: object
required:
- title
- url
properties:
title:
type: string
example: "個人ブログ"
url:
type: string
example: "https://example.com"
MemberCreateResponse:
type: object
required:
- id
- message
properties:
id:
type: string
description: 登録されたメンバーのID
example: "abc123"
message:
type: string
example: "メンバーを登録しました"