This repository was archived by the owner on Mar 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 298
/
Copy pathadd-experimental.js
121 lines (108 loc) · 3.42 KB
/
add-experimental.js
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
'use strict'
const { Readable } = require('stream')
const toPull = require('stream-to-pull-stream')
const promiseNodeify = require('promise-nodeify')
const concatStream = require('concat-stream')
const pump = require('pump')
const SendStream = require('../utils/send-stream-experimental')
/** @module api/add */
/**
* Converts an array to a stream
*
* @ignore
* @param {Array} data
* @returns {Readable}
*/
const arrayToStream = (data) => {
let i = 0
return new Readable({
objectMode: true,
read () {
this.push(i < data.length ? data[i++] : null)
}
})
}
/**
* @typedef {Object} AddOptions
* @property {number} chunkSize - Value of array element
* @property {number} [cidVersion=0] - Defaults to 0. The CID version to use when storing the data (storage keys are based on the CID, including it's version)
* @property {function(bytes: number): void} progress - function that will be called with the byte length of chunks as a file is added to ipfs.
* @property {Boolean} recursive - When a Path is passed, this option can be enabled to add recursively all the files.
* @property {string} hashAlg - Multihash hashing algorithm to use. (default: sha2-256) The list of all possible values {@link https://github.com/multiformats/js-multihash/blob/master/src/constants.js#L5-L343 hashAlg values}
* @property {Boolean} wrapWithDirectory - Adds a wrapping node around the content.
* @property {Boolean} onlyHash - Doesn't actually add the file to IPFS, but rather calculates its hash.
* @property {Boolean} [pin=true] - Defaults to true. Pin this object when adding.
* @property {Boolean} [rawLeaves=false] - Defaults to false. If true, DAG leaves will contain raw file data and not be wrapped in a protobuf
* @property {string} [chunker=size-262144] Chunking algorithm used to build ipfs DAGs. Available formats:
* - size-{size}
* - rabin
* - rabin-{avg}
* - rabin-{min}-{avg}-{max}
*/
/**
* @typedef {Object} AddResult
* @property {string} path - Object path
* @property {string} hash - Object CID
* @property {number} size - Object size
*/
/**
* @callback AddCallback
* @param {Error} err
* @param {AddResult[]} res
*/
/** @typedef {Function} PullStream */
/** @typedef {(Object[]|Readable|File|PullStream|Buffer)} AddData */
/** @typedef {function(AddData, AddOptions, AddCallback): (Promise.<AddResult[]>|void)} AddFunction */
/**
* Add to data to ipfs
*
* @param {Function} send
* @returns {AddFunction}
* @memberof api/add
*/
const add = (send) => (data, options, callback) => {
if (typeof options === 'function') {
callback = options
options = {}
}
let result = []
const r = new Promise((resolve, reject) => {
pump(
arrayToStream([].concat(data)),
new SendStream(send, options),
concatStream(r => (result = r)),
(err) => {
if (err) {
return reject(err)
}
resolve(result)
}
)
})
return promiseNodeify(r, callback)
}
/**
* Add to data to ipfs
*
* @param {Function} send
* @returns {function(AddOptions): Readable}
* @memberof api/add
*/
const addReadableStream = (send) => (options = {}) => {
return new SendStream(send, options)
}
/**
* Add to data to ipfs
*
* @param {Function} send
* @returns {function(AddOptions): PullStream}
* @memberof api/add
*/
const addPullStream = (send) => (options = {}) => {
return toPull(new SendStream(send, options))
}
module.exports = {
add,
addReadableStream,
addPullStream
}