81 lines
2.4 KiB
JavaScript
81 lines
2.4 KiB
JavaScript
|
module.exports = Self => {
|
||
|
Self.remoteMethod('getList', {
|
||
|
description: 'Get list of the available and active notification subscriptions',
|
||
|
accessType: 'READ',
|
||
|
accepts: [
|
||
|
{
|
||
|
arg: 'id',
|
||
|
type: 'number',
|
||
|
description: 'User to modify',
|
||
|
http: {source: 'path'}
|
||
|
}
|
||
|
],
|
||
|
returns: {
|
||
|
type: 'object',
|
||
|
root: true
|
||
|
},
|
||
|
http: {
|
||
|
path: `/:id/getList`,
|
||
|
verb: 'GET'
|
||
|
}
|
||
|
});
|
||
|
|
||
|
Self.getList = async(id, options) => {
|
||
|
const notifications = [];
|
||
|
const models = Self.app.models;
|
||
|
|
||
|
const myOptions = {};
|
||
|
|
||
|
if (typeof options == 'object')
|
||
|
Object.assign(myOptions, options);
|
||
|
|
||
|
const activeNotifications = await models.NotificationSubscription.find({
|
||
|
include: {relation: 'notification'},
|
||
|
where: {userFk: id}
|
||
|
}, myOptions);
|
||
|
|
||
|
const roles = await models.RoleMapping.find({
|
||
|
fields: ['roleId'],
|
||
|
where: {principalId: id}
|
||
|
}, myOptions);
|
||
|
|
||
|
const availableNotifications = await models.NotificationAcl.find({
|
||
|
include: {relation: 'notification'},
|
||
|
where: {
|
||
|
roleFk: {
|
||
|
inq: roles.map(role => {
|
||
|
return role.roleId;
|
||
|
}),
|
||
|
},
|
||
|
}
|
||
|
}, myOptions);
|
||
|
|
||
|
activeNotifications.forEach(subscription => {
|
||
|
notifications.push({
|
||
|
id: subscription.id,
|
||
|
notificationFk: subscription.notificationFk,
|
||
|
name: subscription.notification().name,
|
||
|
description: subscription.notification().description,
|
||
|
active: true
|
||
|
});
|
||
|
});
|
||
|
|
||
|
availableNotifications.forEach(acl => {
|
||
|
const activeNotif = notifications.find(
|
||
|
notif => notif.notificationFk === acl.notificationFk
|
||
|
);
|
||
|
if (!activeNotif) {
|
||
|
notifications.push({
|
||
|
id: null,
|
||
|
notificationFk: acl.notificationFk,
|
||
|
name: acl.notification().name,
|
||
|
description: acl.notification().description,
|
||
|
active: false,
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
|
||
|
return notifications;
|
||
|
};
|
||
|
};
|