diff --git a/api/src/routes/fcc-lookup.ts b/api/src/routes/fcc-lookup.ts index f4ec8f2..16e59a3 100644 --- a/api/src/routes/fcc-lookup.ts +++ b/api/src/routes/fcc-lookup.ts @@ -367,16 +367,18 @@ router.get("/api/v1/fcc/lookup", async (req, res) => { ssDetail = "Cannot determine — no RMD filing found for this FRN. Verify STIR/SHAKEN status directly."; } - // STIR/SHAKEN — show based on RMD self-reported implementation status. - // Note: this is NOT verified against the STI-PA certificate authority. - checks.push({ - id: "stir_shaken", - label: "STIR/SHAKEN Call Authentication", - status: ssStatus, - detail: ssDetail, - action_url: null, - due_date: null, - }); + // STIR/SHAKEN — computed but NOT shown on the compliance checker. + // The self-reported RMD status doesn't reliably indicate compliance, + // and showing it creates confusion with OCN bundling on the order page. + // Kept computed for internal use / future STI-PA verification. + // checks.push({ + // id: "stir_shaken", + // label: "STIR/SHAKEN Call Authentication", + // status: ssStatus, + // detail: ssDetail, + // action_url: null, + // due_date: null, + // }); // 4. CPNI Annual Certification // diff --git a/site/public/tools/fcc-compliance-check/index.html b/site/public/tools/fcc-compliance-check/index.html index 80bad32..5090caa 100644 --- a/site/public/tools/fcc-compliance-check/index.html +++ b/site/public/tools/fcc-compliance-check/index.html @@ -406,49 +406,6 @@ Send reset link }); } - // STIR/SHAKEN toggle — terminating-only providers don't need a signing certificate - if (!checks.querySelector(".pw-stir-toggle")) { - var stirCards = checks.querySelectorAll(":scope > div"); - stirCards.forEach(function(card) { - if (card.textContent.indexOf("STIR/SHAKEN") < 0) return; - if (card.querySelector(".pw-stir-toggle")) return; - // Only show for red/amber cards - if (!card.classList.contains("bg-red-50") && !card.classList.contains("bg-amber-50")) return; - var detail = card.querySelectorAll("p")[1]; - var icon = card.querySelector("span"); - var flexDiv = card.querySelector(".flex-1"); - if (!flexDiv || !detail) return; - - var q = document.createElement("div"); - q.className = "pw-stir-toggle mt-3 flex items-center gap-2 flex-wrap"; - q.innerHTML = - 'Do you originate calls (place them onto the network), or do you only receive and terminate calls from other carriers?' + - '' + - '' + - ''; - flexDiv.appendChild(q); - q.addEventListener("click", function(ev) { - var b = ev.target.closest("[data-stir]"); - if (!b) return; - q.remove(); - if (b.dataset.stir === "terminate") { - card.className = "bg-green-50 border-green-200 border rounded-xl p-4 flex items-start gap-3"; - detail.innerHTML = 'Signing certificate not required \u2014 terminating-only providers verify incoming call signatures (a software configuration) but do not need their own STI certificate. File your RMD as “partial implementation” describing your verification process.'; - detail.className = "text-xs text-green-800 mt-1"; - icon.className = "text-green-600 shrink-0 mt-0.5"; - icon.innerHTML = ''; - card.dataset.stirExempt = "true"; - } else { - // Originate or both — needs own certificate - card.className = "bg-red-50 border-red-200 border rounded-xl p-4 flex items-start gap-3"; - detail.innerHTML = 'STIR/SHAKEN signing certificate required \u2014 as of June 2025, originating providers must sign all calls with their own STI certificate. You can no longer rely on upstream providers to sign on your behalf. Obtain a certificate from an approved CA (e.g. Sievert Larsen, Neustar, TransNexus).'; - detail.className = "text-xs text-red-800 mt-1"; - icon.className = "text-red-600 shrink-0 mt-0.5"; - icon.innerHTML = ''; - } - }); - }); - } // CALEA toggle — wholesale-only carriers are exempt ("interconnecting carriers") if (!checks.querySelector(".pw-calea-toggle")) { @@ -516,8 +473,7 @@ Send reset link var hasRmdQuestion = !!checks.querySelector(".pw-rmd-toggle"); var has499aQuestion = !!checks.querySelector(".pw-499a-toggle"); var hasCaleaQuestion = !!checks.querySelector(".pw-calea-toggle"); - var hasStirQuestion = !!checks.querySelector(".pw-stir-toggle"); - var hasPendingQuestion = hasBdcQuestion || hasRmdQuestion || has499aQuestion || hasCaleaQuestion || hasStirQuestion; + var hasPendingQuestion = hasBdcQuestion || hasRmdQuestion || has499aQuestion || hasCaleaQuestion; var frn = currentFrn; var url = "/order/fcc-compliance?services=" + services.join(",") + (frn ? "&frn=" + frn : ""); var cta = document.createElement("div"); @@ -536,7 +492,7 @@ Send reset link ''; // Watch for toggle removal (= answered) var bdcWatcher = new MutationObserver(function() { - if (!checks.querySelector(".pw-bdc-toggle") && !checks.querySelector(".pw-rmd-toggle") && !checks.querySelector(".pw-499a-toggle") && !checks.querySelector(".pw-calea-toggle") && !checks.querySelector(".pw-stir-toggle")) { + if (!checks.querySelector(".pw-bdc-toggle") && !checks.querySelector(".pw-rmd-toggle") && !checks.querySelector(".pw-499a-toggle") && !checks.querySelector(".pw-calea-toggle")) { bdcWatcher.disconnect(); // Re-count actionable items (red + amber) var newServices = [];