diff options
Diffstat (limited to 'lib/app.js')
-rw-r--r-- | lib/app.js | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -521,3 +521,23 @@ App.prototype.streamMentions = function (opts) { }}] })) } + +App.prototype.streamPrivate = function (opts) { + if (this.sbot.private.read) return this.sbot.private.read(u.mergeOpts(opts, { + query: [{$filter: { + timestamp: { + $gt: opts.gt, + $lt: opts.lt, + } + }}] + })) + + + return pull + this.createLogStream(u.mergeOpts(opts, {limit: null}), + pull.filter(u.isMsgEncrypted), + this.unboxMessages(), + pull.filter(u.isMsgReadable), + pull.take(opts.limit) + ) +} |