mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-29 03:40:27 +01:00
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
const user = require('../user');
|
|
const notifications = require('../notifications');
|
|
const SocketNotifs = module.exports;
|
|
|
|
SocketNotifs.get = async function (socket, data) {
|
|
if (data && Array.isArray(data.nids) && socket.uid) {
|
|
return await user.notifications.getNotifications(data.nids, socket.uid);
|
|
}
|
|
return await user.notifications.get(socket.uid);
|
|
};
|
|
|
|
SocketNotifs.getCount = async function (socket) {
|
|
return await user.notifications.getUnreadCount(socket.uid);
|
|
};
|
|
|
|
SocketNotifs.deleteAll = async function (socket) {
|
|
if (!socket.uid) {
|
|
throw new Error('[[error:no-privileges]]');
|
|
}
|
|
|
|
await user.notifications.deleteAll(socket.uid);
|
|
};
|
|
|
|
SocketNotifs.markRead = async function (socket, nid) {
|
|
await notifications.markRead(nid, socket.uid);
|
|
user.notifications.pushCount(socket.uid);
|
|
};
|
|
|
|
SocketNotifs.markUnread = async function (socket, nid) {
|
|
await notifications.markUnread(nid, socket.uid);
|
|
user.notifications.pushCount(socket.uid);
|
|
};
|
|
|
|
SocketNotifs.markAllRead = async function (socket) {
|
|
await notifications.markAllRead(socket.uid);
|
|
user.notifications.pushCount(socket.uid);
|
|
};
|
|
|
|
require('../promisify')(SocketNotifs);
|