From 2ebbca91a4fd8ac957a0bbe3335827a17746771f Mon Sep 17 00:00:00 2001 From: cel Date: Sun, 3 Feb 2019 17:19:37 -1000 Subject: Render peer invites --- lib/app.js | 4 ++++ lib/render-msg.js | 11 ++++++----- 2 files changed, 10 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/app.js b/lib/app.js index 0cc2702..18bbb14 100644 --- a/lib/app.js +++ b/lib/app.js @@ -47,6 +47,10 @@ function App(sbot, config) { var capsConfig = config.caps || {} this.userInviteCap = capsConfig.userInvite || new Buffer('MxiG/9q04kN2C6vJQKa6ZhAj0G/FdfRkmeGTMnpsoek=', 'base64') + // sha256('user-invites:DEVELOPMENT') + this.peerInviteCap = capsConfig.peerInvite + || new Buffer('pmr+IzM+4VAZgi5H5bOopXkwnzqrNussS7DtAJsfbf0=', 'base64') + // sha256('peer-invites:DEVELOPMENT') */ var host1 = /:/.test(this.host) ? '[' + this.host + ']' : this.host diff --git a/lib/render-msg.js b/lib/render-msg.js index 2720751..357edbe 100644 --- a/lib/render-msg.js +++ b/lib/render-msg.js @@ -341,7 +341,8 @@ 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) + case 'user-invite': + case 'peer-invite': return this.peerInvite(cb) default: return this.object(cb) } } @@ -788,8 +789,8 @@ RenderMsg.prototype.pubOwnerConfirm = function (cb) { ], cb) } -RenderMsg.prototype.userInvite = function (cb) { - this.wrapMini('user invite', cb) +RenderMsg.prototype.peerInvite = function (cb) { + this.wrapMini('peer invite', cb) /* var self = this var invite = this.c.invite @@ -797,14 +798,14 @@ RenderMsg.prototype.userInvite = function (cb) { var author = this.msg.value.author // this.c.private // this.c.reveal - var isValid = ssbKeys.verifyObj(invite, this.serve.app.userInviteCap, this.c) + var isValid = ssbKeys.verifyObj(invite, this.serve.app.peerInviteCap, 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', + 'peer invite', hostLink ? [' from ', hostLink] : '', h('a', {href: self.toUrl(invite)}, u.truncate(invite, 10)), ], cb) -- cgit v1.2.3