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

Commit 81016bb

Browse files
hacdiasdaviddias
authored andcommitted
feat: /api/v0/dns (#665)
* feat: dns * Update README.md * Update README.md * chore: update deps
1 parent eba9ae5 commit 81016bb

File tree

4 files changed

+32
-5
lines changed

4 files changed

+32
-5
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ $ ipfs config --json API.HTTPHeaders.Access-Control-Allow-Methods "[\"PUT\", \"P
257257
- [`ipfs.id([callback])`](https://github.com/ipfs/interface-ipfs-core/tree/master/SPEC/MISCELLANEOUS.md#id)
258258
- [`ipfs.version([callback])`](https://github.com/ipfs/interface-ipfs-core/tree/master/SPEC/MISCELLANEOUS.md#version)
259259
- [`ipfs.ping()`](https://github.com/ipfs/interface-ipfs-core/tree/master/SPEC/MISCELLANEOUS.md#ping)
260+
- [`ipfs.dns(domain, [callback])`](https://github.com/ipfs/interface-ipfs-core/tree/master/SPEC/MISCELLANEOUS.md#dns)
260261
261262
- [config](https://github.com/ipfs/interface-ipfs-core/tree/master/SPEC/CONFIG.md)
262263
- [`ipfs.config.get([key, callback])`](https://github.com/ipfs/interface-ipfs-core/tree/master/SPEC/CONFIG.md#configget)

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@
3535
"is-ipfs": "^0.3.2",
3636
"is-stream": "^1.1.0",
3737
"lru-cache": "^4.1.1",
38-
"multiaddr": "^3.0.1",
39-
"multihashes": "~0.4.12",
38+
"multiaddr": "^3.0.2",
39+
"multihashes": "~0.4.13",
4040
"ndjson": "^1.5.0",
4141
"once": "^1.4.0",
4242
"peer-id": "~0.10.4",
4343
"peer-info": "~0.11.4",
4444
"promisify-es6": "^1.0.3",
4545
"pull-defer": "^0.2.2",
46-
"pull-pushable": "^2.1.1",
46+
"pull-pushable": "^2.1.2",
4747
"pump": "^1.0.3",
4848
"qs": "^6.5.1",
4949
"readable-stream": "^2.3.3",
@@ -66,7 +66,7 @@
6666
"dirty-chai": "^2.0.1",
6767
"eslint-plugin-react": "^7.5.1",
6868
"gulp": "^3.9.1",
69-
"interface-ipfs-core": "~0.38.0",
69+
"interface-ipfs-core": "~0.40.0",
7070
"hapi": "^16.6.2",
7171
"ipfsd-ctl": "~0.26.0",
7272
"pre-commit": "^1.2.2",

src/dns.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
'use strict'
2+
3+
const promisify = require('promisify-es6')
4+
const moduleConfig = require('./utils/module-config')
5+
6+
const transform = function (res, callback) {
7+
callback(null, res.Path)
8+
}
9+
10+
module.exports = (arg) => {
11+
const send = moduleConfig(arg)
12+
13+
return promisify((args, opts, callback) => {
14+
if (typeof (opts) === 'function') {
15+
callback = opts
16+
opts = {}
17+
}
18+
19+
send.andTransform({
20+
path: 'dns',
21+
args: args,
22+
qs: opts
23+
}, transform, callback)
24+
})
25+
}

src/utils/load-commands.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ function requireCommands () {
3737
swarm: require('../swarm'),
3838
pubsub: require('../pubsub'),
3939
update: require('../update'),
40-
version: require('../version')
40+
version: require('../version'),
41+
dns: require('../dns')
4142
}
4243

4344
// TODO: crowding the 'files' namespace temporarily for interface-ipfs-core

0 commit comments

Comments
 (0)