39947-vm/backend/src/db/api/team_members.js
2026-05-10 21:24:49 +00:00

678 lines
16 KiB
JavaScript

const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Team_membersDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const team_members = await db.team_members.create(
{
id: data.id || undefined,
employment_type: data.employment_type
||
null
,
seniority: data.seniority
||
null
,
hourly_rate: data.hourly_rate
||
null
,
rate_currency: data.rate_currency
||
null
,
weekly_capacity_hours: data.weekly_capacity_hours
||
null
,
active: data.active
||
false
,
notes: data.notes
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await team_members.setTenant( data.tenant || null, {
transaction,
});
await team_members.setUser( data.user || null, {
transaction,
});
await team_members.setOrganizations( data.organizations || null, {
transaction,
});
return team_members;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const team_membersData = data.map((item, index) => ({
id: item.id || undefined,
employment_type: item.employment_type
||
null
,
seniority: item.seniority
||
null
,
hourly_rate: item.hourly_rate
||
null
,
rate_currency: item.rate_currency
||
null
,
weekly_capacity_hours: item.weekly_capacity_hours
||
null
,
active: item.active
||
false
,
notes: item.notes
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const team_members = await db.team_members.bulkCreate(team_membersData, { transaction });
// For each item created, replace relation files
return team_members;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const globalAccess = currentUser.app_role?.globalAccess;
const team_members = await db.team_members.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.employment_type !== undefined) updatePayload.employment_type = data.employment_type;
if (data.seniority !== undefined) updatePayload.seniority = data.seniority;
if (data.hourly_rate !== undefined) updatePayload.hourly_rate = data.hourly_rate;
if (data.rate_currency !== undefined) updatePayload.rate_currency = data.rate_currency;
if (data.weekly_capacity_hours !== undefined) updatePayload.weekly_capacity_hours = data.weekly_capacity_hours;
if (data.active !== undefined) updatePayload.active = data.active;
if (data.notes !== undefined) updatePayload.notes = data.notes;
updatePayload.updatedById = currentUser.id;
await team_members.update(updatePayload, {transaction});
if (data.tenant !== undefined) {
await team_members.setTenant(
data.tenant,
{ transaction }
);
}
if (data.user !== undefined) {
await team_members.setUser(
data.user,
{ transaction }
);
}
if (data.organizations !== undefined) {
await team_members.setOrganizations(
data.organizations,
{ transaction }
);
}
return team_members;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const team_members = await db.team_members.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
if (team_members.length !== ids.length) {
const error = new Error('One or more items were not found in the current organization scope.');
error.code = 404;
throw error;
}
await db.sequelize.transaction(async (transaction) => {
for (const record of team_members) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of team_members) {
await record.destroy({transaction});
}
});
return team_members;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const team_members = await db.team_members.findByPk(id, options);
if (!team_members) {
const error = new Error('Item not found in the current organization scope.');
error.code = 404;
throw error;
}
await team_members.update({
deletedBy: currentUser.id
}, {
transaction,
});
await team_members.destroy({
transaction
});
return team_members;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const team_members = await db.team_members.findOne(
{ where },
{ transaction },
);
if (!team_members) {
return team_members;
}
const output = team_members.get({plain: true});
output.team_member_skills_team_member = await team_members.getTeam_member_skills_team_member({
transaction
});
output.resource_allocations_team_member = await team_members.getResource_allocations_team_member({
transaction
});
output.leave_requests_team_member = await team_members.getLeave_requests_team_member({
transaction
});
output.tenant = await team_members.getTenant({
transaction
});
output.user = await team_members.getUser({
transaction
});
output.organizations = await team_members.getOrganizations({
transaction
});
return output;
}
static async findAll(
filter,
globalAccess, options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
const user = (options && options.currentUser) || null;
const userOrganizations = (user && user.organizations?.id) || null;
if (userOrganizations) {
if (options?.currentUser?.organizationsId) {
where.organizationsId = options.currentUser.organizationsId;
}
}
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.tenants,
as: 'tenant',
where: filter.tenant ? {
[Op.or]: [
{ id: { [Op.in]: filter.tenant.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.tenant.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.organizations,
as: 'organizations',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.notes) {
where = {
...where,
[Op.and]: Utils.ilike(
'team_members',
'notes',
filter.notes,
),
};
}
if (filter.hourly_rateRange) {
const [start, end] = filter.hourly_rateRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
hourly_rate: {
...where.hourly_rate,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
hourly_rate: {
...where.hourly_rate,
[Op.lte]: end,
},
};
}
}
if (filter.weekly_capacity_hoursRange) {
const [start, end] = filter.weekly_capacity_hoursRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
weekly_capacity_hours: {
...where.weekly_capacity_hours,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
weekly_capacity_hours: {
...where.weekly_capacity_hours,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.employment_type) {
where = {
...where,
employment_type: filter.employment_type,
};
}
if (filter.seniority) {
where = {
...where,
seniority: filter.seniority,
};
}
if (filter.rate_currency) {
where = {
...where,
rate_currency: filter.rate_currency,
};
}
if (filter.active) {
where = {
...where,
active: filter.active,
};
}
if (filter.organizations) {
const listItems = filter.organizations.split('|').map(item => {
return Utils.uuid(item)
});
where = {
...where,
organizationsId: {[Op.or]: listItems}
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
if (globalAccess) {
delete where.organizationsId;
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.team_members.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, globalAccess, organizationId,) {
let where = {};
if (!globalAccess && organizationId) {
where.organizationsId = organizationId;
}
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'team_members',
'notes',
query,
),
],
};
}
const records = await db.team_members.findAll({
attributes: [ 'id', 'notes' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['notes', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.notes,
}));
}
};