Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
165 lines
6.6 KiB
JavaScript
165 lines
6.6 KiB
JavaScript
/**
|
|
* Add board manager support and SLA notification tracking tables.
|
|
*
|
|
* Changes:
|
|
* 1. Add manager_user_id to boards table for board-level escalation manager
|
|
* 2. Create sla_notification_thresholds table for configuring when/who to notify
|
|
* 3. Create sla_notifications_sent table to prevent duplicate notifications
|
|
*
|
|
* @param { import("knex").Knex } knex
|
|
* @returns { Promise<void> }
|
|
*/
|
|
// Helper: distribute a table by tenant if Citus is available
|
|
async function distributeIfCitus(knex, tableName) {
|
|
const citusFn = await knex.raw(`
|
|
SELECT EXISTS (
|
|
SELECT 1 FROM pg_proc WHERE proname = 'create_distributed_table'
|
|
) AS exists;
|
|
`);
|
|
if (citusFn.rows?.[0]?.exists) {
|
|
const alreadyDistributed = await knex.raw(`
|
|
SELECT EXISTS (
|
|
SELECT 1 FROM pg_dist_partition
|
|
WHERE logicalrelid = '${tableName}'::regclass
|
|
) AS is_distributed;
|
|
`);
|
|
if (!alreadyDistributed.rows?.[0]?.is_distributed) {
|
|
await knex.raw(`SELECT create_distributed_table('${tableName}', 'tenant')`);
|
|
}
|
|
}
|
|
}
|
|
|
|
exports.up = async function(knex) {
|
|
// sla_notifications_sent FKs tickets; on fresh Citus chains tickets and
|
|
// its remaining local FK parents (categories/impacts/severities/urgencies)
|
|
// were never distributed. Distribute parents first, then tickets. No-op on
|
|
// plain Postgres and on clusters that already have them.
|
|
await distributeIfCitus(knex, 'categories');
|
|
await distributeIfCitus(knex, 'impacts');
|
|
await distributeIfCitus(knex, 'severities');
|
|
await distributeIfCitus(knex, 'urgencies');
|
|
await distributeIfCitus(knex, 'tickets');
|
|
|
|
// 1. Add manager_user_id to boards table
|
|
if (!(await knex.schema.hasColumn('boards', 'manager_user_id'))) {
|
|
await knex.schema.alterTable('boards', (table) => {
|
|
table.uuid('manager_user_id').nullable();
|
|
});
|
|
}
|
|
|
|
// Add foreign key constraint (separate statement for Citus compatibility)
|
|
// Note: ON DELETE SET NULL is not supported in CitusDB, so cleanup is handled
|
|
// at the application level in userActions.ts
|
|
await knex.raw(`
|
|
DO $$ BEGIN
|
|
IF NOT EXISTS (
|
|
SELECT 1 FROM pg_constraint WHERE conname = 'boards_manager_user_id_foreign'
|
|
) THEN
|
|
ALTER TABLE boards
|
|
ADD CONSTRAINT boards_manager_user_id_foreign
|
|
FOREIGN KEY (tenant, manager_user_id)
|
|
REFERENCES users(tenant, user_id);
|
|
END IF;
|
|
END $$;
|
|
`);
|
|
|
|
// Add index for efficient lookups by manager
|
|
await knex.raw(`
|
|
CREATE INDEX IF NOT EXISTS idx_boards_manager_user_id
|
|
ON boards (tenant, manager_user_id);
|
|
`);
|
|
|
|
// 2. Create sla_notification_thresholds table
|
|
if (!(await knex.schema.hasTable('sla_notification_thresholds'))) {
|
|
await knex.schema.createTable('sla_notification_thresholds', (table) => {
|
|
table.uuid('tenant').notNullable();
|
|
table.uuid('threshold_id').defaultTo(knex.raw('gen_random_uuid()')).notNullable();
|
|
table.uuid('sla_policy_id').notNullable();
|
|
table.integer('threshold_percent').notNullable();
|
|
table.text('notification_type').notNullable().defaultTo('warning');
|
|
table.boolean('notify_assignee').defaultTo(true);
|
|
table.boolean('notify_board_manager').defaultTo(false);
|
|
table.boolean('notify_escalation_manager').defaultTo(false);
|
|
table.specificType('channels', 'TEXT[]').defaultTo(knex.raw("ARRAY['in_app']"));
|
|
table.timestamp('created_at', { useTz: true }).defaultTo(knex.fn.now());
|
|
|
|
table.primary(['tenant', 'threshold_id']);
|
|
table.foreign('tenant').references('tenants.tenant');
|
|
// Note: ON DELETE CASCADE is not supported in CitusDB, so cleanup is handled
|
|
// at the application level when deleting SLA policies
|
|
table.foreign(['tenant', 'sla_policy_id'])
|
|
.references(['tenant', 'sla_policy_id'])
|
|
.inTable('sla_policies');
|
|
});
|
|
}
|
|
|
|
// Distribute sla_notification_thresholds for Citus
|
|
await distributeIfCitus(knex, 'sla_notification_thresholds');
|
|
|
|
// Add unique constraint for tenant + policy + threshold percent combination
|
|
await knex.raw(`
|
|
CREATE UNIQUE INDEX IF NOT EXISTS idx_sla_notification_thresholds_unique
|
|
ON sla_notification_thresholds (tenant, sla_policy_id, threshold_percent);
|
|
`);
|
|
|
|
// Add index for efficient policy lookups
|
|
await knex.raw(`
|
|
CREATE INDEX IF NOT EXISTS idx_sla_notification_thresholds_policy
|
|
ON sla_notification_thresholds (tenant, sla_policy_id);
|
|
`);
|
|
|
|
// 3. Create sla_notifications_sent table for duplicate prevention
|
|
if (!(await knex.schema.hasTable('sla_notifications_sent'))) {
|
|
await knex.schema.createTable('sla_notifications_sent', (table) => {
|
|
table.uuid('tenant').notNullable();
|
|
table.uuid('ticket_id').notNullable();
|
|
table.integer('threshold_percent').notNullable();
|
|
table.timestamp('sent_at', { useTz: true }).notNullable().defaultTo(knex.fn.now());
|
|
|
|
table.primary(['tenant', 'ticket_id', 'threshold_percent']);
|
|
table.foreign('tenant').references('tenants.tenant');
|
|
// Note: ON DELETE CASCADE is not supported in CitusDB, so cleanup is handled
|
|
// at the application level when deleting tickets
|
|
table.foreign(['tenant', 'ticket_id'])
|
|
.references(['tenant', 'ticket_id'])
|
|
.inTable('tickets');
|
|
});
|
|
}
|
|
|
|
// Distribute sla_notifications_sent for Citus
|
|
await distributeIfCitus(knex, 'sla_notifications_sent');
|
|
|
|
// Add index for efficient ticket lookups
|
|
await knex.raw(`
|
|
CREATE INDEX IF NOT EXISTS idx_sla_notifications_sent_ticket
|
|
ON sla_notifications_sent (tenant, ticket_id);
|
|
`);
|
|
};
|
|
|
|
/**
|
|
* @param { import("knex").Knex } knex
|
|
* @returns { Promise<void> }
|
|
*/
|
|
exports.down = async function(knex) {
|
|
// Drop sla_notifications_sent table
|
|
await knex.raw(`DROP INDEX IF EXISTS idx_sla_notifications_sent_ticket;`);
|
|
await knex.schema.dropTableIfExists('sla_notifications_sent');
|
|
|
|
// Drop sla_notification_thresholds table
|
|
await knex.raw(`DROP INDEX IF EXISTS idx_sla_notification_thresholds_policy;`);
|
|
await knex.raw(`DROP INDEX IF EXISTS idx_sla_notification_thresholds_unique;`);
|
|
await knex.schema.dropTableIfExists('sla_notification_thresholds');
|
|
|
|
// Remove manager_user_id from boards
|
|
await knex.raw(`DROP INDEX IF EXISTS idx_boards_manager_user_id;`);
|
|
await knex.raw(`ALTER TABLE boards DROP CONSTRAINT IF EXISTS boards_manager_user_id_foreign;`);
|
|
if (await knex.schema.hasColumn('boards', 'manager_user_id')) {
|
|
await knex.schema.alterTable('boards', (table) => {
|
|
table.dropColumn('manager_user_id');
|
|
});
|
|
}
|
|
};
|
|
|
|
// Citus requires ALTER TABLE with foreign key constraints to run outside a transaction block
|
|
exports.config = { transaction: false };
|