From 6aac0b91ce95c60fdaa37233e7bffa41be4d9ab8 Mon Sep 17 00:00:00 2001 From: yflory Date: Mon, 31 Aug 2020 11:00:46 +0200 Subject: [PATCH] Improve team invitation notifications --- www/common/outer/mailbox-handlers.js | 11 ++++++++++- www/common/outer/mailbox.js | 1 + 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/www/common/outer/mailbox-handlers.js b/www/common/outer/mailbox-handlers.js index 31479e1e4..21a8cf7eb 100644 --- a/www/common/outer/mailbox-handlers.js +++ b/www/common/outer/mailbox-handlers.js @@ -448,6 +448,8 @@ define([ } catch (e) { console.error(e); } } + var userData = content.user || content; + console.log(1); box.sendMessage({ type: 'INVITE_TO_TEAM_ANSWERED', content: { @@ -456,6 +458,7 @@ define([ answer: content.answer } }, function () {}); + console.log(2); cb(true); }; @@ -657,9 +660,15 @@ define([ if (!data.msg) { return void cb(true); } // Check if the request is valid (sent by the correct user) + var myCurve = Util.find(ctx, ['store', 'proxy', 'curvePublic']); var curve = Util.find(data, ['msg', 'content', 'user', 'curvePublic']) || Util.find(data, ['msg', 'content', 'curvePublic']); - if (curve && data.msg.author !== curve) { console.error('blocked'); return void cb(true); } + // Block messages that are not coming from the user described in the message + // except if the author is ourselves. + if (curve && data.msg.author !== curve && data.msg.author !== myCurve) { + console.error('blocked'); + return void cb(true); + } var type = data.msg.type; diff --git a/www/common/outer/mailbox.js b/www/common/outer/mailbox.js index 7255b47c8..aafd35a8f 100644 --- a/www/common/outer/mailbox.js +++ b/www/common/outer/mailbox.js @@ -258,6 +258,7 @@ proxy.mailboxes = { } catch (e) { console.error(e); } + console.error('test'); sendMessage(msg, function (err, hash) { if (err) { return void console.error(err); } box.history.push(hash);