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 297
/
Copy pathdht.js
98 lines (86 loc) · 2.27 KB
/
dht.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
'use strict'
const promisify = require('promisify-es6')
const streamToValue = require('../stream-to-value')
module.exports = (send) => {
return {
findprovs: promisify((args, opts, callback) => {
if (typeof opts === 'function' &&
!callback) {
callback = opts
opts = {}
}
// opts is the real callback --
// 'callback' is being injected by promisify
if (typeof opts === 'function' &&
typeof callback === 'function') {
callback = opts
opts = {}
}
const request = {
path: 'dht/findprovs',
args: args,
qs: opts
}
send.andTransform(request, streamToValue, callback)
}),
get: promisify((key, opts, callback) => {
if (typeof opts === 'function' &&
!callback) {
callback = opts
opts = {}
}
// opts is the real callback --
// 'callback' is being injected by promisify
if (typeof opts === 'function' &&
typeof callback === 'function') {
callback = opts
opts = {}
}
const handleResult = (done, err, res) => {
if (err) {
return done(err)
}
if (!res) {
return done(new Error('empty response'))
}
if (res.length === 0) {
return done(new Error('no value returned for key'))
}
// Inconsistent return values in the browser vs node
if (Array.isArray(res)) {
res = res[0]
}
if (res.Type === 5) {
done(null, res.Extra)
} else {
let error = new Error('key was not found (type 6)')
done(error)
}
}
send({
path: 'dht/get',
args: key,
qs: opts
}, handleResult.bind(null, callback))
}),
put: promisify((key, value, opts, callback) => {
if (typeof opts === 'function' &&
!callback) {
callback = opts
opts = {}
}
// opts is the real callback --
// 'callback' is being injected by promisify
if (typeof opts === 'function' &&
typeof callback === 'function') {
callback = opts
opts = {}
}
send({
path: 'dht/put',
args: [key, value],
qs: opts
}, callback)
})
}
}