2026-03-10 15:29:33 -06:00
|
|
|
// Ivanti / RiskSense Workflow Routes
|
2026-05-06 11:44:17 -06:00
|
|
|
// Data is cached in PostgreSQL and refreshed on a daily schedule or on-demand.
|
2026-03-10 15:29:33 -06:00
|
|
|
|
|
|
|
|
const express = require('express');
|
2026-05-06 11:44:17 -06:00
|
|
|
const pool = require('../db');
|
|
|
|
|
const { requireAuth, requireGroup } = require('../middleware/auth');
|
2026-04-07 16:20:24 -06:00
|
|
|
const { ivantiPost } = require('../helpers/ivantiApi');
|
2026-03-10 15:29:33 -06:00
|
|
|
|
|
|
|
|
const SYNC_INTERVAL_MS = 24 * 60 * 60 * 1000; // 24 hours
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
2026-05-06 11:44:17 -06:00
|
|
|
// Core sync — calls Ivanti API, stores result in PostgreSQL
|
2026-03-10 15:29:33 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
2026-05-06 11:44:17 -06:00
|
|
|
async function syncWorkflows() {
|
2026-03-10 15:29:33 -06:00
|
|
|
const apiKey = process.env.IVANTI_API_KEY;
|
|
|
|
|
const clientId = process.env.IVANTI_CLIENT_ID || '1550';
|
|
|
|
|
const firstName = process.env.IVANTI_FIRST_NAME || '';
|
|
|
|
|
const lastName = process.env.IVANTI_LAST_NAME || '';
|
|
|
|
|
const skipTls = process.env.IVANTI_SKIP_TLS === 'true';
|
|
|
|
|
|
|
|
|
|
if (!apiKey) {
|
|
|
|
|
const errMsg = 'IVANTI_API_KEY not set in .env — skipping sync';
|
|
|
|
|
console.warn('[Ivanti]', errMsg);
|
2026-05-06 11:44:17 -06:00
|
|
|
await pool.query(
|
|
|
|
|
`UPDATE ivanti_sync_state SET sync_status='error', error_message=$1, synced_at=NOW() WHERE id=1`,
|
|
|
|
|
[errMsg]
|
|
|
|
|
);
|
2026-03-10 15:29:33 -06:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
console.log('[Ivanti] Syncing workflows...');
|
|
|
|
|
|
|
|
|
|
const urlPath = `/client/${encodeURIComponent(clientId)}/workflowBatch/search`;
|
|
|
|
|
const body = {
|
|
|
|
|
filters: [
|
|
|
|
|
{
|
|
|
|
|
field: 'created_by_last_name',
|
|
|
|
|
exclusive: false,
|
|
|
|
|
operator: 'IN',
|
|
|
|
|
orWithPrevious: false,
|
|
|
|
|
implicitFilters: [],
|
|
|
|
|
value: lastName,
|
|
|
|
|
caseSensitive: false
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'created_by_first_name',
|
|
|
|
|
exclusive: false,
|
|
|
|
|
operator: 'IN',
|
|
|
|
|
orWithPrevious: false,
|
|
|
|
|
implicitFilters: [],
|
|
|
|
|
value: firstName,
|
|
|
|
|
caseSensitive: false
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
projection: 'internal',
|
|
|
|
|
sort: [{ field: 'created', direction: 'DESC' }],
|
|
|
|
|
page: 0,
|
|
|
|
|
size: 50
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
const result = await ivantiPost(urlPath, body, apiKey, skipTls);
|
|
|
|
|
|
|
|
|
|
if (result.status === 401) {
|
|
|
|
|
throw new Error('Invalid or missing API key (401) — check IVANTI_API_KEY in .env');
|
|
|
|
|
}
|
|
|
|
|
if (result.status === 419) {
|
|
|
|
|
throw new Error('Insufficient privileges (419) — API key lacks workflow access');
|
|
|
|
|
}
|
|
|
|
|
if (result.status === 429) {
|
|
|
|
|
throw new Error('Rate limited (429) — will retry at next scheduled sync');
|
|
|
|
|
}
|
|
|
|
|
if (result.status !== 200) {
|
|
|
|
|
throw new Error(`Ivanti API returned unexpected status ${result.status}`);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const data = JSON.parse(result.body);
|
|
|
|
|
|
|
|
|
|
let total = 0;
|
|
|
|
|
let workflows = [];
|
|
|
|
|
|
|
|
|
|
if (data.page && typeof data.page.totalElements === 'number') {
|
|
|
|
|
total = data.page.totalElements;
|
|
|
|
|
workflows = data._embedded?.workflowBatches
|
|
|
|
|
|| data._embedded?.workflowBatch
|
|
|
|
|
|| [];
|
|
|
|
|
} else if (typeof data.total === 'number') {
|
|
|
|
|
total = data.total;
|
|
|
|
|
workflows = data.data || data.content || data.results || [];
|
|
|
|
|
} else if (typeof data.totalElements === 'number') {
|
|
|
|
|
total = data.totalElements;
|
|
|
|
|
workflows = data.content || data.data || [];
|
|
|
|
|
} else if (Array.isArray(data)) {
|
|
|
|
|
workflows = data;
|
|
|
|
|
total = data.length;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-06 11:44:17 -06:00
|
|
|
await pool.query(
|
|
|
|
|
`UPDATE ivanti_sync_state
|
|
|
|
|
SET total=$1, workflows_json=$2, synced_at=NOW(), sync_status='success', error_message=NULL
|
|
|
|
|
WHERE id=1`,
|
|
|
|
|
[total, JSON.stringify(workflows)]
|
|
|
|
|
);
|
2026-03-10 15:29:33 -06:00
|
|
|
|
|
|
|
|
console.log(`[Ivanti] Sync complete — ${total} workflows`);
|
|
|
|
|
} catch (err) {
|
|
|
|
|
const msg = err.message || 'Unknown error';
|
|
|
|
|
console.error('[Ivanti] Sync failed:', msg);
|
2026-05-06 11:44:17 -06:00
|
|
|
await pool.query(
|
|
|
|
|
`UPDATE ivanti_sync_state SET sync_status='error', error_message=$1, synced_at=NOW() WHERE id=1`,
|
|
|
|
|
[msg]
|
|
|
|
|
);
|
2026-03-10 15:29:33 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
// Scheduler — runs sync immediately if >24h stale, then every 24h
|
|
|
|
|
// ---------------------------------------------------------------------------
|
2026-05-06 11:44:17 -06:00
|
|
|
async function scheduleSync() {
|
|
|
|
|
try {
|
|
|
|
|
const { rows } = await pool.query('SELECT synced_at FROM ivanti_sync_state WHERE id = 1');
|
|
|
|
|
const row = rows[0];
|
|
|
|
|
if (!row || !row.synced_at) {
|
|
|
|
|
syncWorkflows();
|
2026-03-10 15:29:33 -06:00
|
|
|
} else {
|
2026-05-06 11:44:17 -06:00
|
|
|
const lastSync = new Date(row.synced_at);
|
2026-03-10 15:29:33 -06:00
|
|
|
const hoursSince = (Date.now() - lastSync.getTime()) / (1000 * 60 * 60);
|
|
|
|
|
if (hoursSince >= 24) {
|
2026-05-06 11:44:17 -06:00
|
|
|
syncWorkflows();
|
2026-03-10 15:29:33 -06:00
|
|
|
} else {
|
|
|
|
|
const hoursUntil = (24 - hoursSince).toFixed(1);
|
|
|
|
|
console.log(`[Ivanti] Last sync ${hoursSince.toFixed(1)}h ago — next auto-sync in ${hoursUntil}h`);
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-05-06 11:44:17 -06:00
|
|
|
} catch (err) {
|
|
|
|
|
console.error('[Ivanti] Schedule check failed:', err);
|
|
|
|
|
syncWorkflows();
|
|
|
|
|
}
|
2026-03-10 15:29:33 -06:00
|
|
|
|
2026-05-06 11:44:17 -06:00
|
|
|
setInterval(() => syncWorkflows(), SYNC_INTERVAL_MS);
|
2026-03-10 15:29:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
// Helper — read current state from DB and return as JSON-ready object
|
|
|
|
|
// ---------------------------------------------------------------------------
|
2026-05-06 11:44:17 -06:00
|
|
|
async function readState() {
|
|
|
|
|
const { rows } = await pool.query(
|
|
|
|
|
'SELECT total, workflows_json, synced_at, sync_status, error_message FROM ivanti_sync_state WHERE id = 1'
|
|
|
|
|
);
|
|
|
|
|
const row = rows[0];
|
|
|
|
|
if (!row) return { total: 0, workflows: [], synced_at: null, sync_status: 'never', error_message: null };
|
|
|
|
|
|
|
|
|
|
let workflows = [];
|
|
|
|
|
try { workflows = JSON.parse(row.workflows_json || '[]'); } catch (_) { /* leave empty */ }
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
total: row.total || 0,
|
|
|
|
|
workflows,
|
|
|
|
|
synced_at: row.synced_at,
|
|
|
|
|
sync_status: row.sync_status,
|
|
|
|
|
error_message: row.error_message
|
|
|
|
|
};
|
2026-03-10 15:29:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
// Router
|
|
|
|
|
// ---------------------------------------------------------------------------
|
2026-05-06 11:44:17 -06:00
|
|
|
function createIvantiWorkflowsRouter() {
|
2026-03-10 15:29:33 -06:00
|
|
|
const router = express.Router();
|
|
|
|
|
|
2026-05-06 11:44:17 -06:00
|
|
|
// Kick off scheduler (fire-and-forget on startup)
|
|
|
|
|
scheduleSync().catch((err) => console.error('[Ivanti] Init failed:', err));
|
2026-03-10 15:29:33 -06:00
|
|
|
|
|
|
|
|
// All routes require authentication
|
2026-05-06 11:44:17 -06:00
|
|
|
router.use(requireAuth());
|
2026-03-10 15:29:33 -06:00
|
|
|
|
|
|
|
|
// GET / — return cached data (fast, no external call)
|
|
|
|
|
router.get('/', async (req, res) => {
|
|
|
|
|
try {
|
2026-05-06 11:44:17 -06:00
|
|
|
res.json(await readState());
|
2026-03-10 15:29:33 -06:00
|
|
|
} catch {
|
|
|
|
|
res.status(500).json({ error: 'Database error reading sync state' });
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// POST /sync — trigger an immediate sync, await completion, return fresh state
|
2026-04-07 09:52:26 -06:00
|
|
|
router.post('/sync', requireGroup('Admin', 'Standard_User'), async (req, res) => {
|
2026-05-06 11:44:17 -06:00
|
|
|
await syncWorkflows();
|
2026-03-10 15:29:33 -06:00
|
|
|
try {
|
2026-05-06 11:44:17 -06:00
|
|
|
res.json(await readState());
|
2026-03-10 15:29:33 -06:00
|
|
|
} catch {
|
|
|
|
|
res.status(500).json({ error: 'Sync ran but could not read updated state' });
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return router;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
module.exports = createIvantiWorkflowsRouter;
|