Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 03eec9e

Browse files
wraithgardaviddias
authored andcommitted
feat: add wrapWithDirectory to files.add et al
1 parent 4536160 commit 03eec9e

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

SPEC/FILES.md

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ If no `content` is passed, then the path is treated as an empty directory
3131
- progress (function): a function that will be called with the byte length of chunks as a file is added to ipfs.
3232
- recursive (boolean): for when a Path is passed, this option can be enabled to add recursively all the files.
3333
- hashAlg || hash (string): multihash hashing algorithm to use
34+
- wrapWithDirectory (boolean): adds a wrapping node around the content
3435

3536
`callback` must follow `function (err, res) {}` signature, where `err` is an error if the operation was not successful. `res` will be an array of:
3637

@@ -83,6 +84,7 @@ Returns a Readable Stream of class Duplex, where objects can be written of the f
8384
- cid-version (integer, default 0): the CID version to use when storing the data (storage keys are based on the CID, including it's version)
8485
- progress (function): a function that will be called with the byte length of chunks as a file is added to ipfs.
8586
- hashAlg || hash (string): multihash hashing algorithm to use
87+
- wrapWithDirectory (boolean): adds a wrapping node around the content
8688

8789
**Example:**
8890

@@ -131,6 +133,7 @@ Returns a Pull Stream, where objects can be written of the forms
131133
- cid-version (integer, default 0): the CID version to use when storing the data (storage keys are based on the CID, including it's version)
132134
- progress (function): a function that will be called with the byte length of chunks as a file is added to ipfs.
133135
- hashAlg || hash (string): multihash hashing algorithm to use
136+
- wrapWithDirectory (boolean): adds a wrapping node around the content
134137

135138
**Example:**
136139

js/src/files.js

+19
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,16 @@ module.exports = (common) => {
3131
return loadFixture(path, 'interface-ipfs-core')
3232
}
3333

34+
const wrapDirectory = {
35+
path: 'wrapper/',
36+
cid: 'QmbzKtHxQXJnWG9VR66TscUfcoK3CV4nceRsCdyAEsEj9A'
37+
}
38+
3439
const smallFile = {
3540
cid: 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP',
3641
data: fixture('js/test/fixtures/testfile.txt')
3742
}
43+
3844
const bigFile = {
3945
cid: 'Qme79tX2bViL26vNjPsF3DP1R9rMKMvnPYJiKTTKPrXJjq',
4046
data: fixture('js/test/fixtures/15mb.random')
@@ -257,6 +263,19 @@ module.exports = (common) => {
257263
})
258264
})
259265

266+
it('wrapWithDirectory', (done) => {
267+
return ipfs.files.add({ path: 'testfile.txt', content: smallFile.data }, { wrapWithDirectory: true }, (err, filesAdded) => {
268+
expect(err).to.not.exist();
269+
expect(filesAdded).to.have.length(2);
270+
const file = filesAdded[0];
271+
const wrapped = filesAdded[1]
272+
expect(file.hash).to.equal(smallFile.cid)
273+
expect(file.path).to.equal('testfile.txt')
274+
expect(wrapped.path).to.equal(wrapDirectory.cid);
275+
done();
276+
});
277+
});
278+
260279
it('Promise test', () => {
261280
return ipfs.files.add(smallFile.data)
262281
.then((filesAdded) => {

0 commit comments

Comments
 (0)