forked from Joystream/joystream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublic.yml
230 lines (228 loc) · 6.21 KB
/
public.yml
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
openapi: 3.0.3
info:
title: Distributor node public API
description: Distributor node public API
contact:
email: [email protected]
license:
name: GPL-3.0-only
url: https://spdx.org/licenses/GPL-3.0-only.html
version: 0.1.0
externalDocs:
description: Distributor node public API
url: https://github.com/Joystream/joystream/issues/2224
servers:
- url: http://localhost:3334/api/v1/
paths:
/status:
get:
operationId: public.status
description: Returns json object describing current node status.
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/StatusResponse'
500:
description: Unexpected server error
/buckets:
get:
operationId: public.buckets
description: Returns list of distributed buckets
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/BucketsResponse'
500:
description: Unexpected server error
/assets/{objectId}:
head:
operationId: public.assetHead
description: Returns asset response headers (cache status, content type and/or length, accepted ranges etc.)
parameters:
- $ref: '#/components/parameters/ObjectId'
responses:
200:
description: Object is supported and should be send on GET request.
headers:
X-Cache:
$ref: '#/components/headers/X-Cache'
421:
description: Misdirected request. Data object not supported by the node.
404:
description: Data object does not exist or has not been uploaded yet.
500:
description: Unexpected server error
get:
operationId: public.asset
description: Returns a media file.
parameters:
- $ref: '#/components/parameters/ObjectId'
responses:
200:
description: Full available object data sent
headers:
X-Cache:
$ref: '#/components/headers/X-Cache'
X-Data-Source:
$ref: '#/components/headers/X-Data-Source'
content:
image/*:
schema:
type: string
format: binary
audio/*:
schema:
type: string
format: binary
video/*:
schema:
type: string
format: binary
206:
description: Requested partial object data sent
headers:
X-Cache:
$ref: '#/components/headers/X-Cache'
X-Data-Source:
$ref: '#/components/headers/X-Data-Source'
content:
image/*:
schema:
type: string
format: binary
audio/*:
schema:
type: string
format: binary
video/*:
schema:
type: string
format: binary
421:
description: Misdirected request. Data object not supported.
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
404:
description: Data object does not exist or has not been uploaded yet.
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
500:
description: Unexpected server error
components:
parameters:
ObjectId:
name: objectId
required: true
in: path
description: Data Object ID
schema:
type: string
pattern: \d+
headers:
X-Cache:
description: Describes cache status of an object.
Hit - object is already fully fetched in distributor node's cache.
Pending - object is still beeing fetched from the storage node.
Miss - object is neither in cache not currently beeing fetched. Fetching from storage node may be triggered.
schema:
type: string
enum: ['hit', 'pending', 'miss']
X-Data-Source:
description: Describes the source of data stream.
External - the request was proxied to a storage node.
Local - the data is streamed from local file.
schema:
type: string
enum: ['external', 'local']
schemas:
ErrorResponse:
type: object
required:
- message
properties:
type:
type: string
message:
type: string
StatusResponse:
type: object
required:
- id
- version
- objectsInCache
- storageLimit
- storageUsed
- uptime
- downloadsInProgress
- nodeEnv
- queryNodeStatus
properties:
id:
type: string
version:
type: string
workerId:
type: integer
objectsInCache:
type: integer
minimum: 0
storageLimit:
type: integer
minimum: 0
storageUsed:
type: integer
minimum: 0
uptime:
type: integer
minimum: 0
downloadsInProgress:
type: integer
minimum: 0
nodeEnv:
type: string
queryNodeStatus:
type: object
required:
- 'url'
- 'chainHead'
- 'blocksProcessed'
- 'packageVersion'
properties:
url:
type: string
chainHead:
type: integer
minimum: 0
blocksProcessed:
type: integer
minimum: 0
packageVersion:
type: string
BucketsResponse:
oneOf:
- type: object
required:
- 'bucketIds'
properties:
bucketIds:
type: array
items:
type: string
pattern: ^[0-9]+:[0-9]+$
- type: object
required:
- 'allByWorkerId'
properties:
allByWorkerId:
type: integer
minimum: 0