You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
JavaScript
43 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);
|