@blamejs/core 0.7.4 → 0.7.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,405 @@
1
+ "use strict";
2
+ /**
3
+ * guard-all — registry + aggregator for the guard-* content-safety
4
+ * family.
5
+ *
6
+ * The framework thesis applied to content safety: every shipped guard
7
+ * is ON by default; operators opt OUT explicitly with an audited reason
8
+ * per guard. New guards added in future slices auto-register and
9
+ * operators get the new coverage without re-wiring.
10
+ *
11
+ * var b = require("@blamejs/core");
12
+ *
13
+ * // Every shipped guard, every threat, strict profile, one line.
14
+ * var safety = b.guardAll.gate({ profile: "strict", audit: b.audit });
15
+ *
16
+ * // Opt-out is explicit, named, and audited.
17
+ * var safety = b.guardAll.gate({
18
+ * profile: "strict",
19
+ * exceptFor: {
20
+ * html: { reason: "every HTML response is server-rendered + CSP-locked" },
21
+ * pdf: { reason: "no PDF uploads in this app" },
22
+ * },
23
+ * override: {
24
+ * csv: { profile: "email-attachment" },
25
+ * },
26
+ * audit: b.audit,
27
+ * observability: b.observability,
28
+ * });
29
+ *
30
+ * // Drop straight into the existing composition points.
31
+ * b.staticServe.create({
32
+ * contentSafety: b.guardAll.byExtension({ profile: "strict" }),
33
+ * });
34
+ * b.fileUpload.create({
35
+ * contentSafety: b.guardAll.gate({ profile: "strict" }),
36
+ * });
37
+ *
38
+ * Registry contract — every primitive registered into guard-all MUST
39
+ * export:
40
+ * - NAME — short string identifier ("csv", "html", ...)
41
+ * - MIME_TYPES — array of canonical mime types it owns
42
+ * - EXTENSIONS — array of file extensions it owns (.csv, ...)
43
+ * - PROFILES — object map; must include the SHARED_PROFILES
44
+ * vocabulary (strict / balanced / permissive)
45
+ * - COMPLIANCE_POSTURES — object map; must include the SHARED_POSTURES
46
+ * vocabulary (hipaa / pci-dss / gdpr / soc2-cc7)
47
+ * - gate(opts) — returns a b.gateContract-shaped gate
48
+ *
49
+ * The parity check at module load throws GuardAllError if a registered
50
+ * guard is missing any of the above — this is the registry gate that
51
+ * keeps every future guard slice conformant.
52
+ *
53
+ * Per-guard extension profiles (e.g. csv's "email-attachment") work
54
+ * via direct b.guardCsv.gate({ profile: "email-attachment" }) but are
55
+ * NOT accepted by b.guardAll.gate({ profile: ... }) — the aggregator
56
+ * only takes the shared vocabulary so the same string applies cleanly
57
+ * across every member. Operators reach for guard-specific profiles via
58
+ * the override map.
59
+ */
60
+
61
+ var lazyRequire = require("./lazy-require");
62
+ var validateOpts = require("./validate-opts");
63
+ var gateContract = require("./gate-contract");
64
+ var { GuardAllError } = require("./framework-error");
65
+
66
+ var observability = lazyRequire(function () { return require("./observability"); });
67
+ void observability;
68
+
69
+ var _err = GuardAllError.factory;
70
+
71
+ // Registered guards. Ordering is the order they get walked by list();
72
+ // dispatch via gateContract.contentTypeMux is O(1) regardless.
73
+ var GUARDS = [
74
+ require("./guard-csv"),
75
+ require("./guard-html"),
76
+ require("./guard-svg"),
77
+ require("./guard-archive"),
78
+ require("./guard-json"),
79
+ require("./guard-yaml"),
80
+ require("./guard-xml"),
81
+ require("./guard-markdown"),
82
+ require("./guard-email"),
83
+ ];
84
+
85
+ // STANDALONE_GUARDS — guard-* primitives that don't fit content-type
86
+ // routing. They participate in the family (NAME / KIND / INTEGRATION_
87
+ // FIXTURES exports + shared profiles + postures) but operate on a
88
+ // non-content axis (filename string, future identifier types). The
89
+ // adaptive integration harness iterates `allGuards()` to pick them up.
90
+ var STANDALONE_GUARDS = [
91
+ require("./guard-filename"),
92
+ ];
93
+
94
+ // Framework-wide profile + posture vocabulary that every guard MUST
95
+ // support. Adding a new shared profile / posture is a coordinated
96
+ // cross-guard change — every member must implement it.
97
+ var SHARED_PROFILES = Object.freeze(["strict", "balanced", "permissive"]);
98
+ var SHARED_POSTURES = Object.freeze(["hipaa", "pci-dss", "gdpr", "soc2-cc7"]);
99
+
100
+ // ---- Registry parity check (runs at module load) ----
101
+
102
+ function _verifyParity() {
103
+ var failures = [];
104
+ for (var i = 0; i < GUARDS.length; i += 1) {
105
+ var g = GUARDS[i];
106
+ if (!g || typeof g !== "object") {
107
+ failures.push("guard at index " + i + " is not an exported module object");
108
+ continue;
109
+ }
110
+ if (typeof g.NAME !== "string" || g.NAME.length === 0) {
111
+ failures.push("guard at index " + i + ": missing NAME export");
112
+ continue;
113
+ }
114
+ if (!Array.isArray(g.MIME_TYPES) || g.MIME_TYPES.length === 0) {
115
+ failures.push(g.NAME + ": missing or empty MIME_TYPES export");
116
+ }
117
+ if (!Array.isArray(g.EXTENSIONS) || g.EXTENSIONS.length === 0) {
118
+ failures.push(g.NAME + ": missing or empty EXTENSIONS export");
119
+ }
120
+ if (typeof g.gate !== "function") {
121
+ failures.push(g.NAME + ": missing gate(opts) function");
122
+ }
123
+ SHARED_PROFILES.forEach(function (p) {
124
+ if (!g.PROFILES || !g.PROFILES[p]) {
125
+ failures.push(g.NAME + ": does not declare shared profile " + JSON.stringify(p));
126
+ }
127
+ });
128
+ SHARED_POSTURES.forEach(function (p) {
129
+ if (!g.COMPLIANCE_POSTURES || !g.COMPLIANCE_POSTURES[p]) {
130
+ failures.push(g.NAME + ": does not declare shared compliance posture " + JSON.stringify(p));
131
+ }
132
+ });
133
+ }
134
+ // Detect duplicate NAMEs / MIME_TYPES / EXTENSIONS — would cause silent
135
+ // override in the aggregated gate map; surface at boot instead.
136
+ var nameSeen = Object.create(null);
137
+ var mimeSeen = Object.create(null);
138
+ var extSeen = Object.create(null);
139
+ for (var j = 0; j < GUARDS.length; j += 1) {
140
+ var gg = GUARDS[j];
141
+ if (gg && gg.NAME) {
142
+ if (nameSeen[gg.NAME]) failures.push("duplicate NAME " + JSON.stringify(gg.NAME));
143
+ nameSeen[gg.NAME] = true;
144
+ }
145
+ if (gg && Array.isArray(gg.MIME_TYPES)) {
146
+ gg.MIME_TYPES.forEach(function (m) {
147
+ var k = String(m).toLowerCase();
148
+ if (mimeSeen[k]) failures.push("duplicate MIME_TYPE " + JSON.stringify(k) +
149
+ " across multiple guards");
150
+ mimeSeen[k] = true;
151
+ });
152
+ }
153
+ if (gg && Array.isArray(gg.EXTENSIONS)) {
154
+ gg.EXTENSIONS.forEach(function (e) {
155
+ var k = String(e).toLowerCase();
156
+ if (extSeen[k]) failures.push("duplicate EXTENSION " + JSON.stringify(k) +
157
+ " across multiple guards");
158
+ extSeen[k] = true;
159
+ });
160
+ }
161
+ }
162
+ if (failures.length) {
163
+ throw _err("guard-all/parity-fail",
164
+ "guardAll registry parity check failed:\n " + failures.join("\n "));
165
+ }
166
+ }
167
+ _verifyParity();
168
+
169
+ // ---- Internal helpers ----
170
+
171
+ function _byName(name) {
172
+ for (var i = 0; i < GUARDS.length; i += 1) {
173
+ if (GUARDS[i].NAME === name) return GUARDS[i];
174
+ }
175
+ return null;
176
+ }
177
+
178
+ function _validateExceptFor(exceptFor) {
179
+ if (exceptFor == null) return {};
180
+ validateOpts.optionalPlainObject(exceptFor,
181
+ "guardAll: exceptFor", GuardAllError, "guard-all/bad-opt",
182
+ "must be a plain object keyed by guard NAME");
183
+ var keys = Object.keys(exceptFor);
184
+ for (var i = 0; i < keys.length; i += 1) {
185
+ var name = keys[i];
186
+ if (!_byName(name)) {
187
+ throw _err("guard-all/unknown-guard",
188
+ "exceptFor refers to unknown guard " + JSON.stringify(name) +
189
+ "; registered: " + GUARDS.map(function (g) { return g.NAME; }).join(", "));
190
+ }
191
+ var entry = exceptFor[name];
192
+ if (!entry || typeof entry !== "object" || Array.isArray(entry)) {
193
+ throw _err("guard-all/bad-opt",
194
+ "exceptFor[" + JSON.stringify(name) + "] must be a plain object " +
195
+ "with a non-empty reason string");
196
+ }
197
+ if (typeof entry.reason !== "string" || entry.reason.trim().length === 0) {
198
+ throw _err("guard-all/missing-reason",
199
+ "exceptFor[" + JSON.stringify(name) + "] requires a non-empty " +
200
+ "reason string — opting a guard out is auditable");
201
+ }
202
+ }
203
+ return exceptFor;
204
+ }
205
+
206
+ function _validateOverride(override) {
207
+ if (override == null) return {};
208
+ validateOpts.optionalPlainObject(override,
209
+ "guardAll: override", GuardAllError, "guard-all/bad-opt",
210
+ "must be a plain object keyed by guard NAME");
211
+ var keys = Object.keys(override);
212
+ for (var i = 0; i < keys.length; i += 1) {
213
+ var name = keys[i];
214
+ if (!_byName(name)) {
215
+ throw _err("guard-all/unknown-guard",
216
+ "override refers to unknown guard " + JSON.stringify(name));
217
+ }
218
+ var entry = override[name];
219
+ if (!entry || typeof entry !== "object" || Array.isArray(entry)) {
220
+ throw _err("guard-all/bad-opt",
221
+ "override[" + JSON.stringify(name) + "] must be a plain object " +
222
+ "of opts to merge into the guard's gate(opts)");
223
+ }
224
+ }
225
+ return override;
226
+ }
227
+
228
+ function _validateProfileAndPosture(opts) {
229
+ if (opts.profile != null) {
230
+ if (typeof opts.profile !== "string") {
231
+ throw _err("guard-all/bad-opt",
232
+ "profile must be a string; got " + typeof opts.profile);
233
+ }
234
+ if (SHARED_PROFILES.indexOf(opts.profile) === -1) {
235
+ throw _err("guard-all/bad-profile",
236
+ "profile " + JSON.stringify(opts.profile) +
237
+ " is not in the shared vocabulary; allowed: " +
238
+ SHARED_PROFILES.join(", ") +
239
+ ". Per-guard extension profiles (e.g. csv's email-attachment) " +
240
+ "are reachable via the override map.");
241
+ }
242
+ }
243
+ if (opts.compliancePosture != null) {
244
+ if (typeof opts.compliancePosture !== "string") {
245
+ throw _err("guard-all/bad-opt",
246
+ "compliancePosture must be a string; got " + typeof opts.compliancePosture);
247
+ }
248
+ if (SHARED_POSTURES.indexOf(opts.compliancePosture) === -1) {
249
+ throw _err("guard-all/bad-posture",
250
+ "compliancePosture " + JSON.stringify(opts.compliancePosture) +
251
+ " is not in the shared vocabulary; allowed: " + SHARED_POSTURES.join(", "));
252
+ }
253
+ }
254
+ }
255
+
256
+ // _resolveActiveGuards — returns the set of (guard, mergedOpts) pairs
257
+ // that are NOT in exceptFor. Each entry's opts are the base opts +
258
+ // override entry merged in.
259
+ function _resolveActiveGuards(opts) {
260
+ var exceptFor = _validateExceptFor(opts.exceptFor);
261
+ var override = _validateOverride(opts.override);
262
+ _validateProfileAndPosture(opts);
263
+
264
+ var baseOpts = {
265
+ profile: opts.profile,
266
+ compliancePosture: opts.compliancePosture,
267
+ mode: opts.mode,
268
+ audit: opts.audit,
269
+ observability: opts.observability,
270
+ forensicEvidenceStore: opts.forensicEvidenceStore,
271
+ forensicSnippetBytes: opts.forensicSnippetBytes,
272
+ cache: opts.cache,
273
+ cacheTtlMs: opts.cacheTtlMs,
274
+ maxRuntimeMs: opts.maxRuntimeMs,
275
+ beforeCheck: opts.beforeCheck,
276
+ afterCheck: opts.afterCheck,
277
+ onIssue: opts.onIssue,
278
+ onSanitize: opts.onSanitize,
279
+ onRefuse: opts.onRefuse,
280
+ onAudit: opts.onAudit,
281
+ };
282
+
283
+ var active = [];
284
+ var skipped = [];
285
+ for (var i = 0; i < GUARDS.length; i += 1) {
286
+ var g = GUARDS[i];
287
+ if (Object.prototype.hasOwnProperty.call(exceptFor, g.NAME)) {
288
+ skipped.push({ name: g.NAME, reason: exceptFor[g.NAME].reason });
289
+ continue;
290
+ }
291
+ var merged = Object.assign({}, baseOpts);
292
+ if (Object.prototype.hasOwnProperty.call(override, g.NAME)) {
293
+ merged = Object.assign(merged, override[g.NAME]);
294
+ }
295
+ active.push({ guard: g, opts: merged });
296
+ }
297
+ return { active: active, skipped: skipped };
298
+ }
299
+
300
+ // _emitCreationAudit — fires once per gate creation, recording the full
301
+ // active + skipped roster so a security review can reconstruct what
302
+ // this deploy did and didn't defend against.
303
+ function _emitCreationAudit(opts, resolved) {
304
+ if (!opts.audit || typeof opts.audit.emit !== "function") return;
305
+ try {
306
+ opts.audit.emit({
307
+ event: "guardAll.gate.created",
308
+ outcome: "success",
309
+ metadata: {
310
+ profile: opts.profile || null,
311
+ compliancePosture: opts.compliancePosture || null,
312
+ mode: opts.mode || "enforce",
313
+ active: resolved.active.map(function (e) { return e.guard.NAME; }),
314
+ skipped: resolved.skipped,
315
+ },
316
+ });
317
+ } catch (_e) {
318
+ // best-effort audit emission; never fails the gate creation.
319
+ }
320
+ }
321
+
322
+ // ---- Public surface ----
323
+
324
+ function gate(opts) {
325
+ opts = opts || {};
326
+ var resolved = _resolveActiveGuards(opts);
327
+ _emitCreationAudit(opts, resolved);
328
+
329
+ var byMime = Object.create(null);
330
+ for (var i = 0; i < resolved.active.length; i += 1) {
331
+ var entry = resolved.active[i];
332
+ var entryGate = entry.guard.gate(entry.opts);
333
+ entry.guard.MIME_TYPES.forEach(function (m) {
334
+ byMime[m.toLowerCase()] = entryGate;
335
+ });
336
+ }
337
+ return gateContract.contentTypeMux(byMime, {
338
+ name: "guardAll:" + (opts.profile || opts.compliancePosture || "default"),
339
+ });
340
+ }
341
+
342
+ function byExtension(opts) {
343
+ opts = opts || {};
344
+ var resolved = _resolveActiveGuards(opts);
345
+ _emitCreationAudit(opts, resolved);
346
+
347
+ var map = Object.create(null);
348
+ for (var i = 0; i < resolved.active.length; i += 1) {
349
+ var entry = resolved.active[i];
350
+ var entryGate = entry.guard.gate(entry.opts);
351
+ entry.guard.EXTENSIONS.forEach(function (e) {
352
+ map[e.toLowerCase()] = entryGate;
353
+ });
354
+ }
355
+ return map;
356
+ }
357
+
358
+ function byContentType(opts) {
359
+ opts = opts || {};
360
+ var resolved = _resolveActiveGuards(opts);
361
+ _emitCreationAudit(opts, resolved);
362
+
363
+ var map = Object.create(null);
364
+ for (var i = 0; i < resolved.active.length; i += 1) {
365
+ var entry = resolved.active[i];
366
+ var entryGate = entry.guard.gate(entry.opts);
367
+ entry.guard.MIME_TYPES.forEach(function (m) {
368
+ map[m.toLowerCase()] = entryGate;
369
+ });
370
+ }
371
+ return map;
372
+ }
373
+
374
+ function list() {
375
+ return GUARDS.map(function (g) {
376
+ return {
377
+ name: g.NAME,
378
+ mimeTypes: g.MIME_TYPES.slice(),
379
+ extensions: g.EXTENSIONS.slice(),
380
+ profiles: Object.keys(g.PROFILES),
381
+ postures: Object.keys(g.COMPLIANCE_POSTURES),
382
+ };
383
+ });
384
+ }
385
+
386
+ // allGuards — every guard primitive in the family, registered AND
387
+ // standalone. Used by the adaptive integration harness to iterate
388
+ // the full family without hardcoding the list. Future guards added
389
+ // to either GUARDS or STANDALONE_GUARDS pick up automatically.
390
+ function allGuards() {
391
+ return GUARDS.concat(STANDALONE_GUARDS);
392
+ }
393
+
394
+ module.exports = {
395
+ gate: gate,
396
+ byExtension: byExtension,
397
+ byContentType: byContentType,
398
+ list: list,
399
+ allGuards: allGuards,
400
+ GUARDS: Object.freeze(GUARDS.slice()),
401
+ STANDALONE_GUARDS: Object.freeze(STANDALONE_GUARDS.slice()),
402
+ SHARED_PROFILES: SHARED_PROFILES,
403
+ SHARED_POSTURES: SHARED_POSTURES,
404
+ GuardAllError: GuardAllError,
405
+ };