x.jsView |
---|
| 1 … | +var pull = require('pull-stream') |
| 2 … | +var paramap = require('pull-paramap') |
| 3 … | +var ssbClient = require('ssb-client') |
| 4 … | +var chalk = require('chalk') |
| 5 … | +var human = require('human-time') |
| 6 … | +var avatar = require('ssb-avatar') |
| 7 … | + |
| 8 … | +var listMessages = function () { |
| 9 … | + var number = process.argv[2] |
| 10 … | + var type = process.argv[3] |
| 11 … | + |
| 12 … | + ssbClient(function (err, sbot) { |
| 13 … | + if (err) throw err |
| 14 … | + sbot.whoami(function getId(err, me) { |
| 15 … | + if (err) throw err |
| 16 … | + pull( |
| 17 … | + sbot.messagesByType({ |
| 18 … | + type: type, |
| 19 … | + limit: Number(number), |
| 20 … | + reverse: true |
| 21 … | + }), |
| 22 … | + paramap(function getAvatar(msg, cb) { |
| 23 … | + avatar(sbot, me.id, msg.value.author, function (err, avatar) { |
| 24 … | + if (err) throw err |
| 25 … | + msg.avatar = avatar |
| 26 … | + cb(null, msg) |
| 27 … | + }) |
| 28 … | + }), |
| 29 … | + pull.drain(function (msg) { |
| 30 … | + if (type === 'post') { |
| 31 … | + console.log( |
| 32 … | + chalk.cyan('@' + msg.avatar.name) + |
| 33 … | + ' ' + |
| 34 … | + msg.value.content.text + |
| 35 … | + ' ' + |
| 36 … | + chalk.dim(human(new Date(msg.value.timestamp))) |
| 37 … | + ) |
| 38 … | + } else if (type === 'vote') { |
| 39 … | + if (msg.value.content.vote.link) { |
| 40 … | + console.log( |
| 41 … | + chalk.cyan('@' + msg.avatar.name) + |
| 42 … | + ' dug ' + |
| 43 … | + msg.value.content.vote.link + |
| 44 … | + ' ' + |
| 45 … | + chalk.dim(human(new Date(msg.value.timestamp))) |
| 46 … | + ) |
| 47 … | + } |
| 48 … | + } else { |
| 49 … | + console.log(msg.value.content) |
| 50 … | + } |
| 51 … | + }) |
| 52 … | + ) |
| 53 … | + }) |
| 54 … | + }) |
| 55 … | +} |
| 56 … | + |
| 57 … | +listMessages() |