git ssb

2+

ev / mvd



Tree: e63daf47ce2227a1684f6560aae950ed93881725

Files: e63daf47ce2227a1684f6560aae950ed93881725 / scuttlebot.js

2532 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 createLogStream: rec.source(function (opts) {
50 return pull(
51 sbot.createLogStream(opts),
52 pull.through(function (e) {
53 CACHE[e.key] = CACHE[e.key] || e.value
54 })
55 )
56 }),
57 userStream: rec.source(function (config) {
58 return pull(
59 sbot.createUserStream(config),
60 pull.through(function (e) {
61 CACHE[e.key] = CACHE[e.key] || e.value
62 })
63 )
64 }),
65 backlinks: rec.source(function (query) {
66 return sbot.backlinks.read(query)
67 }),
68 query: rec.source(function (query) {
69 return sbot.query.read(query)
70 }),
71 get: rec.async(function (key, cb) {
72 if('function' !== typeof cb)
73 throw new Error('cb must be function')
74 if(CACHE[key]) cb(null, CACHE[key])
75 else sbot.get(key, function (err, value) {
76 if(err) return cb(err)
77 cb(null, CACHE[key] = value)
78 })
79 }),
80 links: rec.source(function (query) {
81 return sbot.links(query)
82 }),
83 addblob: rec.sink(function (cb) {
84 return sbot.blobs.add(cb)
85 }),
86 publish: rec.async(function (content, cb) {
87 if(content.recps)
88 content = ssbKeys.box(content, content.recps.map(function (e) {
89 return ref.isFeed(e) ? e : e.link
90 }))
91 else if(content.mentions)
92 content.mentions.forEach(function (mention) {
93 if(ref.isBlob(mention.link)) {
94 sbot.blobs.push(mention.link, function (err) {
95 if(err) console.error(err)
96 })
97 }
98 })
99 feed.add(content, function (err, msg) {
100 if(err) console.error(err)
101 else if(!cb) console.log(msg)
102 cb && cb(err, msg)
103 })
104 })
105
106}
107
108

Built with git-ssb-web