-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathv0.yaml
3330 lines (3274 loc) · 90.2 KB
/
v0.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.2
info:
title: ""
version: ""
tags:
- name: "条目"
- name: "章节"
- name: "角色"
- name: "人物"
- name: "用户"
- name: "收藏"
- name: "编辑历史"
- name: "目录"
paths:
"/v0/search/subjects":
post:
tags:
- 条目
summary: 条目搜索
operationId: searchSubjects
description: |
## 实验性 API, 本 schema 和实际的 API 行为都可能随时发生改动
目前支持的筛选条件包括:
- `type`: 条目类型,参照 `SubjectType` enum, `或`。
- `tag`: 标签,可以多次出现。`且` 关系。
- `airdate`: 播出日期/发售日期。`且` 关系。
- `rating`: 用于搜索指定评分的条目。`且` 关系。
- `rank`: 用于搜索指定排名的条目。`且` 关系。
- `nsfw`: 使用 `include` 包含NSFW搜索结果。默认排除搜索NSFW条目。无权限情况下忽略此选项,不会返回NSFW条目。
不同筛选条件之间为 `且`
parameters:
- name: limit
in: query
description: 分页参数
required: false
schema:
type: integer
- name: offset
in: query
description: 分页参数
required: false
schema:
type: integer
requestBody:
content:
"application/json":
schema:
type: object
required:
- keyword
properties:
keyword:
type: string
sort:
enum:
- "match"
- "heat"
- "rank"
- "score"
default: match
type: string
example: rank
description: |
排序规则
- `match` meilisearch 的默认排序,按照匹配程度
- `heat` 收藏人数
- `rank` 排名由高到低
- `score` 评分
filter:
type: object
description: 不同条件之间是 `且` 的关系
properties:
type:
type: array
items:
$ref: "#/components/schemas/SubjectType"
description: 条目类型,参照 `SubjectType` enum,多值之间为 `或` 的关系。
meta_tags:
type: array
items:
type: string
example:
- 童年
- 原创
description: 公共标签。多个值之间为 `且` 关系。可以用 `-` 排除标签。比如 `-科幻` 可以排除科幻标签。
tag:
type: array
items:
type: string
example:
- 童年
- 原创
description: 标签,可以多次出现。多值之间为 `且` 关系。
air_date:
type: array
items:
type: string
example:
- ">=2020-07-01"
- "<2020-10-01"
description: 播出日期/发售日期,日期必需为 `YYYY-MM-DD` 格式。多值之间为 `且` 关系。
rating:
type: array
items:
type: string
example:
- ">=6"
- "<8"
description: 用于搜索指定评分的条目,多值之间为 `且` 关系。
rank:
type: array
items:
type: string
example:
- ">10"
- "<=18"
description: 用于搜索指定排名的条目,多值之间为 `且` 关系。
nsfw:
type: boolean
description: |
无权限的用户会直接忽略此字段,不会返回R18条目。
默认或者 `null` 会返回包含 R18 的所有搜索结果。
`true` 只会返回 R18 条目。
`false` 只会返回非 R18 条目。
responses:
200:
description: 返回搜索结果
content:
application/json:
schema:
"$ref": "#/components/schemas/Paged_Subject"
"/v0/search/characters":
post:
tags:
- 角色
summary: 角色搜索
operationId: searchCharacters
description: |
## 实验性 API, 本 schema 和实际的 API 行为都可能随时发生改动
目前支持的筛选条件包括:
- `nsfw`: 使用 `include` 包含NSFW搜索结果。默认排除搜索NSFW条目。无权限情况下忽略此选项,不会返回NSFW条目。
parameters:
- name: limit
in: query
description: 分页参数
required: false
schema:
type: integer
- name: offset
in: query
description: 分页参数
required: false
schema:
type: integer
requestBody:
content:
"application/json":
schema:
type: object
required:
- keyword
properties:
keyword:
type: string
filter:
type: object
description: 不同条件之间是 `且` 的关系
properties:
nsfw:
type: boolean
description: |
无权限的用户会直接忽略此字段,不会返回 R18 角色。
默认或者 `null` 会返回包含 R18 的所有搜索结果。
`true` 只会返回 R18 角色。
`false` 只会返回非 R18 角色。
responses:
200:
description: 返回搜索结果
content:
application/json:
schema:
"$ref": "#/components/schemas/Paged_Character"
"/v0/search/persons":
post:
tags:
- 人物
summary: 人物搜索
operationId: searchPersons
description: |
## 实验性 API, 本 schema 和实际的 API 行为都可能随时发生改动
目前支持的筛选条件包括:
- `career`: 职业,可以多次出现。`且` 关系。
不同筛选条件之间为 `且`
parameters:
- name: limit
in: query
description: 分页参数
required: false
schema:
type: integer
- name: offset
in: query
description: 分页参数
required: false
schema:
type: integer
requestBody:
content:
"application/json":
schema:
type: object
required:
- keyword
properties:
keyword:
type: string
filter:
type: object
description: 不同条件之间是 `且` 的关系
properties:
career:
type: array
items:
type: string
example:
- artist
- director
description: 职业,可以多次出现。多值之间为 `且` 关系。
responses:
200:
description: 返回搜索结果
content:
application/json:
schema:
"$ref": "#/components/schemas/Paged_Person"
"/v0/subjects":
get:
tags:
- 条目
summary: 浏览条目
description: 第一页会 cache 24h,之后会 cache 1h
operationId: getSubjects
parameters:
- name: type
in: query
description: 条目类型
required: true
schema:
$ref: "#/components/schemas/SubjectType"
- name: cat
in: query
description: 条目分类,参照 `SubjectCategory` enum
required: false
schema:
$ref: "#/components/schemas/SubjectCategory"
- name: series
in: query
description: 是否系列,仅对书籍类型的条目有效
required: false
schema:
type: boolean
- name: platform
in: query
description: 平台,仅对游戏类型的条目有效
required: false
schema:
type: string
- name: sort
in: query
description: 排序,枚举值 {date|rank}
required: false
schema:
title: Sort Order
type: string
- name: year
in: query
description: 年份
required: false
schema:
type: integer
- name: month
in: query
description: 月份
required: false
schema:
type: integer
- $ref: "#/components/parameters/default_query_limit"
- $ref: "#/components/parameters/default_query_offset"
responses:
"200":
description: Successful Response
content:
application/json:
schema:
"$ref": "#/components/schemas/Paged_Subject"
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
security:
- OptionalHTTPBearer: []
"/v0/subjects/{subject_id}":
get:
tags:
- 条目
summary: 获取条目
description: cache with 300s
operationId: getSubjectById
parameters:
- $ref: "#/components/parameters/path_subject_id"
responses:
"200":
description: Successful Response
content:
application/json:
schema:
"$ref": "#/components/schemas/Subject"
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
security:
- OptionalHTTPBearer: []
"/v0/subjects/{subject_id}/image":
get:
tags:
- 条目
summary: Get Subject Image
operationId: getSubjectImageById
parameters:
- $ref: "#/components/parameters/path_subject_id"
- required: true
description: 枚举值 {small|grid|large|medium|common}
schema:
title: Image Type
type: string
name: type
in: query
responses:
"302":
description: Successful Response
headers:
Location:
schema:
type: string
description: |-
图片链接
无图时返回默认图片 https://lain.bgm.tv/img/no_icon_subject.png
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
security:
- OptionalHTTPBearer: []
"/v0/subjects/{subject_id}/persons":
get:
tags:
- 条目
summary: Get Subject Persons
operationId: getRelatedPersonsBySubjectId
parameters:
- $ref: "#/components/parameters/path_subject_id"
responses:
"200":
description: Successful Response
content:
application/json:
schema:
type: array
items:
"$ref": "#/components/schemas/RelatedPerson"
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
security:
- OptionalHTTPBearer: []
"/v0/subjects/{subject_id}/characters":
get:
tags:
- 条目
summary: Get Subject Characters
operationId: getRelatedCharactersBySubjectId
parameters:
- $ref: "#/components/parameters/path_subject_id"
responses:
"200":
description: Successful Response
content:
application/json:
schema:
type: array
items:
"$ref": "#/components/schemas/RelatedCharacter"
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
security:
- OptionalHTTPBearer: []
"/v0/subjects/{subject_id}/subjects":
get:
tags:
- 条目
summary: Get Subject Relations
operationId: getRelatedSubjectsBySubjectId
parameters:
- $ref: "#/components/parameters/path_subject_id"
responses:
"200":
description: Successful Response
content:
application/json:
schema:
type: array
items:
"$ref": "#/components/schemas/v0_subject_relation"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
security:
- OptionalHTTPBearer: []
"/v0/episodes":
get:
tags:
- 章节
summary: Get Episodes
operationId: getEpisodes
parameters:
- $ref: "#/components/parameters/query_subject_id"
- description: 参照章节的`type`
required: false
schema:
allOf:
- "$ref": "#/components/schemas/EpType"
description: 参照章节的`type`
name: type
in: query
- required: false
description: "分页参数"
schema:
title: Limit
maximum: 200
minimum: 1
type: integer
default: 100
name: limit
in: query
- required: false
description: "分页参数"
schema:
title: Offset
minimum: 0
type: integer
default: 0
name: offset
in: query
responses:
"200":
description: Successful Response
content:
application/json:
schema:
"$ref": "#/components/schemas/Paged_Episode"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
security:
- OptionalHTTPBearer: []
"/v0/episodes/{episode_id}":
get:
tags:
- 章节
summary: Get Episode
operationId: getEpisodeById
parameters:
- $ref: "#/components/parameters/path_episode_id"
responses:
"200":
description: Successful Response
content:
application/json:
schema:
"$ref": "#/components/schemas/EpisodeDetail"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
security:
- OptionalHTTPBearer: []
"/v0/characters/{character_id}":
get:
tags:
- 角色
summary: Get Character Detail
description: cache with 60s
operationId: getCharacterById
parameters:
- $ref: "#/components/parameters/path_character_id"
responses:
"200":
description: Successful Response
content:
application/json:
schema:
"$ref": "#/components/schemas/Character"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"/v0/characters/{character_id}/image":
get:
tags:
- 角色
summary: Get Character Image
operationId: getCharacterImageById
parameters:
- $ref: "#/components/parameters/path_character_id"
- required: true
description: 枚举值 {small|grid|large|medium}
schema:
title: Image Type
type: string
name: type
in: query
responses:
"302":
description: Successful Response
headers:
Location:
schema:
type: string
description: |-
图片链接
无图时返回默认图片 https://lain.bgm.tv/img/no_icon_subject.png
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
security:
- OptionalHTTPBearer: []
"/v0/characters/{character_id}/subjects":
get:
tags:
- 角色
summary: get character related subjects
operationId: getRelatedSubjectsByCharacterId
parameters:
- $ref: "#/components/parameters/path_character_id"
responses:
"200":
description: Successful Response
content:
application/json:
schema:
type: array
items:
"$ref": "#/components/schemas/v0_RelatedSubject"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"/v0/characters/{character_id}/persons":
get:
tags:
- 角色
summary: get character related persons
operationId: getRelatedPersonsByCharacterId
parameters:
- $ref: "#/components/parameters/path_character_id"
responses:
"200":
description: Successful Response
content:
application/json:
schema:
type: array
items:
"$ref": "#/components/schemas/CharacterPerson"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"/v0/characters/{character_id}/collect":
post:
tags:
- 角色
summary: Collect character for current user
operationId: collectCharacterByCharacterIdAndUserId
description: 为当前用户收藏角色
parameters:
- $ref: "#/components/parameters/path_character_id"
responses:
"204":
description: Successful Response
"400":
description: character ID not valid
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"401":
description: not authorized
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"404":
description: 角色不存在
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
security:
- HTTPBearer: []
delete:
tags:
- 角色
summary: Uncollect character for current user
operationId: uncollectCharacterByCharacterIdAndUserId
description: 为当前用户取消收藏角色
parameters:
- $ref: "#/components/parameters/path_character_id"
responses:
"204":
description: Successful Response
"400":
description: character ID not valid
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"401":
description: not authorized
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"404":
description: 角色不存在
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
security:
- HTTPBearer: []
"/v0/persons/{person_id}":
get:
tags:
- 人物
summary: Get Person
description: cache with 60s
operationId: getPersonById
parameters:
- $ref: "#/components/parameters/path_person_id"
responses:
"200":
description: Successful Response
content:
application/json:
schema:
"$ref": "#/components/schemas/PersonDetail"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"/v0/persons/{person_id}/image":
get:
tags:
- 人物
summary: Get Person Image
operationId: getPersonImageById
parameters:
- $ref: "#/components/parameters/path_person_id"
- required: true
description: 枚举值 {small|grid|large|medium}
schema:
title: Image Type
type: string
name: type
in: query
responses:
"302":
description: Successful Response
headers:
Location:
schema:
type: string
description: |-
图片链接
无图时返回默认图片 https://lain.bgm.tv/img/no_icon_subject.png
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
security:
- OptionalHTTPBearer: []
"/v0/persons/{person_id}/subjects":
get:
tags:
- 人物
summary: get person related subjects
operationId: getRelatedSubjectsByPersonId
parameters:
- $ref: "#/components/parameters/path_person_id"
responses:
"200":
description: Successful Response
content:
application/json:
schema:
type: array
items:
"$ref": "#/components/schemas/v0_RelatedSubject"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"/v0/persons/{person_id}/characters":
get:
tags:
- 人物
summary: get person related characters
operationId: getRelatedCharactersByPersonId
parameters:
- $ref: "#/components/parameters/path_person_id"
responses:
"200":
description: Successful Response
content:
application/json:
schema:
type: array
items:
"$ref": "#/components/schemas/PersonCharacter"
"404":
description: Not Found
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"400":
description: Validation Error
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"/v0/persons/{person_id}/collect":
post:
tags:
- 人物
summary: Collect person for current user
operationId: collectPersonByPersonIdAndUserId
description: 为当前用户收藏人物
parameters:
- $ref: "#/components/parameters/path_person_id"
responses:
"204":
description: Successful Response
"400":
description: person ID not valid
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"401":
description: not authorized
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"404":
description: 人物不存在
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
security:
- OptionalHTTPBearer: []
delete:
tags:
- 人物
summary: Uncollect person for current user
operationId: uncollectPersonByPersonIdAndUserId
description: 为当前用户取消收藏人物
parameters:
- $ref: "#/components/parameters/path_person_id"
responses:
"204":
description: Successful Response
"400":
description: person ID not valid
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"401":
description: not authorized
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"404":
description: 人物不存在
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
security:
- OptionalHTTPBearer: []
"/v0/users/{username}":
get:
tags:
- 用户
summary: Get User by name
description: 获取用户信息
operationId: getUserByName
parameters:
- $ref: "#/components/parameters/path_username"
responses:
"200":
description: Successful Response
content:
application/json:
schema:
"$ref": "#/components/schemas/User"
"400":
description: username 太长
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"404":
description: 对应用户不存在
content:
application/json:
schema:
"$ref": "#/components/schemas/ErrorDetail"
"/v0/users/{username}/avatar":
get:
tags:
- 用户
summary: Get User Avatar by name
description: 获取用户头像,302 重定向至头像地址,设置了 username 之后无法使用 UID 查询。
operationId: getUserAvatarByName
parameters:
- $ref: "#/components/parameters/path_username"
- required: true
description: 枚举值 {small|large|medium}
schema:
title: Avatar Type