aboutsummaryrefslogtreecommitdiff
path: root/lib/about.js
blob: c905d612b4d2186b0ecf3ae8f0facde8cbd69f3b (plain)
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
var pull = require('pull-stream')
var multicb = require('multicb')
var cat = require('pull-cat')
var u = require('./util')

module.exports = About

function About(app, myId, follows) {
  this.app = app
  this.myId = myId
  this.follows = follows
}

About.prototype.createAboutOpStream = function (id) {
  return pull(
    this.app.sbot.links({dest: id, rel: 'about', values: true, reverse: true, private: true, meta: false}),
    this.app.unboxMessages(),
    pull.map(function (msg) {
      var c = msg.value.content
      if (typeof c !== 'object' || c === null) return []
      return Object.keys(c).filter(function (key) {
        return key !== 'about'
          && key !== 'type'
          && key !== 'recps'
          && key !== 'reason'
      }).map(function (key) {
        var value = c[key]
        return {
          id: msg.key,
          author: msg.value.author,
          timestamp: msg.value.timestamp,
          prop: key,
          value: value,
          remove: value && value.remove,
        }
      })
    }),
    pull.flatten()
  )
}

About.prototype.createAboutStreams = function (id) {
  var ops = this.createAboutOpStream(id)
  var scalars = {/* author: {prop: value} */}
  var sets = {/* author: {prop: {link}} */}

  var setsDone = multicb({pluck: 1, spread: true})
  setsDone()(null, pull.values([]))
  return {
    scalars: pull(
      ops,
      pull.unique(function (op) {
        return op.author + '-' + op.prop + '-'
      }),
      pull.filter(function (op) {
        return !op.remove
      })
    ),
    sets: u.readNext(setsDone)
  }
}

function computeTopAbout(aboutByFeed) {
  var propValueCounts = {/* prop: {value: count} */}
  var topValues = {/* prop: value */}
  var topValueCounts = {/* prop: count */}
  for (var feed in aboutByFeed) {
    var feedAbout = aboutByFeed[feed]
    for (var prop in feedAbout) {
      var value = feedAbout[prop]
      var valueCounts = propValueCounts[prop] || (propValueCounts[prop] = {})
      var count = (valueCounts[value] || 0) + 1
      valueCounts[value] = count
      if (count > (topValueCounts[prop] || 0)) {
        topValueCounts[prop] = count
        topValues[prop] = value
      }
    }
  }
  return topValues
}

About.prototype.get = function (dest, cb) {
  if (dest[0] === '@') return this.getSocial(dest, cb)
  return this.getCausal(dest, cb)
}

function copy(obj) {
  if (obj === null || typeof obj !== 'object') return obj
  var o = {}
  for (var k in obj) o[k] = obj[k]
  return o
}

function premapAbout(msg) {
  var value = {
    about: {},
    mentions: {},
    branches: {},
    sources: {},
    ts: msg.ts
  }
  var c = msg.value.content
  if (!c) return value

  if (c.branch) {
    msg.branches.map(function (id) {
      value.branches[id] = true
    })
  }

  if (!c.about && c.root) return value
  value.about = {}
  var author = msg.value.author
  var source = {id: msg.key, seq: msg.value.sequence}
  for (var k in c) switch(k) {
    case 'type':
    case 'about':
    case 'branch':
      break
    case 'recps':
      // get recps from root message only
      if (!c.root && !c.about) {
        value.recps = {}
        u.toLinkArray(c.recps).forEach(function (link) {
          value.recps[link.link] = link
        })
      }
      break
    case 'mentions':
      value.mentions = {}
      u.toLinkArray(c.mentions).map(function (link) {
        value.mentions[link.link] = link
      })
      break
    case 'image':
      var link = u.toLink(c.image)
      if (!link) break
      value.about.image = link.link
      value.about.imageLink = link
      var sources = value.sources.image || (value.sources.image = [])
      sources[author] = source
      break
    case 'attendee':
      var attendee = u.linkDest(c.attendee)
      if (attendee && attendee === author) {
        // TODO: allow users adding other users as attendees?
        var attendeeLink = copy(u.toLink(c.attendee))
        attendeeLink.source = msg.key
        value.attending = {}
        value.attending[attendee] = attendeeLink.remove ? null : attendeeLink }
      break
    default:
      // TODO: handle arrays
      value.about[k] = c[k]
      var sources = value.sources[k] || (value.sources[k] = {})
      sources[author] = source
  }
  return value
}

