201 lines
1.9 KiB
JavaScript
201 lines
1.9 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 audit_events = sequelize.define(
|
|
'audit_events',
|
|
{
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true,
|
|
},
|
|
|
|
event_on: {
|
|
type: DataTypes.DATE,
|
|
|
|
|
|
|
|
},
|
|
|
|
event_type: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"login",
|
|
|
|
|
|
"logout",
|
|
|
|
|
|
"create",
|
|
|
|
|
|
"update",
|
|
|
|
|
|
"delete",
|
|
|
|
|
|
"download",
|
|
|
|
|
|
"upload",
|
|
|
|
|
|
"permission_change",
|
|
|
|
|
|
"status_change"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
resource_type: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"contact_submission",
|
|
|
|
|
|
"consultation",
|
|
|
|
|
|
"case",
|
|
|
|
|
|
"evidence_item",
|
|
|
|
|
|
"document",
|
|
|
|
|
|
"invoice",
|
|
|
|
|
|
"payment",
|
|
|
|
|
|
"page",
|
|
|
|
|
|
"service",
|
|
|
|
|
|
"blog_post",
|
|
|
|
|
|
"user",
|
|
|
|
|
|
"other"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
resource_label: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
details: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
ip_address: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
importHash: {
|
|
type: DataTypes.STRING(255),
|
|
allowNull: true,
|
|
unique: true,
|
|
},
|
|
},
|
|
{
|
|
timestamps: true,
|
|
paranoid: true,
|
|
freezeTableName: true,
|
|
},
|
|
);
|
|
|
|
audit_events.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.audit_events.belongsTo(db.users, {
|
|
as: 'actor',
|
|
foreignKey: {
|
|
name: 'actorId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
|
|
db.audit_events.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.audit_events.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
|
|
|
|
return audit_events;
|
|
};
|
|
|
|
|