From 6c896844bd483f98e57fc9c5528f66a0bb63667f Mon Sep 17 00:00:00 2001 From: cel Date: Thu, 31 Jan 2019 10:13:38 -1000 Subject: Render user-invite --- lib/app.js | 5 +++++ lib/render-msg.js | 28 ++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/lib/app.js b/lib/app.js index cb5075d..e7cca83 100644 --- a/lib/app.js +++ b/lib/app.js @@ -40,6 +40,11 @@ function App(sbot, config) { this.previewContacts = conf.previewContacts == null ? false : conf.previewContacts this.useOoo = conf.ooo == null ? false : conf.ooo this.ssbPort = 8008 + /* + var capsConfig = config.caps || {} + this.userInviteCap = capsConfig.userInvite + || new Buffer('MxiG/9q04kN2C6vJQKa6ZhAj0G/FdfRkmeGTMnpsoek=', 'base64') + */ var host1 = /:/.test(this.host) ? '[' + this.host + ']' : this.host this.baseUrl = 'http://' + host1 + ':' + this.port diff --git a/lib/render-msg.js b/lib/render-msg.js index 2f265b9..722b709 100644 --- a/lib/render-msg.js +++ b/lib/render-msg.js @@ -3,6 +3,9 @@ var htime = require('human-time') var multicb = require('multicb') var u = require('./util') var mdInline = require('./markdown-inline') +/* +var ssbKeys = require('ssb-keys') +*/ module.exports = RenderMsg @@ -338,6 +341,7 @@ RenderMsg.prototype.message = function (cb) { case 'address': return this.address(cb) case 'pub-owner-announce': return this.pubOwnerAnnounce(cb) case 'pub-owner-confirm': return this.pubOwnerConfirm(cb) + case 'user-invite': return this.userInvite(cb) default: return this.object(cb) } } @@ -789,6 +793,30 @@ RenderMsg.prototype.pubOwnerConfirm = function (cb) { ], cb) } +RenderMsg.prototype.userInvite = function (cb) { + this.wrapMini('user invite', cb) +/* + var self = this + var invite = this.c.invite + var host = this.c.host + var author = this.msg.value.author + // this.c.private + // this.c.reveal + var isValid = ssbKeys.verifyObj(invite, this.serve.app.userInviteCap, this.c) + if (host && host !== author) self.link(host, gotHostLink) + else gotHostLink() + function gotHostLink(err, hostLink) { + if (err) return cb(err) + self.wrap([ + isValid ? 'valid ' : 'invalid ', + 'user invite', + hostLink ? [' from ', hostLink] : '', + h('a', {href: self.toUrl(invite)}, truncate(invite, 10)), + ], cb) + } + */ +} + RenderMsg.prototype.channel = function (cb) { var chan = '#' + this.c.channel this.wrapMini([ -- cgit v1.2.3