function reduceAbout(values, lastValue) {
  var newValue = {
    about: {},
    mentions: {},
    branches: {},
    sources: {}
  }
  values.sort(compareByTs).concat(lastValue).forEach(function (value) {
    if (!value) return
    if (value.ts) {
      if (!newValue.ts || value.ts > newValue.ts) {
        newValue.ts = value.ts
      }
    }
    if (value.attending) {
      var attending = newValue.attending || (newValue.attending = {})
      for (var k in value.attending) {
        attending[k] = value.attending[k]
      }
    }
    if (value.mentions) for (var k in value.mentions) {
      newValue.mentions[k] = value.mentions[k]
    }
    if (value.branches) for (var k in value.branches) {
      newValue.branches[k] = value.branches[k]
    }
    if (value.recps) {
      // note: zero recps is still private. truthy recps indicates private
      var recps = newValue.recps || (newValue.recps = {})
      for (var k in value.recps) {
        newValue.recps[k] = value.recps[k]
      }
    }
    if (value.about) for (var k in value.about) {
      // TODO: use merge heuristics
      newValue.about[k] = value.about[k]
      if (lastValue && lastValue.about[k]) {
        if (value === lastValue) {
          newValue.sources[k] = lastValue.sources[k]
        } else {
          // message setting a property resets the property's sources from branches
        }
      } else {
        var newSources = newValue.sources[k] || (newValue.sources[k] = {})
        var sources = value.sources[k]
        for (var feed in sources) {
          if (newSources[feed] && newSources[feed].seq > sources[feed].seq) {
            // assume causal order in user's own feed.
            // this condition shouldn't be reached if messages are in feed order
            console.error('skip', k, feed, sources[feed].id, newSources[feed].id)
            continue
          }
          newSources[feed] = sources[feed]
        }
      }
    }
  })
  return newValue
}

function postmapAbout(value) {
  var about = {
    ts: value.ts,
    _sources: {}
  }
  for (var k in value.sources) {
    var propSources = about._sources[k] = []
    for (var feed in value.sources[k]) {
      propSources.push(value.sources[k][feed].id)
    }
  }
  if (value.mentions) {
    about.mentions = []
    for (var k in value.mentions) {
      about.mentions.push(value.mentions[k])
    }
  }
  if (value.attending) {
    about.attendee = []
    for (var k in value.attending) {
      var link = value.attending[k]
      if (link) about.attendee.push(link)
    }
  }
  if (value.branches) about.branch = Object.keys(value.branches)
  if (value.recps) {
    about.recps = []
    for (var k in value.recps) {
      about.recps.push(value.recps[k])
    }
  }
  if (value.about) for (var k in value.about) {
    about[k] = value.about[k]
  }
  return about
}

function compareByTs(a, b) {
  return a.ts - b.ts
}

