profile/obs.jsView |
---|
| 1 … | +var nest = require('depnest') |
| 2 … | +var MutantPullReduce = require('mutant-pull-reduce') |
| 3 … | + |
| 4 … | +exports.needs = nest({ |
| 5 … | + 'sbot.pull.query': 'first' |
| 6 … | +}) |
| 7 … | + |
| 8 … | +exports.gives = nest({ |
| 9 … | + 'profile.obs': ['following', 'followers'] |
| 10 … | +}) |
| 11 … | + |
| 12 … | +exports.create = function (api) { |
| 13 … | + var followingCache = {} |
| 14 … | + var followerCache = {} |
| 15 … | + |
| 16 … | + return nest({ |
| 17 … | + 'profile.obs': { following, followers } |
| 18 … | + }) |
| 19 … | + |
| 20 … | + function following (id) { |
| 21 … | + if (!followingCache[id]) { |
| 22 … | + followingCache[id] = reduce(api.sbot.pull.query({ |
| 23 … | + query: [ |
| 24 … | + makeQuery(id, { $prefix: '@' }), |
| 25 … | + {'$map': ['value', 'content', 'contact']} |
| 26 … | + ], |
| 27 … | + live: true |
| 28 … | + })) |
| 29 … | + } |
| 30 … | + return followingCache[id] |
| 31 … | + } |
| 32 … | + |
| 33 … | + function followers (id) { |
| 34 … | + if (!followerCache[id]) { |
| 35 … | + followerCache[id] = reduce(api.sbot.pull.query({ |
| 36 … | + query: [ |
| 37 … | + makeQuery({ $prefix: '@' }, id), |
| 38 … | + {'$map': ['value', 'author']} |
| 39 … | + ], |
| 40 … | + live: true |
| 41 … | + })) |
| 42 … | + } |
| 43 … | + return followerCache[id] |
| 44 … | + } |
| 45 … | +} |
| 46 … | + |
| 47 … | +function reduce (stream) { |
| 48 … | + return MutantPullReduce(stream, (result, item) => { |
| 49 … | + result.add(item) |
| 50 … | + return result |
| 51 … | + }, { |
| 52 … | + startValue: new Set() |
| 53 … | + }) |
| 54 … | +} |
| 55 … | + |
| 56 … | +function makeQuery (a, b) { |
| 57 … | + return {'$filter': { |
| 58 … | + value: { |
| 59 … | + author: a, |
| 60 … | + content: { |
| 61 … | + type: 'contact', |
| 62 … | + contact: b, |
| 63 … | + following: true |
| 64 … | + } |
| 65 … | + } |
| 66 … | + }} |
| 67 … | +} |