39947-vm/backend/src/db/models/contacts.js
2026-05-10 20:02:58 +00:00

271 lines
3.1 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 contacts = sequelize.define(
'contacts',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
first_name: {
type: DataTypes.TEXT,
},
last_name: {
type: DataTypes.TEXT,
},
email: {
type: DataTypes.TEXT,
},
phone: {
type: DataTypes.TEXT,
},
job_title: {
type: DataTypes.TEXT,
},
whatsapp: {
type: DataTypes.TEXT,
},
linkedin_url: {
type: DataTypes.TEXT,
},
preferred_channel: {
type: DataTypes.TEXT,
},
allow_email: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
allow_sms: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
allow_whatsapp: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
lifecycle_stage: {
type: DataTypes.ENUM,
values: [
"prospect",
"lead",
"customer",
"champion",
"lost",
"inactive"
],
},
notes: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
contacts.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.contacts.hasMany(db.deals, {
as: 'deals_primary_contact',
foreignKey: {
name: 'primary_contactId',
},
constraints: false,
});
db.contacts.hasMany(db.support_tickets, {
as: 'support_tickets_contact',
foreignKey: {
name: 'contactId',
},
constraints: false,
});
db.contacts.hasMany(db.csat_surveys, {
as: 'csat_surveys_contact',
foreignKey: {
name: 'contactId',
},
constraints: false,
});
//end loop
db.contacts.belongsTo(db.tenants, {
as: 'tenant',
foreignKey: {
name: 'tenantId',
},
constraints: false,
});
db.contacts.belongsTo(db.companies, {
as: 'company',
foreignKey: {
name: 'companyId',
},
constraints: false,
});
db.contacts.belongsTo(db.organizations, {
as: 'organizations',
foreignKey: {
name: 'organizationsId',
},
constraints: false,
});
db.contacts.belongsTo(db.users, {
as: 'createdBy',
});
db.contacts.belongsTo(db.users, {
as: 'updatedBy',
});
};
return contacts;
};