-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path09-sbot-replicate.js
65 lines (54 loc) · 1.39 KB
/
09-sbot-replicate.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
var ssbKeys = require('ssb-keys')
var path = require('path')
var pull = require('pull-stream')
var rmrf = require('rimraf')
var dir = '/tmp/bench-ssb-legacy_ssb/'
var keys = ssbKeys.loadOrCreateSync(path.join(dir, 'secret'))
var config = {
path: dir,
keys: keys
}
var dir2 = '/tmp/bench-ssb-legacy_ssb2/'
rmrf.sync(dir2)
var keys2 = ssbKeys.loadOrCreateSync(path.join(dir, 'secret'))
var Sbot = require('ssb-server')
var sbot = Sbot(config)
var sbot2 = Sbot({ path: dir2, keys: keys2 })
var i = 0
sbot.getVectorClock(function (err, clock) {
var log = require('./util')('remote-legacy-replicate-write')
var first = Object.keys(clock)[0]
var friends = {}
var n = 0
require('ssb-client')({
remote: sbot.getAddress(),
keys: keys,
manifest: {
createHistoryStream: 'source',
getVectorClock: 'async'
}
}, function (err, rpc) {
if(err) throw err
function replicate (id) {
if(friends[id]) return
friends[id] = true
n++
pull(
rpc.createHistoryStream({id: id, seq: 0, keys: false}),
pull.through(function (msg) {
log(1, ++i % 10000 == 0)
if(msg.content.contact) replicate(msg.content.contact)
}),
sbot2.createWriteStream(next)
)
}
replicate(first)
function next () {
if(--n) return
log(0, true)
rpc.close()
sbot.close()
sbot2.close()
}
})
})