From 033ce02e7bada2158b004f3e2620d3ec957f3e00 Mon Sep 17 00:00:00 2001
From: Peter Jaszkowiak
Date: Wed, 26 Apr 2017 15:22:17 -0600
Subject: [PATCH] Rename hooks
Add `static:messaging.canMessageRoom` as well
---
src/messaging.js | 9 +++++++--
src/messaging/data.js | 2 +-
src/messaging/notifications.js | 2 +-
3 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/src/messaging.js b/src/messaging.js
index c7e13e72bb..8864368c11 100644
--- a/src/messaging.js
+++ b/src/messaging.js
@@ -264,7 +264,7 @@ Messaging.canMessageUser = function (uid, toUid, callback) {
return next(new Error('[[error:chat-restricted]]'));
}
- plugins.fireHook('filter:messaging.canMessageUser', {
+ plugins.fireHook('static:messaging.canMessageUser', {
uid: uid,
toUid: toUid,
}, function (err) {
@@ -306,7 +306,12 @@ Messaging.canMessageRoom = function (uid, roomId, callback) {
return next(new Error('[[error:email-not-confirmed-chat]]'));
}
- next();
+ plugins.fireHook('static:messaging.canMessageRoom', {
+ uid: uid,
+ roomId: roomId,
+ }, function (err) {
+ next(err);
+ });
},
], callback);
};
diff --git a/src/messaging/data.js b/src/messaging/data.js
index 6a3a7b03a4..b565294902 100644
--- a/src/messaging/data.js
+++ b/src/messaging/data.js
@@ -130,7 +130,7 @@ module.exports = function (Messaging) {
}
},
function (messages, next) {
- plugins.fireHook('filter:messaging.getMessagesData', {
+ plugins.fireHook('filter:messaging.getMessages', {
messages: messages,
uid: uid,
roomId: roomId,
diff --git a/src/messaging/notifications.js b/src/messaging/notifications.js
index 564ea01fee..9e223a8158 100644
--- a/src/messaging/notifications.js
+++ b/src/messaging/notifications.js
@@ -28,7 +28,7 @@ module.exports = function (Messaging) {
message: messageObj,
};
- plugins.fireHook('filter:messaging.notifyUsersInRoom', data, next);
+ plugins.fireHook('filter:messaging.notify', data, next);
},
function (data, next) {
if (!data || !data.uids || !data.uids.length) {