collabSupport/services/voiceDiag/checks/callWaiting.js
jmcqueen 2eb31a2ddc Add /voicediag rules-engine command with 9 per-user calling checks
Introduces a new diagnostic command that walks a registry of check
modules against a store user's Webex Calling configuration and
surfaces per-issue adaptive-card remediation for the fixable ones.

Checks (services/voiceDiag/checks/): dnd, callForwarding, callWaiting,
callIntercept, voicemail, hoteling, executiveAssistant,
outgoingPermission, phoneOnline. Remediations offered for DND,
forwarding, waiting, and intercept.

Uses the /v1/people/{id}/features/* admin surface (spark-admin:people_read
+ spark-admin:people_write scopes we already hold) — the earlier
telephony/config/people/*/callSettings/* path scheme returns 404 from
the Webex gateway and is not a live surface. Runner distinguishes
routing-404s ("URL moved") from "not applicable" 404s ("no calling
license") via the response body.

Arg parser accepts detail/detailed/--detail/--detailed and normalises
macOS smart-dashes so --detailed doesn't die when auto-correct
turns it into an em-dash.

Wires a VOICEDIAG_ACTIONS dispatcher in index.js mirroring the IGMP
branch, and registers /voicediag in commands/registry.js. 170 tests
pass (52 new: 39 check + 12 renderer + 5 arg-normalization).

Docs updated in .env.example, services/phoneService.js:467, and a new
services/voiceDiag/README.md that includes a "how to add a check"
recipe plus a note on the earlier wrong URL scheme.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-07 18:51:31 -04:00

98 lines
3 KiB
JavaScript

// src/services/voiceDiag/checks/callWaiting.js
//
// Detects whether Call Waiting is enabled for the store user. Call
// waiting being *off* is uncommon in a store context — it means a
// second incoming call while the operator is on the phone will get a
// busy tone or hit the busy-forward target instead of showing a
// beep-in on the desk phone.
//
// Endpoint: GET/PUT /v1/people/{personId}/features/callWaiting
// Payload: { enabled: boolean }
// Scope: spark-admin:people_read (GET) + spark-admin:people_write (PUT).
//
// Severity: warn when disabled — we can't tell for sure it's a bug
// (some sites want it off), but for a store phone it's usually
// inadvertent. Remediation: turn call waiting back on.
import { logger } from '../../../utils/logger.js';
import { describeRequester } from '../../../utils/requester.js';
const ENDPOINT = (personId) =>
`people/${personId}/features/callWaiting`;
export const callWaitingCheck = {
id: 'callWaiting',
label: 'Call Waiting',
requires: ['personId'],
scope: 'spark-admin:people_read',
async run(ctx) {
const data = await ctx.webex.request('GET', ENDPOINT(ctx.personId));
const enabled = !!data?.enabled;
if (enabled) {
return {
status: 'ok',
message: 'Call waiting is on.',
details: { enabled },
remediation: null,
};
}
return {
status: 'warn',
message:
'Call waiting is disabled — a second inbound call will not beep in.',
details: { enabled },
remediation: {
action: 'enable_call_waiting',
title: 'Enable Call Waiting',
summary: `Turn call waiting on for ${ctx.personLabel}.`,
payload: {
personId: ctx.personId,
personLabel: ctx.personLabel,
storeNum: ctx.storeNum,
before: { enabled },
},
},
};
},
remediations: {
async enable_call_waiting(bot, data, requester) {
const { personId, personLabel, storeNum, before } = data;
logger(
'voicediag:audit',
`CONFIRMED enable_call_waiting for ${personLabel} (person=${personId}, store=${storeNum}) ` +
`by ${describeRequester(requester)} — was enabled=${before?.enabled ?? 'unknown'}`,
);
try {
const { default: webex } = await import('../../../integrations/webex/WebexClient.js');
await webex.request('PUT', ENDPOINT(personId), { enabled: true });
} catch (err) {
logger(
'voicediag:audit',
`FAILED enable_call_waiting for ${personLabel}: ${err.message}`,
'error',
);
await bot.say(
'markdown',
`❌ Failed to enable call waiting for **${personLabel}**: ${err.message}`,
);
return;
}
await bot.say(
'markdown',
`✅ Call waiting enabled for **${personLabel}** (store ${storeNum}). ` +
`Re-run \`/voicediag ${storeNum}\` to verify.`,
);
logger(
'voicediag:audit',
`COMPLETED enable_call_waiting for ${personLabel} (store ${storeNum})`,
);
},
},
};