-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
817 lines (793 loc) · 23.9 KB
/
Copy pathopenapi.yaml
File metadata and controls
817 lines (793 loc) · 23.9 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
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
openapi: 3.0.3
info:
title: traPhoto(仮) API
description: 画像とアルバムを管理するためのAPI
version: 1.0.0
contact:
name: traP-jp
url: https://github.com/traP-jp/1m25_10
servers:
- url: http://localhost:3001
description: 開発サーバー(モック)
- url: https://api.your-domain.com
description: 本番サーバー
paths:
/images:
get:
summary: 全ての画像を取得
description: 全ての画像のUUID配列を返します
operationId: getImages
tags:
- Images
responses:
'200':
description: 成功レスポンス
content:
application/json:
schema:
type: array
items:
type: string
format: uuid
example:
- "0198cffa-4228-7afe-ac39-e0c88a0f0b81"
- "01987e0e-bd1d-711f-ad98-1b37e53a6cd3"
'500':
$ref: '#/components/responses/ServerError'
/api/auth/request:
get:
summary: traQ OAuth リクエスト
description: ブラウザをtraQの認可画面へリダイレクトします(サーバー側でstate/code_verifierを一時Cookieに保存)
operationId: authRequest
tags:
- Auth
parameters:
- name: callback
in: query
required: false
description: '認証後に戻る相対パス(例: "/account")'
schema:
type: string
responses:
'302':
description: 認可サーバーへリダイレクト
headers:
Location:
description: traQ 認可エンドポイント
schema:
type: string
'500':
$ref: '#/components/responses/ServerError'
/api/auth/callback:
get:
summary: traQ OAuth コールバック
description: 認可コードをアクセストークンに交換し、クッキーへ保存後にフロントへリダイレクト
operationId: authCallback
tags:
- Auth
parameters:
- name: code
in: query
required: true
schema:
type: string
- name: state
in: query
required: true
schema:
type: string
responses:
'302':
description: フロントエンドへリダイレクト(Set-Cookie でセッション用トークンを設定)
headers:
Location:
description: 'リダイレクト先(callback 指定があればそれ、なければ"/")'
schema:
type: string
'400':
description: code/state が不正
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'502':
description: 認可サーバーとのトークン交換に失敗
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/api/auth/me:
get:
summary: ログイン中ユーザー情報
description: traQ の /users/me を代理取得した最小限のプロフィールを返します。
operationId: authMe
tags:
- Auth
security:
- CookieAuth: []
responses:
'200':
description: 成功
content:
application/json:
schema:
$ref: '#/components/schemas/Me'
'401':
description: 未認証
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/api/auth/logout:
post:
summary: ログアウト
description: セッションCookieを破棄します。
operationId: authLogout
tags:
- Auth
responses:
'204':
description: 成功(内容なし)
'500':
$ref: '#/components/responses/ServerError'
/api/v1/traq/files/{uuid}:
get:
summary: traQファイル本体取得
description: traQ APIを経由してファイル本体を取得し、クライアントにプロキシします。ユーザーのtraQ認証トークンを使用してアクセス権限を検証します。
operationId: getTraqFile
tags:
- traQ Files
security:
- CookieAuth: []
parameters:
- name: uuid
in: path
required: true
description: traQファイルのUUID
schema:
type: string
format: uuid
example: "550e8400-e29b-41d4-a716-446655440001"
responses:
'200':
description: ファイル本体
content:
image/png:
schema:
type: string
format: binary
image/jpeg:
schema:
type: string
format: binary
image/gif:
schema:
type: string
format: binary
application/octet-stream:
schema:
type: string
format: binary
'401':
description: 未認証
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'403':
description: アクセス権限なし
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'404':
description: ファイルが見つかりません
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'500':
$ref: '#/components/responses/ServerError'
/api/v1/traq/files/{uuid}/thumbnail:
get:
summary: traQファイルサムネイル取得
description: traQ APIを経由してファイルのサムネイル画像を取得し、クライアントにプロキシします。ユーザーのtraQ認証トークンを使用してアクセス権限を検証します。
operationId: getTraqFileThumbnail
tags:
- traQ Files
security:
- CookieAuth: []
parameters:
- name: uuid
in: path
required: true
description: traQファイルのUUID
schema:
type: string
format: uuid
example: "550e8400-e29b-41d4-a716-446655440001"
responses:
'200':
description: サムネイル画像
content:
image/png:
schema:
type: string
format: binary
image/jpeg:
schema:
type: string
format: binary
image/gif:
schema:
type: string
format: binary
'401':
description: 未認証
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'403':
description: アクセス権限なし
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'404':
description: ファイルまたはサムネイルが見つかりません
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'500':
$ref: '#/components/responses/ServerError'
/api/v1/images/{id}:
get:
summary: ファイルUUIDから投稿詳細を取得
description: '指定されたファイル/画像UUIDに対応するURL (https://q.trap.jp/files/{id}) を語句検索し、古い順で最も古い1件の投稿(作成者、本文、スタンプ等を含む)を返します。返却はtraQメッセージ検索のヒットオブジェクトをそのまま返します。'
operationId: getLatestMessageByImageId
tags:
- Images
security:
- CookieAuth: []
parameters:
- name: id
in: path
required: true
description: 画像のUUID
schema:
type: string
format: uuid
example: "550e8400-e29b-41d4-a716-446655440001"
responses:
'200':
description: 最も古いヒット1件
content:
application/json:
schema:
type: object
additionalProperties: true
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
# /images/{id}:
# get:
# summary: IDで画像詳細を取得
# description: 特定の画像の作成者と投稿データを含む詳細情報を返します
# operationId: getImageDetail
# tags:
# - Images
# parameters:
# - name: id
# in: path
# required: true
# description: 画像のUUID
# schema:
# type: string
# format: uuid
# example: "550e8400-e29b-41d4-a716-446655440001"
# responses:
# '200':
# description: 成功レスポンス
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/ImageDetail'
# '404':
# $ref: '#/components/responses/NotFound'
# '500':
# $ref: '#/components/responses/ServerError'
/albums:
get:
summary: 全てのアルバムを取得
description: オプションのフィルタリングが可能なアルバムの配列を返します
operationId: getAlbums
tags:
- Albums
parameters:
- name: creator_id
in: query
description: 作成者のUUIDでフィルタ
schema:
type: string
format: uuid
- name: before_date
in: query
description: この日付より前に作成されたアルバムでフィルタ
schema:
type: string
format: date-time
- name: after_date
in: query
description: この日付より後に作成されたアルバムでフィルタ
schema:
type: string
format: date-time
- name: limit
in: query
description: 返すアルバムの最大数(最大100)
schema:
type: integer
minimum: 1
maximum: 100
default: 20
- name: offset
in: query
description: スキップするアルバム数
schema:
type: integer
minimum: 0
default: 0
responses:
'200':
description: 成功レスポンス
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/AlbumItem'
'500':
$ref: '#/components/responses/ServerError'
post:
summary: 新しいアルバムを作成
description: 提供された情報で新しいアルバムを作成します。作成者は認証されたユーザーから決定されます。
operationId: createAlbum
tags:
- Albums
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CreateAlbumRequest'
responses:
'201':
description: アルバムが正常に作成されました
content:
application/json:
schema:
$ref: '#/components/schemas/Album'
'400':
description: 無効なリクエスト
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
description: 権限がありません
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'500':
$ref: '#/components/responses/ServerError'
/albums/{id}:
get:
summary: IDでアルバム詳細を取得
description: 特定のアルバムの詳細情報を返します
operationId: getAlbumDetail
tags:
- Albums
parameters:
- name: id
in: path
required: true
description: アルバムのUUID
schema:
type: string
format: uuid
example: "550e8400-e29b-41d4-a716-446655440001"
responses:
'200':
description: 成功レスポンス
content:
application/json:
schema:
$ref: '#/components/schemas/Album'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
put:
summary: アルバムを更新(非推奨)
description: 提供された情報で既存のアルバムを更新します。今後は PATCH を使用してください。
operationId: updateAlbumUsingPut
deprecated: true
tags:
- Albums
parameters:
- name: id
in: path
required: true
description: アルバムのUUID
schema:
type: string
format: uuid
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateAlbumRequest'
responses:
'200':
description: アルバムが正常に更新されました
content:
application/json:
schema:
$ref: '#/components/schemas/Album'
'400':
description: 無効なリクエスト
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
description: 権限がありません
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
patch:
summary: アルバムを部分更新
description: 提供されたフィールドのみを部分更新します
operationId: updateAlbum
tags:
- Albums
parameters:
- name: id
in: path
required: true
description: アルバムのUUID
schema:
type: string
format: uuid
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateAlbumRequest'
responses:
'200':
description: アルバムが正常に更新されました
content:
application/json:
schema:
$ref: '#/components/schemas/Album'
'400':
description: 無効なリクエスト
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
description: 権限がありません
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
delete:
summary: アルバムを削除
description: 既存のアルバムを削除します
operationId: deleteAlbum
tags:
- Albums
parameters:
- name: id
in: path
required: true
description: アルバムのUUID
schema:
type: string
format: uuid
responses:
'204':
description: アルバムが正常に削除されました
'401':
$ref: '#/components/responses/Unauthorized'
'403':
description: 権限がありません
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
components:
schemas:
Me:
type: object
required:
- id
- name
properties:
id:
type: string
description: traQ のユーザーID
example: "01234567-89ab-cdef-0123-456789abcdef"
name:
type: string
description: traQ のユーザー名
example: "username"
displayName:
type: string
description: 表示名(未設定の場合は省略される)
example: "ユーザーネーム"
Post:
type: object
required:
- id
- content
properties:
id:
type: string
format: uuid
description: 投稿の一意識別子
example: "0198cffa-42a2-7afe-b478-c11c146a2332"
content:
type: string
description: 投稿の内容
example: "かわいい"
Image:
type: object
required:
- id
- creator
- post
properties:
id:
type: string
format: uuid
description: 画像の一意識別子
example: "0198cffa-4228-7afe-ac39-e0c88a0f0b81"
creator:
type: string
format: uuid
description: 画像作成者の一意識別子
example: "019619d0-e53a-7be9-add3-5096a746a93d"
post:
$ref: '#/components/schemas/Post'
ImageDetail:
type: object
required:
- id
- creator
- post
properties:
id:
type: string
format: uuid
description: 画像の一意識別子
example: "550e8400-e29b-41d4-a716-446655440001"
creator:
type: string
format: uuid
description: 画像作成者の一意識別子
example: "019619d0-e53a-7be9-add3-5096a746a93d"
post:
$ref: '#/components/schemas/Post'
Album:
type: object
required:
- id
- title
- description
- creator
- images
- created_at
- updated_at
properties:
id:
type: string
format: uuid
description: アルバムの一意識別子
example: "550e8400-e29b-41d4-a716-446655440001"
title:
type: string
description: アルバムのタイトル
example: "夏の思い出"
description:
type: string
description: アルバムの説明
example: "2024年夏の写真集"
creator:
type: string
format: uuid
description: アルバム作成者のUUID
example: "550e8400-e29b-41d4-a716-446655440002"
images:
type: array
items:
type: string
format: uuid
description: アルバム内の画像UUIDの配列
example:
- "550e8400-e29b-41d4-a716-446655440003"
- "550e8400-e29b-41d4-a716-446655440004"
created_at:
type: string
format: date-time
description: 作成タイムスタンプ
example: "2024-07-01T00:00:00Z"
updated_at:
type: string
format: date-time
description: 最終更新タイムスタンプ
example: "2024-08-15T10:30:00Z"
AlbumItem:
type: object
required:
- id
- title
- creator
properties:
id:
type: string
format: uuid
description: アルバムの一意識別子
example: "550e8400-e29b-41d4-a716-446655440001"
title:
type: string
description: アルバムのタイトル
example: "夏の思い出"
creator:
type: string
format: uuid
description: アルバム作成者のUUID
example: "550e8400-e29b-41d4-a716-446655440002"
images:
type: array
items:
type: string
format: uuid
description: アルバム内の画像UUIDの配列
example:
- "550e8400-e29b-41d4-a716-446655440003"
- "550e8400-e29b-41d4-a716-446655440004"
created_at:
type: string
format: date-time
description: 作成タイムスタンプ
example: "2024-07-01T00:00:00Z"
updated_at:
type: string
format: date-time
description: 最終更新タイムスタンプ
example: "2024-08-15T10:30:00Z"
CreateAlbumRequest:
type: object
required:
- title
- description
properties:
title:
type: string
description: アルバムのタイトル
example: "夏の思い出"
description:
type: string
description: アルバムの説明
example: "2024年夏の写真集"
images:
type: array
items:
type: string
format: uuid
description: アルバムに含める画像UUIDの配列
example:
- "550e8400-e29b-41d4-a716-446655440003"
- "550e8400-e29b-41d4-a716-446655440004"
UpdateAlbumRequest:
type: object
properties:
title:
type: string
description: アルバムのタイトル
example: "夏の思い出 - 更新版"
description:
type: string
description: アルバムの説明
example: "2024年夏の写真集 - 追加写真あり"
images:
type: array
items:
type: string
format: uuid
description: アルバムに含める画像UUIDの配列
example:
- "550e8400-e29b-41d4-a716-446655440003"
- "550e8400-e29b-41d4-a716-446655440004"
Error:
type: object
required:
- error
properties:
error:
type: string
description: エラーメッセージ
example: "Resource not found"
message:
type: string
description: 追加のエラー詳細
example: "The requested resource could not be found"
responses:
NotFound:
description: 指定されたリソースが見つかりませんでした
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
ServerError:
description: 内部サーバーエラー
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
Unauthorized:
description: 認証に失敗しました。認証情報が提供されていないか無効です。
headers:
WWW-Authenticate:
description: 'クライアントに通知する認証方式とオプションのエラー情報(例: Bearer realm="api", error="invalid_token")'
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
securitySchemes:
CookieAuth:
type: apiKey
in: cookie
name: traq-auth-token
description: traQ OAuth 交換後にサーバーがセットするアクセストークン Cookie
tags:
- name: Images
description: 画像に関する操作
- name: Albums
description: アルバムに関する操作
- name: Auth
description: 認証に関する操作
- name: traQ Files
description: traQファイルプロキシに関する操作