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

Commit b08f21a

Browse files
MichaelMuredaviddias
authored andcommitted
feat: add support for ipfs files stat --with-local (#695)
1 parent a10e3d5 commit b08f21a

File tree

2 files changed

+24
-7
lines changed

2 files changed

+24
-7
lines changed

src/files/stat.js

+20-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
11
'use strict'
22

33
const promisify = require('promisify-es6')
4+
const _ = require('lodash')
5+
const streamToValue = require('../utils/stream-to-value')
46

57
const transform = function (res, callback) {
6-
callback(null, {
7-
type: res.Type,
8-
blocks: res.Blocks,
9-
size: res.Size,
10-
hash: res.Hash,
11-
cumulativeSize: res.CumulativeSize
8+
return streamToValue(res, (err, data) => {
9+
if (err) {
10+
return callback(err)
11+
}
12+
13+
callback(null, {
14+
type: data[0].Type,
15+
blocks: data[0].Blocks,
16+
size: data[0].Size,
17+
hash: data[0].Hash,
18+
cumulativeSize: data[0].CumulativeSize,
19+
withLocality: data[0].WithLocality || false,
20+
local: data[0].Local || null,
21+
sizeLocal: data[0].SizeLocal || null
22+
})
1223
})
1324
}
1425

@@ -18,6 +29,9 @@ module.exports = (send) => {
1829
callback = opts
1930
opts = {}
2031
}
32+
33+
opts = _.mapKeys(opts, (v, k) => _.kebabCase(k))
34+
2135
send.andTransform({
2236
path: 'files/stat',
2337
args: args,

test/files.spec.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,10 @@ describe('.files (the MFS API part)', function () {
282282
size: 12,
283283
cumulativeSize: 20,
284284
blocks: 0,
285-
type: 'file'
285+
type: 'file',
286+
withLocality: false,
287+
local: undefined,
288+
sizeLocal: undefined
286289
})
287290

288291
done()

0 commit comments

Comments
 (0)