40003-vm/backend/src/db/models/integrations.js
2026-05-14 13:24:57 +00:00

177 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 integrations = sequelize.define(
'integrations',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
category: {
type: DataTypes.ENUM,
values: [
"dms",
"case_management",
"billing",
"identity",
"ai_provider",
"collaboration",
"automation",
"gRC",
"e_signature",
"bi_analytics",
"other"
],
},
integration_status: {
type: DataTypes.ENUM,
values: [
"available",
"configured",
"disabled"
],
},
is_enabled: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
configuration_notes: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
integrations.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.integrations.hasMany(db.file, {
as: 'configuration_files',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.integrations.getTableName(),
belongsToColumn: 'configuration_files',
},
});
db.integrations.belongsTo(db.users, {
as: 'createdBy',
});
db.integrations.belongsTo(db.users, {
as: 'updatedBy',
});
};
return integrations;
};