2026-03-01 20:12:54 +00:00

183 lines
2.0 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 exports = sequelize.define(
'exports',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
format: {
type: DataTypes.ENUM,
values: [
"wav",
"mp3",
"ogg",
"midi",
"stems_zip",
"project_json"
],
},
status: {
type: DataTypes.ENUM,
values: [
"queued",
"rendering",
"ready",
"failed"
],
},
duration_seconds: {
type: DataTypes.DECIMAL,
},
requested_at: {
type: DataTypes.DATE,
},
ready_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
exports.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.exports.belongsTo(db.projects, {
as: 'project',
foreignKey: {
name: 'projectId',
},
constraints: false,
});
db.exports.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.exports.hasMany(db.file, {
as: 'file',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.exports.getTableName(),
belongsToColumn: 'file',
},
});
db.exports.belongsTo(db.users, {
as: 'createdBy',
});
db.exports.belongsTo(db.users, {
as: 'updatedBy',
});
};
return exports;
};