About.prototype.getCausal = function (dest, cb) {
  var self = this
  var backlinks = {}
  var seen = {}
  var queue = []
  var aboutAtMsgs = {}
  var now = Date.now()
  function enqueue(msg) {
    if (!seen[msg.key]) {
      seen[msg.key] = true
      queue.push(msg)
    }
  }
  function isMsgIdDone(id) {
    return !!aboutAtMsgs[id]
  }
  function isMsgReady(msg) {
    return msg.branches.every(isMsgIdDone)
  }
  function dequeue() {
    var msg = queue.filter(isMsgReady).sort(compareByTs)[0]
    if (!msg) return console.error('thread error'), queue.shift()
    var i = queue.indexOf(msg)
    queue.splice(i, 1)
    return msg
  }
  pull(
    cat([
      dest[0] === '%' && self.app.pullGetMsg(dest),
      self.app.sbot.links({
        rel: 'about',
        dest: dest,
        values: true,
        private: true,
        meta: false
      }),
      self.app.sbot.links({
        rel: 'root',
        dest: dest,
        values: true,
        private: true,
        meta: false
      })
    ]),
    pull.unique('key'),
    self.app.unboxMessages(),
    pull.drain(function (msg) {
      var c = msg.value.content
      if (!c) return
      msg = {
        key: msg.key,
        ts: Math.min(now,
          Number(msg.timestamp) || Infinity,
          Number(msg.value.timestamp || c.timestamp) || Infinity),
        value: msg.value,
        branches: u.toLinkArray(c.branch).map(u.linkDest)
      }
      if (!msg.branches.length) {
        enqueue(msg)
      } else msg.branches.forEach(function (id) {
        var linksToMsg = backlinks[id] || (backlinks[id] = [])
        linksToMsg.push(msg)
      })
    }, function (err) {
      if (err) return cb(err)
      while (queue.length) {
        var msg = dequeue()
        var abouts = msg.branches.map(function (id) { return aboutAtMsgs[id] })
        aboutAtMsgs[msg.key] = reduceAbout(abouts, premapAbout(msg))
        var linksToMsg = backlinks[msg.key]
        if (linksToMsg) linksToMsg.forEach(enqueue)
      }
      var headAbouts = []
      var headIds = []
      for (var id in aboutAtMsgs) {
        if (backlinks[id]) continue
        headIds.push(id)
        headAbouts.push(aboutAtMsgs[id])
      }
      headAbouts.sort(compareByTs)
      var about = postmapAbout(reduceAbout(headAbouts))
      about.branch = headIds
      cb(null, about)
    })
  )
}

function getValue(obj) {
  return obj.value
}

About.prototype.getSocial = function (dest, cb) {
  var self = this
  var myAbout = []
  var aboutByFeed = {}
  var aboutByFeedFollowed = {}
  this.follows.getFollows(this.myId, function (err, follows) {
    if (err) return cb(err)
    pull(
      cat([
        dest[0] === '%' && self.app.pullGetMsg(dest),
        self.app.sbot.links({
          rel: 'about',
          dest: dest,
          values: true,
          private: true,
          meta: false
        })
      ]),
      self.app.unboxMessages(),
      pull.drain(function (msg) {
        var author = msg.value.author
        var c = msg.value.content
        if (!c) return
        if (msg.key === dest && c.type === 'about') {
          // don't describe an about message with itself
          return
        }
        var about = author === self.myId ? myAbout :
          follows[author] ?
            aboutByFeedFollowed[author] || (aboutByFeedFollowed[author] = {}) :
            aboutByFeed[author] || (aboutByFeed[author] = {})

        if (c.name) about.name = c.name
        if (c.title) about.title = c.title
        if (c.image) {
          about.image = u.linkDest(c.image)
          about.imageLink = u.toLink(c.image)
        }
        if (c.description) about.description = c.description
        if (c.publicWebHosting) about.publicWebHosting = c.publicWebHosting
      }, function (err) {
        if (err) return cb(err)
        var destAbout = aboutByFeedFollowed[dest] || aboutByFeed[dest]
        // bias the author's choices by giving them an extra vote
        if (destAbout) {
          if (follows[dest]) aboutByFeedFollowed._author = destAbout
          else aboutByFeed._author = destAbout
        }
        var about = {}
        var followedAbout = computeTopAbout(aboutByFeedFollowed)
        var topAbout = computeTopAbout(aboutByFeed)
        for (var k in topAbout) about[k] = topAbout[k]
        // prefer followed feeds' choices
        for (var k in followedAbout) about[k] = followedAbout[k]
        // if we follow the destination/author feed, prefer its choices
        if (follows[dest]) for (var k in destAbout) about[k] = destAbout[k]
        // always prefer own choices
        for (var k in myAbout) about[k] = myAbout[k]
        cb(null, about)
      })
    )
  })
}