250 lines
2.5 KiB
JavaScript
250 lines
2.5 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_logs = sequelize.define(
|
|
'audit_logs',
|
|
{
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true,
|
|
},
|
|
|
|
action_type: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"create",
|
|
|
|
|
|
"update",
|
|
|
|
|
|
"delete",
|
|
|
|
|
|
"login",
|
|
|
|
|
|
"logout",
|
|
|
|
|
|
"invite_sent",
|
|
|
|
|
|
"invite_accepted",
|
|
|
|
|
|
"status_change",
|
|
|
|
|
|
"validation",
|
|
|
|
|
|
"approval",
|
|
|
|
|
|
"export",
|
|
|
|
|
|
"download"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
target_entity_type: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"organization",
|
|
|
|
|
|
"user",
|
|
|
|
|
|
"connected_system",
|
|
|
|
|
|
"control_framework",
|
|
|
|
|
|
"control_requirement",
|
|
|
|
|
|
"identity_workflow",
|
|
|
|
|
|
"evidence_model",
|
|
|
|
|
|
"artifact",
|
|
|
|
|
|
"sampled_subject",
|
|
|
|
|
|
"proof_packet",
|
|
|
|
|
|
"remediation_item",
|
|
|
|
|
|
"access_review",
|
|
|
|
|
|
"access_review_item",
|
|
|
|
|
|
"exception",
|
|
|
|
|
|
"setting",
|
|
|
|
|
|
"notification"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
target_entity_key: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
timestamp: {
|
|
type: DataTypes.DATE,
|
|
|
|
|
|
|
|
},
|
|
|
|
before_state_summary: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
after_state_summary: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
ip_address: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
user_agent: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
notes: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
importHash: {
|
|
type: DataTypes.STRING(255),
|
|
allowNull: true,
|
|
unique: true,
|
|
},
|
|
},
|
|
{
|
|
timestamps: true,
|
|
paranoid: true,
|
|
freezeTableName: true,
|
|
},
|
|
);
|
|
|
|
audit_logs.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_logs.belongsTo(db.organizations, {
|
|
as: 'organization',
|
|
foreignKey: {
|
|
name: 'organizationId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.audit_logs.belongsTo(db.users, {
|
|
as: 'actor_user',
|
|
foreignKey: {
|
|
name: 'actor_userId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
|
|
db.audit_logs.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.audit_logs.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
|
|
|
|
return audit_logs;
|
|
};
|
|
|
|
|