226 lines
2.4 KiB
JavaScript
226 lines
2.4 KiB
JavaScript
const config = require('../../config');
|
|
const providers = config.providers;
|
|
const crypto = require('crypto');
|
|
const bcrypt = require('bcrypt');
|
|
const moment = require('moment');
|
|
|
|
module.exports = function(sequelize, DataTypes) {
|
|
const notifications = sequelize.define(
|
|
'notifications',
|
|
{
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true,
|
|
},
|
|
|
|
notification_type: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"packet_due",
|
|
|
|
|
|
"remediation_overdue",
|
|
|
|
|
|
"artifact_pending_validation",
|
|
|
|
|
|
"review_deadline",
|
|
|
|
|
|
"exception_expiration",
|
|
|
|
|
|
"system_connection_degraded",
|
|
|
|
|
|
"packet_ready",
|
|
|
|
|
|
"comment_mention"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
title: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
message: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
priority: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"low",
|
|
|
|
|
|
"normal",
|
|
|
|
|
|
"high"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
read_flag: {
|
|
type: DataTypes.BOOLEAN,
|
|
|
|
allowNull: false,
|
|
defaultValue: false,
|
|
|
|
|
|
|
|
},
|
|
|
|
read_at: {
|
|
type: DataTypes.DATE,
|
|
|
|
|
|
|
|
},
|
|
|
|
target_entity_type: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"proof_packet",
|
|
|
|
|
|
"remediation_item",
|
|
|
|
|
|
"artifact",
|
|
|
|
|
|
"access_review",
|
|
|
|
|
|
"exception",
|
|
|
|
|
|
"connected_system",
|
|
|
|
|
|
"identity_workflow"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
target_entity_key: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
scheduled_for: {
|
|
type: DataTypes.DATE,
|
|
|
|
|
|
|
|
},
|
|
|
|
importHash: {
|
|
type: DataTypes.STRING(255),
|
|
allowNull: true,
|
|
unique: true,
|
|
},
|
|
},
|
|
{
|
|
timestamps: true,
|
|
paranoid: true,
|
|
freezeTableName: true,
|
|
},
|
|
);
|
|
|
|
notifications.associate = (db) => {
|
|
|
|
|
|
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//end loop
|
|
|
|
|
|
|
|
db.notifications.belongsTo(db.organizations, {
|
|
as: 'organization',
|
|
foreignKey: {
|
|
name: 'organizationId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.notifications.belongsTo(db.users, {
|
|
as: 'recipient_user',
|
|
foreignKey: {
|
|
name: 'recipient_userId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
|
|
db.notifications.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.notifications.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
|
|
|
|
return notifications;
|
|
};
|
|
|
|
|