40336-vm/backend/src/db/models/projects.js
2026-06-26 14:53:51 +00:00

255 lines
3.2 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,
},
status: {
type: DataTypes.ENUM,
values: [
"draft",
"active",
"archived"
],
},
base_map_style: {
type: DataTypes.ENUM,
values: [
"satellite",
"terrain",
"dark",
"light",
"streets"
],
},
default_lat: {
type: DataTypes.DECIMAL,
},
default_lng: {
type: DataTypes.DECIMAL,
},
default_altitude: {
type: DataTypes.DECIMAL,
},
default_heading: {
type: DataTypes.DECIMAL,
},
default_pitch: {
type: DataTypes.DECIMAL,
},
default_roll: {
type: DataTypes.DECIMAL,
},
default_zoom: {
type: DataTypes.DECIMAL,
},
snapping_enabled: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
snapping_tolerance_meters: {
type: DataTypes.DECIMAL,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
projects.associate = (db) => {
/// 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.layers, {
as: 'layers_project',
foreignKey: {
name: 'projectId',
},
constraints: false,
});
db.projects.hasMany(db.imports, {
as: 'imports_project',
foreignKey: {
name: 'projectId',
},
constraints: false,
});
db.projects.hasMany(db.exports, {
as: 'exports_project',
foreignKey: {
name: 'projectId',
},
constraints: false,
});
db.projects.hasMany(db.bookmarks, {
as: 'bookmarks_project',
foreignKey: {
name: 'projectId',
},
constraints: false,
});
//end loop
db.projects.belongsTo(db.workspaces, {
as: 'workspace',
foreignKey: {
name: 'workspaceId',
},
constraints: false,
});
db.projects.belongsTo(db.users, {
as: 'owner',
foreignKey: {
name: 'ownerId',
},
constraints: false,
});
db.projects.belongsTo(db.organizations, {
as: 'organizations',
foreignKey: {
name: 'organizationsId',
},
constraints: false,
});
db.projects.belongsTo(db.users, {
as: 'createdBy',
});
db.projects.belongsTo(db.users, {
as: 'updatedBy',
});
};
return projects;
};