Files
apf_portal/scripts/check-catalogue-drift.mjs
T
Julien Gautier 056848e502
CI / scan (pull_request) Successful in 5m32s
CI / commits (pull_request) Successful in 5m34s
CI / check (pull_request) Successful in 6m8s
CI / a11y (pull_request) Successful in 4m51s
CI / perf (pull_request) Successful in 9m33s
feat(users): add Person + User + UserScope + lazy provisioner (ADR-0026 PR 1)
Schema: Person golden record + User portal-account overlay (1-to-0-or-1)
+ UserScope (the table behind the ADR-0025 scope axis). All in the
public schema. UserScope.value is opaque (no FK to ADR-0027 tables -
historical scope rows survive structure decommissioning).

Migration: hand-written, follows the existing convention. FKs with
correct ON DELETE actions (RESTRICT on User.personId for the required
relation, CASCADE on UserScope.userId via explicit onDelete: Cascade
in the schema).

Catalogue: PERSON_SOURCES = [self-signin, admin-ui, seed] as const
under apps/portal-bff/src/users/person-source.ts. Defense in depth =
TS type union + drift gate scanner extension (property literal
"source: 'X'" in files importing person-source.ts).

PersonAndUserProvisioner: blocking lazy-create at first OIDC callback.
Fast path = findUnique by entraOid + update lastSignInAt. Cold path =
nested create of Person + User in one transaction. Race-condition
handling: catches P2002 on User.entraOid unique constraint and re-runs
ensureUser. Defense-in-depth isPersonSource check on the constant.

PrincipalBuilder signature: build(user, identity: { userId, personId }).
Principal.user.{id, personId} populated from real UUIDs. ScopeResolver
seam moved from { entraOid } to { userId } so PR 2's PrismaScopeResolver
can key queries on User.id.

SessionEstablisher: new constructor arg personUserProvisioner.
establish() calls ensureUser BEFORE principalBuilder.build so the
identity is available. Entra preferred_username (= AuthenticatedUser.
username) maps to Person.email per ADR-0026 lifecycle. Provisioner
failure short-circuits the whole flow before save / cookie / audit /
directory.

UserDirectoryService stays as the ADR-0020 admin-list cache - folding
it into Person+User is a follow-up after ADR-0026 PR 2 stabilises.

Local verification: drift gate clean (4 / 24 / 7 / 3), 29 drift-gate
spec tests passing, portal-bff lint 0 errors, 766 portal-bff specs
passing.
2026-05-26 13:54:41 +02:00

428 lines
16 KiB
JavaScript

