File size: 30,873 Bytes
ee888e1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 | // Shared helpers for the OpenAPI post-generation injectors
// (scripts/openapi-inject-*.mjs) and their contract tests. Single-sourcing the
// byte-faithful serializer, the gateway/entitlement source-of-truth parsers, and
// the public-gate registry here removes the copy-paste drift between injectors
// and β crucially β lets the tests import the SAME constants the injectors use
// instead of re-scraping the injector source with duplicate regexes (which could
// silently diverge). Pure node builtins only: this runs under plain `node` in the
// `make generate` codegen context, so it must not import any npm dependency; a
// relative import like this one adds zero deps and runs identically.
import { readFileSync } from 'node:fs';
import { dirname, resolve } from 'node:path';
import { fileURLToPath } from 'node:url';
// scripts/lib/ -> repo root.
const root = resolve(dirname(fileURLToPath(import.meta.url)), '../..');
// ββ Byte-faithful JSON serializer (matches protoc-gen-openapiv3 output) ββββββ
// Recursively sorted keys + Go-style escaping of < > & U+2028 U+2029, no
// trailing newline β reproduces the generator's bytes so injected diffs are
// additions-only.
export const sortRec = (x) =>
Array.isArray(x)
? x.map(sortRec)
: x && typeof x === 'object'
? Object.fromEntries(Object.keys(x).sort().map((k) => [k, sortRec(x[k])]))
: x;
export const goEscape = (s) => {
let r = '';
for (const ch of s) {
const c = ch.codePointAt(0);
r += c === 0x3c || c === 0x3e || c === 0x26 || c === 0x2028 || c === 0x2029
? '\\u' + c.toString(16).padStart(4, '0')
: ch;
}
return r;
};
export const serialize = (obj) => goEscape(JSON.stringify(sortRec(obj)));
// Order-insensitive deep-equal (keys sorted before compare) so change detection
// is stable across the sort-on-write round-trip.
export const eq = (a, b) => JSON.stringify(sortRec(a)) === JSON.stringify(sortRec(b));
// Normalize a parameter name to a lookup key (strip separators, lowercase).
export const normalizeKey = (name = '') => String(name).replace(/[_\-\s]/g, '').toLowerCase();
// ββ Shared decision-signal provenance schemas ββββββββββββββββββββββββββββββββ
// Corridors and decision signals carry the same provenance contract. Keep the
// strict known-value vocabulary here so every OpenAPI injector publishes the
// same validation rules for that shared envelope.
function objectSchema(required, properties, additionalProperties = false) {
return {
type: 'object',
additionalProperties,
required,
properties,
};
}
export const nonEmptyStringSchema = {
type: 'string',
minLength: 1,
pattern: '\\S',
};
const calendarDayPattern = '(?:(?:\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|02-(?:0[1-9]|1\\d|2[0-8])))|(?:(?:\\d{2}(?:0[48]|[2468][048]|[13579][26])|(?:00|0[48]|[2468][048]|[13579][26])00)-02-29))';
const calendarDaySchema = {
type: 'string',
format: 'date',
pattern: `^${calendarDayPattern}$`,
};
const calendarMonthSchema = {
type: 'string',
pattern: '^\\d{4}-(?:0[1-9]|1[0-2])$',
};
const calendarYearSchema = {
type: 'string',
pattern: '^\\d{4}$',
};
const isoInstantSchema = {
type: 'string',
format: 'date-time',
pattern: `^${calendarDayPattern}T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d{1,3})?Z$`,
};
export const provenanceTimestampSchema = {
oneOf: [
isoInstantSchema,
calendarDaySchema,
calendarMonthSchema,
calendarYearSchema,
],
};
export const credentialFreeHttpsUrlSchema = {
type: 'string',
format: 'uri',
pattern: '^https://(?![^/?#]*@)[^/?#\\s]+(?:[/?#]\\S*)?$',
};
function arrayOfNonEmptyStrings({ minItems, uniqueItems = false } = {}) {
return {
type: 'array',
...(minItems === undefined ? {} : { minItems }),
uniqueItems,
items: nonEmptyStringSchema,
};
}
export function provenanceValueSchema(dimension, provenanceContract) {
const timeRoles = {
observation_time: 'observation',
effective_time: 'effective',
publication_time: 'publication',
retrieval_time: 'retrieval',
};
if (dimension === 'publisher') {
const registryReference = objectSchema(
['sourceName', 'sourceType', 'propagandaRisk'],
{
sourceName: nonEmptyStringSchema,
sourceType: nonEmptyStringSchema,
propagandaRisk: nonEmptyStringSchema,
},
);
return {
...objectSchema(
['id', 'name', 'type', 'registryReference'],
{
id: nonEmptyStringSchema,
name: nonEmptyStringSchema,
type: { type: 'string', enum: provenanceContract.publisherTypes },
registryReference: {
oneOf: [registryReference, { type: 'null' }],
},
},
),
oneOf: [
{
properties: {
type: { const: 'derived_output' },
registryReference: { type: 'null' },
},
},
{
properties: {
type: {
enum: provenanceContract.publisherTypes.filter(
(type) => type !== 'derived_output',
),
},
registryReference,
},
},
],
};
}
if (dimension === 'source_url') {
return credentialFreeHttpsUrlSchema;
}
if (dimension === 'original_reference') {
return objectSchema(
['kind', 'id'],
{
kind: {
type: 'string',
enum: provenanceContract.originalReferenceKinds,
},
id: nonEmptyStringSchema,
contentHash: {
type: 'string',
pattern: '^sha256:[a-f0-9]{64}$',
},
},
);
}
if (dimension === 'original_language') return nonEmptyStringSchema;
if (dimension === 'translation') {
return {
...objectSchema(
['state'],
{
state: {
type: 'string',
enum: provenanceContract.translationStates,
},
targetLanguage: nonEmptyStringSchema,
},
),
oneOf: [
{
properties: {
state: { enum: ['machine_assisted', 'human_reviewed'] },
},
required: ['targetLanguage'],
},
{
properties: {
state: { enum: ['unavailable', 'not_translated'] },
},
not: { required: ['targetLanguage'] },
},
],
};
}
if (dimension in timeRoles) {
return {
...objectSchema(
['role', 'value', 'precision'],
{
role: { type: 'string', const: timeRoles[dimension] },
value: provenanceTimestampSchema,
precision: {
type: 'string',
enum: provenanceContract.timePrecisions,
},
},
),
oneOf: [
{
properties: {
precision: { const: 'instant' },
value: isoInstantSchema,
},
},
{
properties: {
precision: { const: 'day' },
value: calendarDaySchema,
},
},
{
properties: {
precision: { const: 'month' },
value: calendarMonthSchema,
},
},
{
properties: {
precision: { const: 'year' },
value: calendarYearSchema,
},
},
],
};
}
if (dimension === 'revision') {
return {
...objectSchema(
['vintageId', 'sequence', 'state'],
{
vintageId: nonEmptyStringSchema,
sequence: { type: 'integer', minimum: 1 },
state: {
type: 'string',
enum: provenanceContract.revisionStates,
},
},
),
oneOf: [
{
properties: {
state: { enum: ['preliminary', 'original'] },
sequence: { const: 1 },
},
},
{
properties: {
state: { enum: ['revised', 'corrected'] },
sequence: { type: 'integer', minimum: 2 },
},
},
],
};
}
if (dimension === 'supersession') {
return {
...objectSchema(
['state'],
{
state: {
type: 'string',
enum: provenanceContract.supersessionStates,
},
relatedSignalId: nonEmptyStringSchema,
reason: nonEmptyStringSchema,
},
),
oneOf: [
{
properties: { state: { const: 'current' } },
not: {
anyOf: [
{ required: ['relatedSignalId'] },
{ required: ['reason'] },
],
},
},
{
properties: { state: { enum: ['corrected', 'superseded'] } },
required: ['relatedSignalId'],
},
{
properties: { state: { const: 'cancelled' } },
required: ['reason'],
},
],
};
}
if (
dimension === 'extraction_confidence'
|| dimension === 'classification_confidence'
) {
return objectSchema(
['score', 'method'],
{
score: { type: 'number', minimum: 0, maximum: 1 },
method: nonEmptyStringSchema,
},
);
}
if (dimension === 'corroboration') {
return {
...objectSchema(
['state', 'sourceSignalIds'],
{
state: {
type: 'string',
enum: provenanceContract.corroborationStates,
},
sourceSignalIds: arrayOfNonEmptyStrings({ uniqueItems: true }),
},
),
oneOf: [
{
properties: {
state: { const: 'single_source' },
sourceSignalIds: {
...arrayOfNonEmptyStrings({ uniqueItems: true }),
minItems: 1,
maxItems: 1,
},
},
},
{
properties: {
state: {
enum: [
'multi_source',
'independently_corroborated',
'contradicted',
],
},
sourceSignalIds: arrayOfNonEmptyStrings({
minItems: 2,
uniqueItems: true,
}),
},
},
],
};
}
if (dimension === 'transport_freshness') {
return objectSchema(
['state', 'assessedAt'],
{
state: {
type: 'string',
enum: provenanceContract.transportFreshnessStates,
},
assessedAt: isoInstantSchema,
lastSuccessAt: isoInstantSchema,
},
);
}
if (dimension === 'content_freshness') {
return {
...objectSchema(
['state', 'assessedAt'],
{
state: {
type: 'string',
enum: provenanceContract.contentFreshnessStates,
},
assessedAt: isoInstantSchema,
contentAsOf: provenanceTimestampSchema,
},
),
oneOf: [
{
properties: { state: { enum: ['current', 'stale'] } },
required: ['contentAsOf'],
},
{
properties: { state: { const: 'timestamp_unknown' } },
not: { required: ['contentAsOf'] },
},
{
properties: { state: { enum: ['unavailable', 'partial'] } },
},
],
};
}
if (dimension === 'derivation') {
return objectSchema(
['methodId', 'methodVersion', 'computedAt', 'inputSignalIds'],
{
methodId: nonEmptyStringSchema,
methodVersion: nonEmptyStringSchema,
computedAt: isoInstantSchema,
inputSignalIds: arrayOfNonEmptyStrings({
minItems: 1,
uniqueItems: true,
}),
},
);
}
throw new Error(`No OpenAPI value schema for provenance dimension ${dimension}`);
}
// ββ Source-of-truth parsers (fail-closed) βββββββββββββββββββββββββββββββββββ
// Read the authoritative Set/Record literals straight from the gateway-adjacent
// TypeScript so the published auth contract can never drift from runtime. Each
// throws on a full parse miss or empty set β a rename can't silently mislabel
// auth (the caller adds a further non-empty guard on the union).
export function readPublicNoAuthPaths() {
const src = readFileSync(resolve(root, 'server/gateway.ts'), 'utf8');
const block = src.match(/PUBLIC_NO_AUTH_RPC_PATHS\s*=\s*new Set<string>\(\[([\s\S]*?)\]\)/);
if (!block) throw new Error('could not locate PUBLIC_NO_AUTH_RPC_PATHS in server/gateway.ts');
const paths = [...block[1].matchAll(/'([^']+)'/g)].map((m) => m[1]);
if (paths.length === 0) throw new Error('PUBLIC_NO_AUTH_RPC_PATHS parsed as empty β refusing to run');
return new Set(paths);
}
export function readEndpointEntitlements() {
const src = readFileSync(resolve(root, 'server/_shared/entitlement-check.ts'), 'utf8');
const block = src.match(/ENDPOINT_ENTITLEMENTS\s*:\s*Record<string,\s*number>\s*=\s*\{([\s\S]*?)\};/);
if (!block) throw new Error('could not locate ENDPOINT_ENTITLEMENTS in server/_shared/entitlement-check.ts');
const entries = [...block[1].matchAll(/'([^']+)'\s*:\s*(\d+)/g)].map((m) => [m[1], Number(m[2])]);
if (entries.length === 0) throw new Error('ENDPOINT_ENTITLEMENTS parsed as empty β refusing to run');
return new Map(entries);
}
export function readPremiumRpcPaths() {
const src = readFileSync(resolve(root, 'src/shared/premium-paths.ts'), 'utf8');
const block = src.match(/PREMIUM_RPC_PATHS\s*=\s*new Set<string>\(\[([\s\S]*?)\]\)/);
if (!block) throw new Error('could not locate PREMIUM_RPC_PATHS in src/shared/premium-paths.ts');
return [...block[1].matchAll(/'([^']+)'/g)].map((m) => m[1]);
}
function readConstStringArray(src, name) {
const block = src.match(new RegExp(`${name}\\s*=\\s*\\[([\\s\\S]*?)\\]\\s*as const`));
return block ? [...block[1].matchAll(/'([^']+)'/g)].map((match) => match[1]) : [];
}
function skipQuotedLiteral(source, start) {
const quote = source[start];
let index = start + 1;
while (index < source.length) {
if (source[index] === '\\') {
index += 2;
continue;
}
if (source[index] === quote) return index + 1;
index += 1;
}
throw new Error('unterminated string literal in China decision-signal manifest');
}
function skipComment(source, start) {
if (source.startsWith('//', start)) {
const end = source.indexOf('\n', start + 2);
return end === -1 ? source.length : end + 1;
}
if (source.startsWith('/*', start)) {
const end = source.indexOf('*/', start + 2);
if (end === -1) {
throw new Error('unterminated comment in China decision-signal manifest');
}
return end + 2;
}
return start;
}
function skipTrivia(source, start) {
let index = start;
while (index < source.length) {
if (/\s/.test(source[index])) {
index += 1;
continue;
}
const commentEnd = skipComment(source, index);
if (commentEnd !== index) {
index = commentEnd;
continue;
}
break;
}
return index;
}
function readDelimited(source, start) {
const closingFor = { '(': ')', '[': ']', '{': '}' };
const firstClose = closingFor[source[start]];
if (!firstClose) {
throw new Error('expected a delimited literal in China decision-signal manifest');
}
const stack = [firstClose];
let index = start + 1;
while (index < source.length) {
const char = source[index];
if (char === '\'' || char === '"' || char === '`') {
index = skipQuotedLiteral(source, index);
continue;
}
const commentEnd = skipComment(source, index);
if (commentEnd !== index) {
index = commentEnd;
continue;
}
if (closingFor[char]) {
stack.push(closingFor[char]);
index += 1;
continue;
}
if (char === ')' || char === ']' || char === '}') {
if (stack.at(-1) !== char) {
throw new Error('mismatched delimiter in China decision-signal manifest');
}
stack.pop();
if (stack.length === 0) {
return {
content: source.slice(start + 1, index),
end: index + 1,
};
}
}
index += 1;
}
throw new Error('unterminated literal in China decision-signal manifest');
}
function findTopLevelComma(source, start) {
const closingFor = { '(': ')', '[': ']', '{': '}' };
const stack = [];
let index = start;
while (index < source.length) {
const char = source[index];
if (char === '\'' || char === '"' || char === '`') {
index = skipQuotedLiteral(source, index);
continue;
}
const commentEnd = skipComment(source, index);
if (commentEnd !== index) {
index = commentEnd;
continue;
}
if (closingFor[char]) {
stack.push(closingFor[char]);
} else if (char === ')' || char === ']' || char === '}') {
if (stack.at(-1) !== char) {
throw new Error('mismatched value delimiter in China decision-signal manifest');
}
stack.pop();
} else if (char === ',' && stack.length === 0) {
return index;
}
index += 1;
}
return source.length;
}
function constInitializerStart(source, name) {
const matches = [
...source.matchAll(
new RegExp(`\\b(?:export\\s+)?const\\s+${name}\\b`, 'g'),
),
];
if (matches.length !== 1) return -1;
const start = skipTrivia(source, matches[0].index + matches[0][0].length);
return source[start] === '=' ? skipTrivia(source, start + 1) : -1;
}
function statementTerminator(source, start) {
let index = start;
while (index < source.length) {
const commentEnd = skipComment(source, index);
if (commentEnd !== index) {
index = commentEnd;
continue;
}
if (
source[index] === '\''
|| source[index] === '"'
|| source[index] === '`'
) {
index = skipQuotedLiteral(source, index);
continue;
}
if (source[index] === ';') return index;
index += 1;
}
return -1;
}
function withoutComments(source) {
let result = '';
let index = 0;
while (index < source.length) {
const commentEnd = skipComment(source, index);
if (commentEnd !== index) {
result += ' ';
index = commentEnd;
continue;
}
result += source[index];
index += 1;
}
return result;
}
function assertStaticLiteralInitializer(source, literalEnd, label) {
const terminator = statementTerminator(source, literalEnd);
if (terminator < 0) {
throw new Error(`${label} static literal must end with a semicolon`);
}
const suffix = withoutComments(source.slice(literalEnd, terminator)).trim();
const typeOnlySuffix =
/^(?:as\s+const\s*)?(?:satisfies\s+(?:readonly\s+)?[$A-Z_a-z][$\w]*(?:\s*\.\s*[$A-Z_a-z][$\w]*)*(?:\s*\[\s*\])*\s*)?$/;
if (!typeOnlySuffix.test(suffix)) {
throw new Error(
`${label} must be a static literal with optional type-only assertions`,
);
}
}
function readManifestStringProperty(entry, property) {
let index = 0;
while (index < entry.length) {
index = skipTrivia(entry, index);
if (index >= entry.length) break;
if (entry[index] === ',') {
index += 1;
continue;
}
const key = entry.slice(index).match(/^[$A-Z_a-z][$\w]*/)?.[0];
if (!key) {
throw new Error('expected a property name in China decision-signal manifest');
}
index = skipTrivia(entry, index + key.length);
if (entry[index] !== ':') {
throw new Error(`expected ":" after ${key} in China decision-signal manifest`);
}
const valueStart = skipTrivia(entry, index + 1);
const valueEnd = findTopLevelComma(entry, valueStart);
if (key === property) {
const quote = entry[valueStart];
if (quote !== '\'' && quote !== '"') {
throw new Error(`${property} must be a string literal`);
}
const literalEnd = skipQuotedLiteral(entry, valueStart);
if (skipTrivia(entry, literalEnd) !== valueEnd) {
throw new Error(`${property} must be a plain string literal`);
}
const value = entry.slice(valueStart + 1, literalEnd - 1);
if (!value || value.includes('\\')) {
throw new Error(`${property} must be a non-empty unescaped string literal`);
}
return value;
}
index = valueEnd + 1;
}
throw new Error(`missing ${property} in China decision-signal manifest`);
}
export function parseChinaDecisionSignalManifest(source) {
const manifestStart = constInitializerStart(
source,
'CHINA_DECISION_SIGNAL_GROUP_MANIFEST',
);
const maxItemsStart = constInitializerStart(
source,
'CHINA_DECISION_SIGNAL_MAX_ITEMS_PER_GROUP',
);
if (manifestStart < 0 || source[manifestStart] !== '[' || maxItemsStart < 0) {
throw new Error('could not locate the China decision-signal manifest');
}
const manifest = readDelimited(source, manifestStart);
assertStaticLiteralInitializer(
source,
manifest.end,
'China decision-signal group manifest',
);
const manifestLiteral = manifest.content;
const groupManifest = [];
let index = 0;
while (index < manifestLiteral.length) {
index = skipTrivia(manifestLiteral, index);
if (index >= manifestLiteral.length) break;
if (manifestLiteral[index] === ',') {
index += 1;
continue;
}
if (manifestLiteral[index] !== '{') {
throw new Error('China decision-signal manifest entries must be object literals');
}
const entry = readDelimited(manifestLiteral, index);
groupManifest.push({
groupId: readManifestStringProperty(entry.content, 'groupId'),
provenanceFamily: readManifestStringProperty(
entry.content,
'provenanceFamily',
),
sourceKey: readManifestStringProperty(entry.content, 'sourceKey'),
});
index = entry.end;
}
const maxItemsMatch = source.slice(maxItemsStart).match(/^(\d+)\b/);
if (!maxItemsMatch) {
throw new Error('could not parse the China decision-signal manifest');
}
assertStaticLiteralInitializer(
source,
maxItemsStart + maxItemsMatch[0].length,
'China decision-signal max items',
);
const maxItemsPerGroup = Number(maxItemsMatch[1]);
if (groupManifest.length === 0 || !Number.isInteger(maxItemsPerGroup)) {
throw new Error('could not parse the China decision-signal manifest');
}
return { groupManifest, maxItemsPerGroup };
}
export function readDecisionSignalProvenanceContract() {
const src = readFileSync(resolve(root, 'shared/decision-signal-provenance-contract.ts'), 'utf8');
const familySrc = readFileSync(
resolve(root, 'shared/decision-signal-provenance-families.ts'),
'utf8',
);
const version = src.match(
/DECISION_SIGNAL_PROVENANCE_CONTRACT_VERSION\s*=\s*'([^']+)'\s+as const/,
)?.[1];
const dimensions = readConstStringArray(src, 'DECISION_SIGNAL_PROVENANCE_DIMENSIONS');
const claimStatuses = readConstStringArray(src, 'DECISION_SIGNAL_PROVENANCE_CLAIM_STATUSES');
const valueEnums = {
publisherTypes: readConstStringArray(src, 'DECISION_SIGNAL_PUBLISHER_TYPES'),
originalReferenceKinds: readConstStringArray(
src,
'DECISION_SIGNAL_ORIGINAL_REFERENCE_KINDS',
),
translationStates: readConstStringArray(src, 'DECISION_SIGNAL_TRANSLATION_STATES'),
timeRoles: readConstStringArray(src, 'DECISION_SIGNAL_TIME_ROLES'),
timePrecisions: readConstStringArray(src, 'DECISION_SIGNAL_TIME_PRECISIONS'),
revisionStates: readConstStringArray(src, 'DECISION_SIGNAL_REVISION_STATES'),
supersessionStates: readConstStringArray(
src,
'DECISION_SIGNAL_SUPERSESSION_STATES',
),
corroborationStates: readConstStringArray(
src,
'DECISION_SIGNAL_CORROBORATION_STATES',
),
transportFreshnessStates: readConstStringArray(
src,
'DECISION_SIGNAL_TRANSPORT_FRESHNESS_STATES',
),
contentFreshnessStates: readConstStringArray(
src,
'DECISION_SIGNAL_CONTENT_FRESHNESS_STATES',
),
};
const familyPolicies = Object.fromEntries(
[...familySrc.matchAll(
/^\s{2}([a-z0-9_]+): declaration\(\n\s{4}'([^']+)',[\s\S]*?\n\s{4}\{\n([\s\S]*?)\n\s{4}\},\n\s{2}\),/gm,
)].map((match) => {
const key = match[1];
const id = match[2];
if (key !== id) {
throw new Error(`decision-signal provenance family key/id mismatch: ${key} != ${id}`);
}
const policies = Object.fromEntries(
[...match[3].matchAll(/^\s{6}([a-z_]+): '(required|unknown_allowed|not_applicable)',?$/gm)]
.map((policyMatch) => [policyMatch[1], policyMatch[2]]),
);
if (
dimensions.some((dimension) => !(dimension in policies))
|| Object.keys(policies).length !== dimensions.length
) {
throw new Error(`could not read all provenance policies for family ${id}`);
}
return [id, policies];
}),
);
if (
!version
|| dimensions.length === 0
|| claimStatuses.length === 0
|| Object.keys(familyPolicies).length === 0
|| Object.values(valueEnums).some((values) => values.length === 0)
) {
throw new Error('could not read the decision-signal provenance contract');
}
return {
version,
dimensions,
claimStatuses,
familyPolicies,
...valueEnums,
};
}
export function readChinaCorridorWireContract() {
const corridor = readFileSync(
resolve(root, 'shared/china-corridor-control-towers.ts'),
'utf8',
);
const logistics = readFileSync(
resolve(root, 'shared/china-logistics-corridors.ts'),
'utf8',
);
const provenance = readFileSync(
resolve(root, 'shared/decision-signal-provenance-contract.ts'),
'utf8',
);
const contract = {
availabilities: readConstStringArray(corridor, 'CHINA_CORRIDOR_AVAILABILITIES'),
signalAvailabilities: readConstStringArray(
corridor,
'CHINA_CORRIDOR_SIGNAL_AVAILABILITIES',
),
timePrecisions: readConstStringArray(corridor, 'CHINA_CORRIDOR_TIME_PRECISIONS'),
publisherTypes: readConstStringArray(corridor, 'CHINA_CORRIDOR_PUBLISHER_TYPES'),
sourceScopes: readConstStringArray(corridor, 'CHINA_CORRIDOR_SOURCE_SCOPES'),
revisionStates: readConstStringArray(corridor, 'CHINA_CORRIDOR_REVISION_STATES'),
corridorIds: readConstStringArray(logistics, 'CHINA_LOGISTICS_CORRIDOR_IDS'),
signalFamilies: readConstStringArray(logistics, 'CHINA_CORRIDOR_SIGNAL_FAMILIES'),
nodeTypes: readConstStringArray(logistics, 'CHINA_CORRIDOR_NODE_TYPES'),
transportFreshnessStates: readConstStringArray(
provenance,
'DECISION_SIGNAL_TRANSPORT_FRESHNESS_STATES',
),
contentFreshnessStates: readConstStringArray(
provenance,
'DECISION_SIGNAL_CONTENT_FRESHNESS_STATES',
),
};
if (Object.values(contract).some((values) => values.length === 0)) {
throw new Error('could not read the China corridor wire contract');
}
return contract;
}
export function readChinaDecisionSignalWireContract() {
const src = readFileSync(
resolve(root, 'shared/china-decision-signals.ts'),
'utf8',
);
const manifestSrc = readFileSync(
resolve(root, 'shared/china-decision-signal-manifest.ts'),
'utf8',
);
const {
groupManifest,
maxItemsPerGroup,
} = parseChinaDecisionSignalManifest(manifestSrc);
const schemaVersion = Number(src.match(
/CHINA_DECISION_SIGNAL_SCHEMA_VERSION\s*=\s*(\d+)\s+as const/,
)?.[1]);
const groupIds = groupManifest.map(({ groupId }) => groupId);
const provenanceFamilyIds = groupManifest.map(
({ provenanceFamily }) => provenanceFamily,
);
const stateBlock = src.match(
/export type ChinaDecisionSignalState\s*=\s*([\s\S]*?);/,
)?.[1];
const states = stateBlock
? [...stateBlock.matchAll(/'([^']+)'/g)].map((match) => match[1])
: [];
const accessBlock = src.match(
/access:\s*\{([\s\S]*?)\};\s*\}/,
)?.[1];
const access = Object.fromEntries(
accessBlock
? [...accessBlock.matchAll(/\b(anonymous|pro|operator):\s*'([^']+)'/g)]
.map((match) => [match[1], match[2]])
: [],
);
const provenanceFamilies = new Set(
Object.keys(readDecisionSignalProvenanceContract().familyPolicies),
);
if (
!Number.isInteger(schemaVersion)
|| schemaVersion < 1
|| groupIds.length === 0
|| new Set(groupIds).size !== groupIds.length
|| new Set(provenanceFamilyIds).size !== provenanceFamilyIds.length
|| new Set(groupManifest.map(({ sourceKey }) => sourceKey)).size !== groupManifest.length
|| provenanceFamilyIds.some((familyId) => !provenanceFamilies.has(familyId))
|| states.length === 0
|| Object.keys(access).length !== 3
|| !Number.isInteger(maxItemsPerGroup)
|| maxItemsPerGroup < 1
) {
throw new Error('could not read the China decision-signal wire contract');
}
return {
schemaVersion,
groupManifest,
groupIds,
provenanceFamilyIds,
states,
access,
maxItemsPerGroup,
};
}
// ββ Public 403 gates βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Public RPCs (security: []) that nonetheless document a 403 the handler throws.
// Lead capture opts out of API-key auth at the gateway, then fails closed in the
// handler on a Turnstile / desktop-auth failure. Single-sourced here so the
// contract test asserts specs against the SAME map the injector stamps from.
export const PUBLIC_FORBIDDEN_GATES = new Map([
['/api/leads/v1/submit-contact', {
note: 'Turnstile-gated. Missing or invalid Cloudflare Turnstile token returns 403 Bot verification failed.',
response: {
description: 'Bot verification failed.',
content: {
'application/json': {
schema: { $ref: '#/components/schemas/Error' },
},
},
},
}],
['/api/leads/v1/register-interest', {
// The handler (server/worldmonitor/leads/v1/register-interest.ts) fails
// closed with two distinct 403s: browser callers that fail the Cloudflare
// Turnstile check get 403 Bot verification failed; desktop-source callers
// whose shared-secret HMAC bypass is missing/invalid get 403 Desktop
// authentication failed. Both are thrown as the sebuf ApiError, so the body
// is the generated Error schema (a `message` string) β same shape the
// submit-contact gate documents.
note: 'Turnstile-gated (desktop sources authenticate a bypass with a shared-secret HMAC instead). A failed Cloudflare Turnstile check returns 403 Bot verification failed; a desktop-source request with a missing or invalid HMAC signature returns 403 Desktop authentication failed.',
response: {
description: 'Bot verification or desktop authentication failed.',
content: {
'application/json': {
schema: { $ref: '#/components/schemas/Error' },
},
},
},
}],
]);
|