-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpinning-service.yaml
698 lines (637 loc) · 21.2 KB
/
pinning-service.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
openapi: 3.0.3
info:
version: "1.0.0"
title: 'IPFS Pinning Service API'
x-logo:
url: "https://bafybeidehxarrk54mkgyl5yxbgjzqilp6tkaz2or36jhq24n3rdtuven54.ipfs.dweb.link/?filename=ipfs-pinning-service.svg"
description: "some notes"
servers:
- url: https://pinning-service.example.com
paths:
#IPFS pinning service API spec endpoints (start)
/pins: #paths object
get: #paths item object (nested within is the operation object)
summary: List pin objects
description: List all the pin objects, matching optional filters; when no filter is provided, only successful pins are returned
tags:
- pins
parameters:
- $ref: '#/components/parameters/cid'
- $ref: '#/components/parameters/name'
- $ref: '#/components/parameters/match'
- $ref: '#/components/parameters/status'
- $ref: '#/components/parameters/before'
- $ref: '#/components/parameters/after'
- $ref: '#/components/parameters/limit'
- $ref: '#/components/parameters/meta'
responses:
'200':
description: Successful response (PinResults object)
content:
application/json:
schema:
$ref: '#/components/schemas/PinResults'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/InsufficientFunds'
'4XX':
$ref: '#/components/responses/CustomServiceError'
'5XX':
$ref: '#/components/responses/InternalServerError'
post:
summary: Add pin object
description: Add a new pin object for the current access token
tags:
- pins
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Pin'
responses:
'202':
description: Successful response (PinStatus object)
content:
application/json:
schema:
$ref: '#/components/schemas/PinStatus'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/InsufficientFunds'
'4XX':
$ref: '#/components/responses/CustomServiceError'
'5XX':
$ref: '#/components/responses/InternalServerError'
/pins/{requestid}:
parameters:
- name: requestid
in: path
required: true
schema:
type: string
get:
summary: Get pin object
description: Get a pin object and its status
tags:
- pins
responses:
'200':
description: Successful response (PinStatus object)
content:
application/json:
schema:
$ref: '#/components/schemas/PinStatus'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/InsufficientFunds'
'4XX':
$ref: '#/components/responses/CustomServiceError'
'5XX':
$ref: '#/components/responses/InternalServerError'
post:
summary: Replace pin object
description: Replace an existing pin object (shortcut for executing remove and add operations in one step to avoid unnecessary garbage collection of blocks present in both recursive pins)
tags:
- pins
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Pin'
responses:
'202':
description: Successful response (PinStatus object)
content:
application/json:
schema:
$ref: '#/components/schemas/PinStatus'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/InsufficientFunds'
'4XX':
$ref: '#/components/responses/CustomServiceError'
'5XX':
$ref: '#/components/responses/InternalServerError'
delete:
summary: Remove pin object
description: Remove a pin object
tags:
- pins
responses:
'202':
description: Successful response (no body, pin removed)
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/InsufficientFunds'
'4XX':
$ref: '#/components/responses/CustomServiceError'
'5XX':
$ref: '#/components/responses/InternalServerError'
#IPFS pinning service API spec endpoints (end)
# complete file pin api pinata (start)
/pinning/pinFileToIPFS:
post:
summary: Upload file to IPFS
description: pinata services' upload file to ipfs option
operationId: pinataFileUpload
servers:
- url: https://api.pinata.cloud
tags:
- filepin
requestBody:
required: true
content:
multipart/form-data:
schema:
description: File upload for pinning request
type: object
required:
- file
properties:
file:
description: file you're attempting to upload to pinata
type: string
format: binary
pinataOptions:
$ref: '#/components/schemas/PinataOptions'
pinataMetadata:
$ref: '#/components/schemas/PinataMetadata'
encoding:
pinataOptions:
contentType: application/json
pinataMetadata:
contentType: application/json
responses:
'200':
description: Successful response (with IPFS hash)
content:
application/json:
schema:
$ref: '#/components/schemas/PinataResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/InsufficientFunds'
'4XX':
$ref: '#/components/responses/CustomServiceError'
'5XX':
$ref: '#/components/responses/InternalServerError'
# complete file pin api pinata (end)
# car file pin api web3.storage (start)
/car:
post:
summary: Upload car file to web3.storage
description: Upload car file to web3.storage
operationId: web3StorageCarUpload
servers:
- url: https://api.web3.storage
tags:
- filepin
requestBody:
required: true
content:
application/car:
schema:
description: car file binary data
type: string
format: binary
responses:
'200':
description: Successful response (with IPFS hash)
content:
application/json:
schema:
$ref: '#/components/schemas/Web3StorageCarResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'5XX':
$ref: '#/components/responses/InternalServerError'
# car file pin api web3.storage (end)
components:
schemas:
PinResults:
description: Response used for listing pin objects matching request
type: object
required:
- count
- results
properties:
count:
description: The total number of pin objects that exist for passed query filters
type: integer
format: int32
minimum: 0
example: 1
results:
description: An array of PinStatus results
type: array
items:
$ref: '#/components/schemas/PinStatus'
uniqueItems: true
minItems: 0
maxItems: 1000
PinStatus:
description: Pin object with status
type: object
required:
- requestid
- status
- created
- pin
- delegates
properties:
requestid:
description: Globally unique identifier of the pin request; can be used to check the status of ongoing pinning, or pin removal
type: string
example: "UniqueIdOfPinRequest"
status:
$ref: '#/components/schemas/Status'
created:
description: Immutable timestamp indicating when a pin request entered a pinning service; can be used for filtering results and pagination
type: string
format: date-time # RFC 3339, section 5.6
example: "2020-07-27T17:32:28Z"
pin:
$ref: '#/components/schemas/Pin'
delegates:
$ref: '#/components/schemas/Delegates'
info:
$ref: '#/components/schemas/StatusInfo'
Pin:
description: Pin object
type: object
required:
- cid
properties:
cid:
description: Content Identifier (CID) to be pinned recursively
type: string
example: "QmCIDToBePinned"
name:
description: Optional name for pinned data; can be used for lookups later
type: string
maxLength: 255
example: "PreciousData.pdf"
origins:
$ref: '#/components/schemas/Origins'
meta:
$ref: '#/components/schemas/PinMeta'
Status:
description: Status a pin object can have at a pinning service
type: string
enum:
- queued # pinning operation is waiting in the queue; additional info can be returned in info[status_details]
- pinning # pinning in progress; additional info can be returned in info[status_details]
- pinned # pinned successfully
- failed # pinning service was unable to finish pinning operation; additional info can be found in info[status_details]
Delegates:
description: List of multiaddrs designated by pinning service for transferring any new data from external peers
type: array
items:
type: string
uniqueItems: true
minItems: 1
maxItems: 20
example: ['/ip4/203.0.113.1/tcp/4001/p2p/QmServicePeerId']
Origins:
description: Optional list of multiaddrs known to provide the data
type: array
items:
type: string
uniqueItems: true
minItems: 0
maxItems: 20
example: ['/ip4/203.0.113.142/tcp/4001/p2p/QmSourcePeerId', '/ip4/203.0.113.114/udp/4001/quic/p2p/QmSourcePeerId']
PinMeta:
description: Optional metadata for pin object
type: object
additionalProperties:
type: string
minProperties: 0
maxProperties: 1000
example:
app_id: "99986338-1113-4706-8302-4420da6158aa" # Pin.meta[app_id], useful for filtering pins per app
StatusInfo:
description: Optional info for PinStatus response
type: object
additionalProperties:
type: string
minProperties: 0
maxProperties: 1000
example:
status_details: "Queue position: 7 of 9" # PinStatus.info[status_details], when status=queued
TextMatchingStrategy:
description: Alternative text matching strategy
type: string
default: exact
enum:
- exact # full match, case-sensitive (the implicit default)
- iexact # full match, case-insensitive
- partial # partial match, case-sensitive
- ipartial # partial match, case-insensitive
Failure:
description: Response for a failed request
type: object
required:
- error
properties:
error:
type: object
required:
- reason
properties:
reason:
type: string
description: Mandatory string identifying the type of error
example: "ERROR_CODE_FOR_MACHINES"
details:
type: string
description: Optional, longer description of the error; may include UUID of transaction for support, links to documentation etc
example: "Optional explanation for humans with more details"
# PinataFilePinRequest:
# description: File upload for pinning request
# type: object
# required:
# - file
# properties:
# file:
# description: file you're attempting to upload to pinata
# type: binary
# pinataOptions:
# $ref: '#/components/schemas/PinataOptions'
# pinataMetadata:
# $ref: '#/components/schemas/PinataMetadata'
Web3StorageCarResponse:
description: web3.storage car upload response
type: object
properties:
cid:
description: This is the IPFS cid provided back for your content
type: string
PinataResponse:
description: response back to file pin request
type: object
properties:
IpfsHash:
description: This is the IPFS multi-hash provided back for your content
type: string
PinSize:
description: This is how large (in bytes) the content you just pinned is
type: integer
Timestamp:
description: This is the timestamp for your content pinning (represented in ISO 8601 format)
type: string #can also be date-time (test!)
PinataOptions:
type: object
properties:
cidVersion:
description: CID version IPFS will use when creating a hash for your content
type: string
enum:
- "0" #CIDv0
- "1" #CIDv1
wrapWithDirectory:
description: Wrap your content inside of a directory when adding to IPFS.
type: boolean
# not adding customPinPolicy as of now
#customPinPolicy:
# description: Custom pin policy for the piece of content being pinned.
PinataMetadata:
type: object
properties:
name:
description:
type: string
keyvalues:
type: object
additionalProperties:
type: string
parameters:
before:
description: Return results created (queued) before provided timestamp
name: before
in: query
required: false
schema:
type: string
format: date-time # RFC 3339, section 5.6
example: "2020-07-27T17:32:28Z"
after:
description: Return results created (queued) after provided timestamp
name: after
in: query
required: false
schema:
type: string
format: date-time # RFC 3339, section 5.6
example: "2020-07-27T17:32:28Z"
limit:
description: Max records to return
name: limit
in: query
required: false
schema:
type: integer
format: int32
minimum: 1
maximum: 1000
default: 10
cid:
description: Return pin objects responsible for pinning the specified CID(s); be aware that using longer hash functions introduces further constraints on the number of CIDs that will fit under the limit of 2000 characters per URL in browser contexts
name: cid
in: query
required: false
schema:
type: array
items:
type: string
uniqueItems: true
minItems: 1
maxItems: 10
style: form # ?cid=Qm1,Qm2,bafy3
explode: false
example: ["Qm1","Qm2","bafy3"]
name:
description: Return pin objects with specified name (by default a case-sensitive, exact match)
name: name
in: query
required: false
schema:
type: string
maxLength: 255
example: "PreciousData.pdf"
match:
description: Customize the text matching strategy applied when the name filter is present; exact (the default) is a case-sensitive exact match, partial matches anywhere in the name, iexact and ipartial are case-insensitive versions of the exact and partial strategies
name: match
in: query
required: false
schema:
$ref: '#/components/schemas/TextMatchingStrategy'
example: exact
status:
description: Return pin objects for pins with the specified status
name: status
in: query
required: false
schema:
type: array
items:
$ref: '#/components/schemas/Status'
uniqueItems: true
minItems: 1
style: form # ?status=queued,pinning
explode: false
example: ["queued","pinning"]
meta:
description: Return pin objects that match specified metadata keys passed as a string representation of a JSON object; when implementing a client library, make sure the parameter is URL-encoded to ensure safe transport
name: meta
in: query
required: false
content:
application/json: # ?meta={"foo":"bar"}
schema:
$ref: '#/components/schemas/PinMeta'
responses:
BadRequest:
description: Error response (Bad request)
content:
application/json:
schema:
$ref: '#/components/schemas/Failure'
examples:
BadRequestExample:
$ref: '#/components/examples/BadRequestExample'
Unauthorized:
description: Error response (Unauthorized; access token is missing or invalid)
content:
application/json:
schema:
$ref: '#/components/schemas/Failure'
examples:
UnauthorizedExample:
$ref: '#/components/examples/UnauthorizedExample'
Forbidden:
description: Error response for trying to access forbidden resources
content:
application/json:
schema:
$ref: '#/components/schemas/Failure'
NotFound:
description: Error response (The specified resource was not found)
content:
application/json:
schema:
$ref: '#/components/schemas/Failure'
examples:
NotFoundExample:
$ref: '#/components/examples/NotFoundExample'
InsufficientFunds:
description: Error response (Insufficient funds)
content:
application/json:
schema:
$ref: '#/components/schemas/Failure'
examples:
InsufficientFundsExample:
$ref: '#/components/examples/InsufficientFundsExample'
CustomServiceError:
description: Error response (Custom service error)
content:
application/json:
schema:
$ref: '#/components/schemas/Failure'
examples:
CustomServiceErrorExample:
$ref: '#/components/examples/CustomServiceErrorExample'
InternalServerError:
description: Error response (Unexpected internal server error)
content:
application/json:
schema:
$ref: '#/components/schemas/Failure'
examples:
InternalServerErrorExample:
$ref: '#/components/examples/InternalServerErrorExample'
examples:
BadRequestExample:
value:
error:
reason: "BAD_REQUEST"
details: "Explanation for humans with more details"
summary: A sample response to a bad request; reason will differ
UnauthorizedExample:
value:
error:
reason: "UNAUTHORIZED"
details: "Access token is missing or invalid"
summary: Response to an unauthorized request
NotFoundExample:
value:
error:
reason: "NOT_FOUND"
details: "The specified resource was not found"
summary: Response to a request for a resource that does not exist
InsufficientFundsExample:
value:
error:
reason: "INSUFFICIENT_FUNDS"
details: "Unable to process request due to the lack of funds"
summary: Response when access token run out of funds
CustomServiceErrorExample:
value:
error:
reason: "CUSTOM_ERROR_CODE_FOR_MACHINES"
details: "Optional explanation for humans with more details"
summary: Response when a custom error occured
InternalServerErrorExample:
value:
error:
reason: "INTERNAL_SERVER_ERROR"
details: "Explanation for humans with more details"
summary: Response when unexpected error occured
securitySchemes:
accessToken:
description: "
An opaque token is required to be sent with each request in the HTTP header:
- `Authorization: Bearer <access-token>`
The `access-token` should be generated per device, and the user should have the ability to revoke each token separately.
"
type: http
scheme: bearer
security:
- accessToken: []