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

Commit 4dba14c

Browse files
committed
add support for ipfs files stat --with-local
1 parent cee9a3d commit 4dba14c

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

src/files/stat.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
'use strict'
22

33
const promisify = require('promisify-es6')
4+
const _ = require('lodash')
45

56
const transform = function (res, callback) {
67
callback(null, {
78
type: res.Type,
89
blocks: res.Blocks,
910
size: res.Size,
1011
hash: res.Hash,
11-
cumulativeSize: res.CumulativeSize
12+
cumulativeSize: res.CumulativeSize,
13+
withLocality: res.WithLocality || false,
14+
local: res.Local || undefined,
15+
sizeLocal: res.SizeLocal || undefined
1216
})
1317
}
1418

@@ -18,6 +22,9 @@ module.exports = (send) => {
1822
callback = opts
1923
opts = {}
2024
}
25+
26+
opts = _.mapKeys(opts, (v, k) => _.kebabCase(k))
27+
2128
send.andTransform({
2229
path: 'files/stat',
2330
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)