-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi-document.yaml
executable file
·332 lines (332 loc) · 9.78 KB
/
api-document.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
openapi: 3.0.2
info:
title: CA Tech Dojo Online API
description: |-
<b>CA Tech Dojo Online API仕様</b>
version: 1.0.0
servers:
- url: https://api.game-api.click/
tags:
- name: user
description: ユーザ関連API
- name: game
description: インゲーム関連API
- name: gacha
description: ガチャ関連API
- name: ranking
description: ランキング関連API
- name: collection
description: コレクション関連API
paths:
/user/create:
post:
tags:
- user
summary: ユーザ情報作成API
description: |
ユーザ情報を作成します。<br>
ユーザの名前情報をリクエストで受け取り、ユーザIDと認証用のトークンを生成しデータベースへ保存します。<br>
tokenは以降の他のAPIコール時にヘッダに設定をします。
requestBody:
description: Request Body
content:
application/json:
schema:
$ref: "#/components/schemas/UserCreateRequest"
required: true
responses:
200:
description: A successful response.
content:
application/json:
schema:
$ref: "#/components/schemas/UserCreateResponse"
x-codegen-request-body-name: body
/user/get:
get:
tags:
- user
summary: ユーザ情報取得API
description: |
ユーザ情報を取得します。
「ユーザの認証と特定」の処理はリクエストヘッダの`x-token`を読み取ってデータベースに照会をします。
parameters:
- name: x-token
in: header
description: 認証トークン
required: true
schema:
type: string
responses:
200:
description: A successful response.
content:
application/json:
schema:
$ref: "#/components/schemas/UserGetResponse"
/user/update:
post:
tags:
- user
summary: ユーザ情報更新API
description: |
ユーザ情報の更新をします。
parameters:
- name: x-token
in: header
description: 認証トークン
required: true
schema:
type: string
requestBody:
description: Request Body
content:
application/json:
schema:
$ref: "#/components/schemas/UserUpdateRequest"
required: true
responses:
200:
description: A successful response.
content: {}
x-codegen-request-body-name: body
/game/finish:
post:
tags:
- game
summary: インゲーム終了API
description: |
スコアを送信してインゲームを終了し、ランキングへのスコアの登録と報酬の受け取りを行います。
parameters:
- name: x-token
in: header
description: 認証トークン
required: true
schema:
type: string
requestBody:
description: Request Body
content:
application/json:
schema:
$ref: "#/components/schemas/GameFinishRequest"
required: true
responses:
200:
description: A successful response.
content:
application/json:
schema:
$ref: "#/components/schemas/GameFinishResponse"
x-codegen-request-body-name: body
/gacha/draw:
post:
tags:
- gacha
summary: ガチャ実行API
description: |
コインを消費してガチャを引きコレクションアイテムを取得します。<br>
既に所持しているアイテムもガチャで排出しますが、重複して持つことはできません。<br>
新しく獲得したアイテムはisNewがtrue,既に持っているアイテムはisNewがfalseとなります。<br>
<br>
コレクションアイテムの排出確率は以下の計算式で定義します。<br>
「あるコレクションアイテムの排出確率=あるコレクションアイテムの`ratio`/全体の`ratio`合計」<br>
例えばあるコレクションアイテムの`ratio`が1、全体の`ratio`合計が10だった場合はそのコレクションアイテムは10%の確率で排出します。
parameters:
- name: x-token
in: header
description: 認証トークン
required: true
schema:
type: string
requestBody:
description: Request Body
content:
application/json:
schema:
$ref: "#/components/schemas/GachaDrawRequest"
required: true
responses:
200:
description: A successful response.
content:
application/json:
schema:
$ref: "#/components/schemas/GachaDrawResponse"
x-codegen-request-body-name: body
/ranking/list:
get:
tags:
- ranking
summary: ランキング情報取得API
description: |
指定した順位から一定数の順位までのランキング情報を取得します。<br>
例えば「サーバ側での1回あたりのランキング取得件数設定」が10で、「startパラメータ」の指定が1だった場合は1位〜10位を、「startパラメータ」の指定が5だった場合は5位〜14位を返却します。
parameters:
- name: x-token
in: header
description: 認証トークン
required: true
schema:
type: string
- name: start
in: query
description: 開始順位
required: true
schema:
type: integer
responses:
200:
description: A successful response.
content:
application/json:
schema:
$ref: "#/components/schemas/RankingListResponse"
/collection/list:
get:
tags:
- collection
summary: コレクションアイテム一覧情報取得API
description: コレクションアイテム一覧情報。
parameters:
- name: x-token
in: header
description: 認証トークン
required: true
schema:
type: string
responses:
200:
description: A successful response.
content:
application/json:
schema:
$ref: "#/components/schemas/CollectionListResponse"
components:
schemas:
SettingGetResponse:
type: object
properties:
gachaCoinConsumption:
type: integer
description: ガチャ1回あたりのコイン消費数
UserCreateRequest:
type: object
properties:
name:
type: string
description: ユーザ名
UserCreateResponse:
type: object
properties:
token:
type: string
description: クライアント側で保存するトークン
UserGetResponse:
type: object
properties:
id:
type: string
description: ユーザID
name:
type: string
description: ユーザ名
highScore:
type: integer
description: ハイスコア
coin:
type: integer
description: 所持コイン
UserUpdateRequest:
type: object
properties:
name:
type: string
description: ユーザ名
GameFinishRequest:
type: object
properties:
score:
type: integer
description: スコア
GameFinishResponse:
type: object
properties:
coin:
type: integer
description: 獲得コイン
GachaDrawRequest:
type: object
properties:
times:
type: integer
description: 実行回数
GachaDrawResponse:
type: object
properties:
results:
type: array
items:
$ref: "#/components/schemas/GachaResult"
description: ガチャ
RankingListResponse:
type: object
properties:
ranks:
type: array
items:
$ref: "#/components/schemas/RankInfo"
description: 各順位情報
CollectionListResponse:
type: object
properties:
collections:
type: array
items:
$ref: "#/components/schemas/CollectionItem"
description: 所持アイテム名一覧
GachaResult:
type: object
properties:
collectionID:
type: string
description: コレクションID
name:
type: string
description: コレクション名
rarity:
type: integer
description: レアリティ(1=N, 2=R, 3=SR)
isNew:
type: boolean
description: 新規獲得判定(trueなら新規獲得.falseなら既に持っていた.)
RankInfo:
type: object
properties:
userId:
type: string
description: ユーザID
userName:
type: string
description: ユーザ名
rank:
type: integer
description: 順位
score:
type: integer
description: スコア
CollectionItem:
type: object
properties:
collectionID:
type: string
description: コレクションID
name:
type: string
description: 名称
rarity:
type: integer
description: レアリティ(1=N, 2=R, 3=SR)
hasItem:
type: boolean
description: 所持判定(trueなら所持している.falseなら未所持)