git ssb

1+

ev / scatter



Tree: 0f2ca48d79ca0ff3ef710a8cf0a32dd8abd60bb1

Files: 0f2ca48d79ca0ff3ef710a8cf0a32dd8abd60bb1 / scuttlebot.js

1689 bytesRaw
1var pull = require('pull-stream')
2var ssbKeys = require('ssb-keys')
3var ref = require('ssb-ref')
4var reconnect = require('pull-reconnect')
5
6var config = require('./config')()
7var createClient = require('ssb-client')
8var createFeed = require('ssb-feed')
9
10var keys = require('./keys')
11
12var CACHE = {}
13
14var rec = reconnect(function (isConn) {
15 function notify (value) {
16 isConn(value)
17 }
18
19 createClient(keys, {
20 manifest: require('./manifest.json'),
21 remote: config.remote,
22 caps: config.caps
23 }, function (err, _sbot) {
24 if(err)
25 return notify(err)
26
27 sbot = _sbot
28 sbot.on('closed', function () {
29 sbot = null
30 notify(new Error('closed'))
31 })
32
33 notify()
34 })
35})
36
37var internal = {
38 getLatest: rec.async(function (id, cb) {
39 sbot.getLatest(id, cb)
40 }),
41 add: rec.async(function (msg, cb) {
42 sbot.add(msg, cb)
43 })
44}
45
46var feed = createFeed(internal, keys, {remote: true})
47
48module.exports = {
49 query: rec.source(function (query) {
50 return sbot.query.read(query)
51 }),
52 links: rec.source(function (query) {
53 return sbot.links(query)
54 }),
55 publish: rec.async(function (content, cb) {
56 if(content.recps)
57 content = ssbKeys.box(content, content.recps.map(function (e) {
58 return ref.isFeed(e) ? e : e.link
59 }))
60 else if(content.mentions)
61 content.mentions.forEach(function (mention) {
62 if(ref.isBlob(mention.link)) {
63 sbot.blobs.push(mention.link, function (err) {
64 if(err) console.error(err)
65 })
66 }
67 })
68 feed.add(content, function (err, msg) {
69 if(err) console.error(err)
70 else if(!cb) console.log(msg)
71 cb && cb(err, msg)
72 })
73 })
74}
75
76

Built with git-ssb-web