#!/usr/bin/env node
/**
* Catalogue-vs-code drift gate per
* [ADR-0025 §"Confirmation"](../docs/decisions/0025-authorization-model-privileges-roles-scopes.md).
*
* Asserts that every string literal passed to the authorization
* decorators in the codebase belongs to the closed catalogue
* declared in `libs/shared/auth/src/lib/authorization.types.ts`:
*
* - `@RequirePrivilege('Portal.X', …)` → every arg ∈ PRIVILEGES
* - `@RequireRole('rh', …)` → every arg ∈ FUNCTIONAL_ROLES
*
* The TypeScript type system enforces the same constraint at
* compile time — the decorator signatures are typed against the
* `Privilege` / `FunctionalRole` literal unions — so the gate is
* defence-in-depth against escape hatches:
*
* - explicit `as Privilege` casts (`'Portal.Foo' as Privilege`),
* - indirection through a `string`-typed local
* (`const slug = 'rh'; @RequireRole(slug)` — non-literal
* args are skipped here, but the gate at least catches the
* literal misspellings),
* - and the rarer case where a developer hand-edits the
* catalogue type union without updating the runtime constant.
*
* Implementation: the script parses the catalogue file and every
* `.ts` file under `apps/` and `libs/` with the TypeScript compiler
* API. For each `CallExpression` whose callee identifier matches
* one of the decorator names, every string-literal argument is
* checked against the catalogue. Non-literal arguments are
* skipped silently; the gate is best-effort for those, but they
* are caught by the TypeScript signature anyway.
*
* Exit code: 0 if no drift, 1 with a grouped report if drift is
* found. The script does not consume any env vars; running it
* directly (`node scripts/check-catalogue-drift.mjs`) and via
* `pnpm ci:catalogue-drift` are equivalent.
*/
import { readFileSync, readdirSync, statSync } from 'node:fs';
import { dirname, join, relative, resolve } from 'node:path';
import { fileURLToPath } from 'node:url';
import ts from 'typescript';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const WORKSPACE_ROOT = resolve(__dirname, '..');
const CATALOGUE_PATH = join(WORKSPACE_ROOT, 'libs/shared/auth/src/lib/authorization.types.ts');
const STRUCTURE_KIND_PATH = 'apps/portal-bff/src/structures/structure-kind.ts';
const PERSON_SOURCE_PATH = 'apps/portal-bff/src/users/person-source.ts';
/**
* A file is only scanned for property-literal catalogue violations
* if it imports from the relevant catalogue module. Outside that
* context `kind` / `source` are common property names on unrelated
* objects and the scanner would false-positive. The check is
* text-level (cheap) and runs before any AST work — files that fail
* it short-circuit.
*/
const STRUCTURE_KIND_IMPORT_PATTERN = /\bfrom\s+['"][^'"]*structure-kind['"]/;
const PERSON_SOURCE_IMPORT_PATTERN = /\bfrom\s+['"][^'"]*person-source['"]/;
/**
* Decorator name → catalogue array name. Adding a third decorator
* (per ADR-0025's anticipated growth) is one line here plus the
* matching test fixture.
*/
const DECORATOR_TO_CATALOGUE = {
RequirePrivilege: 'PRIVILEGES',
RequireRole: 'FUNCTIONAL_ROLES',
};
/**
* Folders to skip when walking the workspace. Stays small on
* purpose: every other path under `apps/` and `libs/` is fair
* game for catalogue references, including specs (the persona
* matrix in `auth-guards.persona-matrix.spec.ts` is a deliberate
* usage and must stay in sync).
*/
const SKIPPED_DIRS = new Set([
'node_modules',
'dist',
'coverage',
'.nx',
'.angular',
'__screenshots__',
]);
/**
* Files / subpaths to skip outright. The generated gRPC stubs
* under `apps/portal-bff/src/grpc/gen/` carry their own
* `roles[]` field that has nothing to do with the ADR-0025
* functional-role catalogue — skipping the whole dir keeps the
* scanner focused on hand-written code.
*/
const SKIPPED_SUBPATHS = ['apps/portal-bff/src/grpc/gen'];
/**
* Parse `authorization.types.ts` and extract the catalogue
* arrays as `Set<string>` keyed on the constant's name.
* Returns `{ PRIVILEGES: Set, FUNCTIONAL_ROLES: Set }`.
*
* Exported for the spec — keeps the parser logic testable without
* spawning the CLI.
*/
export function extractCatalogues(sourceFilePath = CATALOGUE_PATH) {
const text = readFileSync(sourceFilePath, 'utf8');
const sourceFile = ts.createSourceFile(sourceFilePath, text, ts.ScriptTarget.Latest, true);
const out = {};
for (const stmt of sourceFile.statements) {
if (!ts.isVariableStatement(stmt)) continue;
for (const decl of stmt.declarationList.declarations) {
if (!ts.isIdentifier(decl.name) || !decl.initializer) continue;
const name = decl.name.text;
if (!Object.values(DECORATOR_TO_CATALOGUE).includes(name)) continue;
// Catalogues are declared as `[...] as const`; strip the
// type assertion to reach the array literal.
let init = decl.initializer;
if (ts.isAsExpression(init)) init = init.expression;
if (!ts.isArrayLiteralExpression(init)) continue;
const values = new Set();
for (const el of init.elements) {
if (ts.isStringLiteral(el) || ts.isNoSubstitutionTemplateLiteral(el)) {
values.add(el.text);
}
}
out[name] = values;
}
}
for (const expected of Object.values(DECORATOR_TO_CATALOGUE)) {
if (!out[expected]) {
throw new Error(
`Failed to extract catalogue "${expected}" from ${sourceFilePath}` +
`the script expected a top-level "export const ${expected} = [...] as const" declaration.`,
);
}
}
return out;
}
/**
* Parse `structure-kind.ts` and extract the `STRUCTURE_KINDS`
* constant as `Set<string>`. Mirror of `extractCatalogues` for the
* ADR-0027 `Structure.kind` catalogue — same `as const` array
* literal pattern, single declaration per file. Exported for the spec.
*/
export function extractStructureKinds(sourceFilePath = join(WORKSPACE_ROOT, STRUCTURE_KIND_PATH)) {
return extractAsConstArray(sourceFilePath, 'STRUCTURE_KINDS');
}
/**
* Find every `kind: 'X'` property literal whose X is not in the
* STRUCTURE_KINDS catalogue. Restricted to files that import from
* the structure-kind module (heuristic — `kind` is a common
* property name on unrelated objects; without the restriction the
* scanner would false-positive everywhere). Exported for the spec.
*/
export function findStructureKindViolationsInFile(filePath, validKinds, sourceText) {
return findPropertyLiteralViolations(filePath, validKinds, sourceText, {
importPattern: STRUCTURE_KIND_IMPORT_PATTERN,
propertyName: 'kind',
callee: 'Structure.kind',
catalogueName: 'STRUCTURE_KINDS',
});
}
/**
* Parse `person-source.ts` and extract the `PERSON_SOURCES` constant
* as `Set<string>`. Mirror of `extractStructureKinds` — same `as const`
* array literal pattern, single declaration per file. Exported for
* the spec.
*/
export function extractPersonSources(sourceFilePath = join(WORKSPACE_ROOT, PERSON_SOURCE_PATH)) {
return extractAsConstArray(sourceFilePath, 'PERSON_SOURCES');
}
/**
* Find every `source: 'X'` property literal whose X is not in the
* PERSON_SOURCES catalogue. Mirror of `findStructureKindViolationsInFile`
* with a different property name + catalogue. Exported for the spec.
*/
export function findPersonSourceViolationsInFile(filePath, validSources, sourceText) {
return findPropertyLiteralViolations(filePath, validSources, sourceText, {
importPattern: PERSON_SOURCE_IMPORT_PATTERN,
propertyName: 'source',
callee: 'Person.source',
catalogueName: 'PERSON_SOURCES',
});
}
/**
* Helper for both property-literal scanners. Walks every
* PropertyAssignment whose key matches `propertyName`; for each
* string-literal initialiser, checks that the value is in
* `validValues`. Skips files that don't import the catalogue module
* (text-level pre-filter, cheap).
*/
function findPropertyLiteralViolations(filePath, validValues, sourceText, opts) {
const text = sourceText ?? readFileSync(filePath, 'utf8');
if (!opts.importPattern.test(text)) return [];
const sourceFile = ts.createSourceFile(filePath, text, ts.ScriptTarget.Latest, true);
const violations = [];
function visit(node) {
if (ts.isPropertyAssignment(node)) {
const name = node.name;
const matchesProperty =
(ts.isIdentifier(name) && name.text === opts.propertyName) ||
(ts.isStringLiteral(name) && name.text === opts.propertyName);
if (matchesProperty) {
const init = node.initializer;
if (ts.isStringLiteral(init) || ts.isNoSubstitutionTemplateLiteral(init)) {
if (!validValues.has(init.text)) {
const { line, character } = sourceFile.getLineAndCharacterOfPosition(init.getStart());
violations.push({
file: filePath,
line: line + 1,
column: character + 1,
callee: opts.callee,
value: init.text,
catalogue: opts.catalogueName,
});
}
}
}
}
ts.forEachChild(node, visit);
}
visit(sourceFile);
return violations;
}
/**
* Helper for extractStructureKinds / extractPersonSources — both
* read a top-level `export const <name> = [...] as const` from a
* single-file catalogue module. Generalised once instead of
* duplicated per catalogue.
*/
function extractAsConstArray(sourceFilePath, constName) {
const text = readFileSync(sourceFilePath, 'utf8');
const sourceFile = ts.createSourceFile(sourceFilePath, text, ts.ScriptTarget.Latest, true);
for (const stmt of sourceFile.statements) {
if (!ts.isVariableStatement(stmt)) continue;
for (const decl of stmt.declarationList.declarations) {
if (!ts.isIdentifier(decl.name) || decl.name.text !== constName) continue;
let init = decl.initializer;
if (init && ts.isAsExpression(init)) init = init.expression;
if (!init || !ts.isArrayLiteralExpression(init)) continue;
const values = new Set();
for (const el of init.elements) {
if (ts.isStringLiteral(el) || ts.isNoSubstitutionTemplateLiteral(el)) {
values.add(el.text);
}
}
return values;
}
}
throw new Error(
`Failed to extract ${constName} from ${sourceFilePath}` +
`the script expected a top-level "export const ${constName} = [...] as const" declaration.`,
);
}
/**
* Walk `dir` recursively and yield every `.ts` file path
* (excluding declaration files and the dirs listed in
* SKIPPED_DIRS / SKIPPED_SUBPATHS).
*/
function* walkTsFiles(dir, rootForRelative) {
let entries;
try {
entries = readdirSync(dir);
} catch {
return;
}
for (const entry of entries) {
if (SKIPPED_DIRS.has(entry) || entry.startsWith('.')) continue;
const full = join(dir, entry);
const rel = relative(rootForRelative, full).replaceAll('\\', '/');
if (SKIPPED_SUBPATHS.some((skip) => rel === skip || rel.startsWith(skip + '/'))) {
continue;
}
let st;
try {
st = statSync(full);
} catch {
continue;
}
if (st.isDirectory()) {
yield* walkTsFiles(full, rootForRelative);
} else if (entry.endsWith('.ts') && !entry.endsWith('.d.ts')) {
yield full;
}
}
}
/**
* Find every catalogue-violation in a single source file.
* Returns an array of `{ file, line, column, callee, value,
* catalogue }` records. Exported for the spec.
*/
export function findViolationsInFile(filePath, catalogues, sourceText) {
const text = sourceText ?? readFileSync(filePath, 'utf8');
const sourceFile = ts.createSourceFile(filePath, text, ts.ScriptTarget.Latest, true);
const violations = [];
function visit(node) {
if (ts.isCallExpression(node) && ts.isIdentifier(node.expression)) {
const callee = node.expression.text;
const catalogueName = DECORATOR_TO_CATALOGUE[callee];
if (catalogueName) {
const valid = catalogues[catalogueName];
for (const arg of node.arguments) {
if (ts.isStringLiteral(arg) || ts.isNoSubstitutionTemplateLiteral(arg)) {
if (!valid.has(arg.text)) {
const { line, character } = sourceFile.getLineAndCharacterOfPosition(arg.getStart());
violations.push({
file: filePath,
line: line + 1,
column: character + 1,
callee,
value: arg.text,
catalogue: catalogueName,
});
}
}
}
}
}
ts.forEachChild(node, visit);
}
visit(sourceFile);
return violations;
}
/**
* Top-level scan: walk `apps/` and `libs/`, accumulate
* violations, return them all. Pure (no I/O outside the file
* reads it does itself). Exported for the spec.
*/
export function scanWorkspace(workspaceRoot = WORKSPACE_ROOT) {
const catalogues = extractCatalogues(
join(workspaceRoot, 'libs/shared/auth/src/lib/authorization.types.ts'),
);
const structureKinds = extractStructureKinds(join(workspaceRoot, STRUCTURE_KIND_PATH));
const personSources = extractPersonSources(join(workspaceRoot, PERSON_SOURCE_PATH));
const out = [];
for (const dirName of ['apps', 'libs']) {
const dir = join(workspaceRoot, dirName);
for (const file of walkTsFiles(dir, workspaceRoot)) {
out.push(...findViolationsInFile(file, catalogues));
out.push(...findStructureKindViolationsInFile(file, structureKinds));
out.push(...findPersonSourceViolationsInFile(file, personSources));
}
}
return { violations: out, catalogues, structureKinds, personSources };
}
function main() {
const { violations, catalogues, structureKinds, personSources } = scanWorkspace();
if (violations.length === 0) {
const privCount = catalogues.PRIVILEGES.size;
const roleCount = catalogues.FUNCTIONAL_ROLES.size;
const kindCount = structureKinds.size;
const sourceCount = personSources.size;
console.log(
`catalogue-drift: clean (catalogues: ${privCount} privileges, ${roleCount} roles, ${kindCount} structure kinds, ${sourceCount} person sources).`,
);
process.exit(0);
}
console.error('catalogue-drift: violations found');
console.error('');
// Group by file for a readable report. Within a file, sort by
// line so the output mirrors the editor's view.
const byFile = new Map();
for (const v of violations) {
if (!byFile.has(v.file)) byFile.set(v.file, []);
byFile.get(v.file).push(v);
}
for (const [file, list] of byFile) {
list.sort((a, b) => a.line - b.line || a.column - b.column);
const rel = relative(WORKSPACE_ROOT, file).replaceAll('\\', '/');
console.error(` ${rel}`);
for (const v of list) {
// Decorator-style violations are printed as `@Callee('value')`;
// property-literal violations (Structure.kind) are printed as
// `kind: 'value'` to match the offending code shape.
const display = v.callee.includes('.')
? `${v.callee.split('.').pop()}: '${v.value}'`
: `@${v.callee}('${v.value}')`;
console.error(` ${v.line}:${v.column} ${display} — not in ${v.catalogue}`);
}
}
console.error('');
console.error(
`Catalogues are closed in v1 per ADR-0025 (PRIVILEGES / FUNCTIONAL_ROLES), ` +
`ADR-0027 (STRUCTURE_KINDS), and ADR-0026 (PERSON_SOURCES). To add a value, ` +
`amend the ADR and the corresponding constant in ` +
`libs/shared/auth/src/lib/authorization.types.ts, ` +
`apps/portal-bff/src/structures/structure-kind.ts, or ` +
`apps/portal-bff/src/users/person-source.ts.`,
);
process.exit(1);
}
// Only run main() when invoked as a CLI (not when imported by the
// spec).
const isMain =
import.meta.url === `file://${process.argv[1]}` ||
import.meta.url === `file://${resolve(process.argv[1])}`;
if (isMain) {
main();
}