38832-vm/backend/src/db/models/projects.js
2026-02-28 10:34:04 +00:00

174 lines
2.7 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 projects = sequelize.define(
'projects',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
description: {
type: DataTypes.TEXT,
},
visibility: {
type: DataTypes.ENUM,
values: [
"private",
"team",
"public"
],
},
start_at: {
type: DataTypes.DATE,
},
end_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
projects.associate = (db) => {
db.projects.belongsToMany(db.users, {
as: 'members',
foreignKey: {
name: 'projects_membersId',
},
constraints: false,
through: 'projectsMembersUsers',
});
db.projects.belongsToMany(db.users, {
as: 'members_filter',
foreignKey: {
name: 'projects_membersId',
},
constraints: false,
through: 'projectsMembersUsers',
});
db.projects.belongsToMany(db.conversations, {
as: 'conversations',
foreignKey: {
name: 'projects_conversationsId',
},
constraints: false,
through: 'projectsConversationsConversations',
});
db.projects.belongsToMany(db.conversations, {
as: 'conversations_filter',
foreignKey: {
name: 'projects_conversationsId',
},
constraints: false,
through: 'projectsConversationsConversations',
});
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.projects.hasMany(db.conversations, {
as: 'conversations_project',
foreignKey: {
name: 'projectId',
},
constraints: false,
});
db.projects.hasMany(db.audit_events, {
as: 'audit_events_project',
foreignKey: {
name: 'projectId',
},
constraints: false,
});
//end loop
db.projects.belongsTo(db.users, {
as: 'owner',
foreignKey: {
name: 'ownerId',
},
constraints: false,
});
db.projects.belongsTo(db.users, {
as: 'createdBy',
});
db.projects.belongsTo(db.users, {
as: 'updatedBy',
});
};
return projects;
};