@blamejs/core 0.7.4 → 0.7.18

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.
Files changed (180) hide show
  1. package/CHANGELOG.md +423 -395
  2. package/README.md +150 -149
  3. package/bin/blamejs.js +0 -0
  4. package/index.js +308 -284
  5. package/lib/api-key.js +660 -663
  6. package/lib/api-snapshot.js +338 -338
  7. package/lib/app-shutdown.js +385 -385
  8. package/lib/app.js +365 -365
  9. package/lib/archive.js +250 -250
  10. package/lib/atomic-file.js +544 -544
  11. package/lib/audit-chain.js +177 -177
  12. package/lib/audit-sign.js +344 -344
  13. package/lib/audit-tools.js +677 -677
  14. package/lib/audit.js +766 -766
  15. package/lib/auth/jwt.js +311 -311
  16. package/lib/auth/lockout.js +436 -436
  17. package/lib/auth/oauth.js +721 -721
  18. package/lib/auth/passkey.js +181 -181
  19. package/lib/auth/password.js +594 -594
  20. package/lib/backup/bundle.js +217 -217
  21. package/lib/backup/crypto.js +176 -176
  22. package/lib/backup/index.js +515 -515
  23. package/lib/backup/manifest.js +282 -282
  24. package/lib/break-glass.js +1338 -1338
  25. package/lib/bundler.js +441 -441
  26. package/lib/cache-redis.js +256 -256
  27. package/lib/cache.js +1206 -1206
  28. package/lib/canonical-json.js +115 -115
  29. package/lib/chain-writer.js +234 -234
  30. package/lib/cli-helpers.js +206 -206
  31. package/lib/cli.js +2334 -2334
  32. package/lib/cluster-provider-db.js +317 -317
  33. package/lib/cluster-storage.js +226 -226
  34. package/lib/cluster.js +703 -703
  35. package/lib/codepoint-class.js +196 -0
  36. package/lib/config-drift.js +301 -301
  37. package/lib/consent.js +222 -222
  38. package/lib/constants.js +191 -191
  39. package/lib/cookies.js +315 -315
  40. package/lib/credential-hash.js +322 -322
  41. package/lib/crypto.js +266 -266
  42. package/lib/csv.js +275 -286
  43. package/lib/db-declare-row-policy.js +267 -267
  44. package/lib/db-declare-view.js +420 -421
  45. package/lib/db-query.js +406 -406
  46. package/lib/db-schema.js +319 -319
  47. package/lib/db.js +1288 -1288
  48. package/lib/deprecate.js +222 -222
  49. package/lib/dev.js +335 -335
  50. package/lib/dual-control.js +473 -473
  51. package/lib/error-page.js +420 -420
  52. package/lib/external-db-migrate.js +441 -441
  53. package/lib/external-db.js +1061 -1061
  54. package/lib/file-type.js +273 -273
  55. package/lib/file-upload.js +213 -10
  56. package/lib/forms.js +422 -422
  57. package/lib/framework-error.js +293 -215
  58. package/lib/framework-schema.js +717 -717
  59. package/lib/gate-contract.js +971 -0
  60. package/lib/guard-all.js +405 -0
  61. package/lib/guard-archive.js +739 -0
  62. package/lib/guard-csv.js +816 -0
  63. package/lib/guard-email.js +744 -0
  64. package/lib/guard-filename.js +724 -0
  65. package/lib/guard-html.js +976 -0
  66. package/lib/guard-json.js +729 -0
  67. package/lib/guard-markdown.js +586 -0
  68. package/lib/guard-svg.js +976 -0
  69. package/lib/guard-xml.js +405 -0
  70. package/lib/guard-yaml.js +529 -0
  71. package/lib/handlers.js +350 -350
  72. package/lib/http-client-cookie-jar.js +508 -508
  73. package/lib/http-client.js +1195 -1195
  74. package/lib/i18n.js +878 -878
  75. package/lib/jobs.js +185 -185
  76. package/lib/log-stream-cloudwatch.js +369 -369
  77. package/lib/log-stream-local.js +146 -146
  78. package/lib/log-stream-otlp-grpc.js +410 -410
  79. package/lib/log-stream-otlp.js +286 -286
  80. package/lib/log-stream-syslog.js +302 -302
  81. package/lib/log-stream-webhook.js +199 -199
  82. package/lib/log-stream.js +330 -330
  83. package/lib/log.js +500 -500
  84. package/lib/mail-bounce.js +528 -528
  85. package/lib/mail-dkim.js +369 -362
  86. package/lib/mail.js +981 -962
  87. package/lib/metrics.js +683 -683
  88. package/lib/middleware/api-encrypt.js +936 -936
  89. package/lib/middleware/attach-user.js +157 -157
  90. package/lib/middleware/body-parser.js +1170 -1091
  91. package/lib/middleware/bot-guard.js +178 -178
  92. package/lib/middleware/compression.js +452 -452
  93. package/lib/middleware/cors.js +314 -314
  94. package/lib/middleware/csp-nonce.js +348 -348
  95. package/lib/middleware/csrf-protect.js +316 -316
  96. package/lib/middleware/db-role-for.js +264 -264
  97. package/lib/middleware/health.js +392 -392
  98. package/lib/middleware/index.js +79 -79
  99. package/lib/middleware/rate-limit.js +358 -358
  100. package/lib/middleware/request-id.js +61 -61
  101. package/lib/middleware/request-log.js +168 -168
  102. package/lib/middleware/require-auth.js +104 -104
  103. package/lib/middleware/security-headers.js +116 -116
  104. package/lib/middleware/sse.js +166 -166
  105. package/lib/migrations.js +383 -383
  106. package/lib/mtls-ca.js +518 -518
  107. package/lib/mtls-engine-default.js +481 -481
  108. package/lib/network-dns.js +632 -632
  109. package/lib/network-heartbeat.js +290 -290
  110. package/lib/network-nts.js +574 -574
  111. package/lib/network-proxy.js +265 -265
  112. package/lib/network-tls.js +328 -328
  113. package/lib/network.js +233 -233
  114. package/lib/notify.js +612 -612
  115. package/lib/ntp-check.js +229 -229
  116. package/lib/numeric-bounds.js +111 -91
  117. package/lib/object-store/azure-blob-bucket-ops.js +349 -349
  118. package/lib/object-store/azure-blob.js +488 -488
  119. package/lib/object-store/gcs-bucket-ops.js +351 -351
  120. package/lib/object-store/gcs.js +519 -519
  121. package/lib/object-store/http-put.js +153 -153
  122. package/lib/object-store/index.js +197 -197
  123. package/lib/object-store/sigv4-bucket-ops.js +1092 -1092
  124. package/lib/object-store/sigv4.js +903 -903
  125. package/lib/observability.js +151 -151
  126. package/lib/otel-export.js +269 -269
  127. package/lib/pagination.js +464 -464
  128. package/lib/parsers/index.js +80 -80
  129. package/lib/parsers/safe-env.js +642 -642
  130. package/lib/parsers/safe-ini.js +292 -292
  131. package/lib/parsers/safe-toml.js +784 -784
  132. package/lib/parsers/safe-xml.js +390 -390
  133. package/lib/parsers/safe-yaml.js +1015 -1015
  134. package/lib/permissions.js +708 -708
  135. package/lib/pqc-agent.js +87 -87
  136. package/lib/pqc-gate.js +279 -279
  137. package/lib/protobuf-encoder.js +190 -190
  138. package/lib/protocol-dispatcher.js +161 -161
  139. package/lib/pubsub-redis.js +167 -167
  140. package/lib/pubsub.js +429 -429
  141. package/lib/queue-local.js +476 -476
  142. package/lib/queue-redis.js +745 -745
  143. package/lib/queue-sqs.js +319 -319
  144. package/lib/queue.js +695 -695
  145. package/lib/redis-client.js +519 -519
  146. package/lib/request-helpers.js +340 -340
  147. package/lib/restore-bundle.js +237 -237
  148. package/lib/restore-rollback.js +259 -259
  149. package/lib/restore.js +409 -409
  150. package/lib/retry.js +376 -376
  151. package/lib/router.js +748 -748
  152. package/lib/safe-async.js +735 -735
  153. package/lib/safe-buffer.js +237 -237
  154. package/lib/safe-json.js +541 -541
  155. package/lib/safe-schema.js +1266 -1266
  156. package/lib/safe-url.js +159 -159
  157. package/lib/scheduler.js +706 -706
  158. package/lib/security-assert.js +373 -373
  159. package/lib/seeders.js +618 -618
  160. package/lib/session.js +478 -478
  161. package/lib/slug.js +269 -269
  162. package/lib/ssrf-guard.js +401 -401
  163. package/lib/static.js +184 -4
  164. package/lib/storage.js +471 -471
  165. package/lib/subject.js +281 -281
  166. package/lib/template.js +791 -791
  167. package/lib/testing.js +798 -798
  168. package/lib/time.js +310 -310
  169. package/lib/totp.js +302 -302
  170. package/lib/tracing.js +494 -494
  171. package/lib/uuid.js +132 -132
  172. package/lib/validate-opts.js +340 -319
  173. package/lib/vault/index.js +308 -308
  174. package/lib/vault/rotate.js +784 -784
  175. package/lib/vault/wrap.js +296 -296
  176. package/lib/vendor/noble-ciphers.cjs +9 -9
  177. package/lib/webhook.js +595 -595
  178. package/lib/websocket.js +1048 -1048
  179. package/package.json +77 -77
  180. package/sbom.cyclonedx.json +7 -7
package/lib/db-query.js CHANGED
@@ -1,406 +1,406 @@
1
- "use strict";
2
- /**
3
- * Chainable Query builder.
4
- *
5
- * Public surface (all methods sync — node:sqlite is sync):
6
- *
7
- * db.from('users') // → Query
8
- * .where({ status: 'active' }) // object form: AND of equalities
9
- * .where('createdAt', '>', '2026-01-01') // operator form: AND condition
10
- * .select(['_id', 'email']) // optional projection
11
- * .orderBy('createdAt', 'desc')
12
- * .limit(10).offset(20)
13
- * .all(); // → array of decrypted rows
14
- *
15
- * Terminal methods: first(), all(), count(),
16
- * insertOne(row), insertMany(rows),
17
- * updateOne(changes), updateMany(changes),
18
- * deleteOne(), deleteMany().
19
- *
20
- * Sealed-field semantics:
21
- * - On insert/update, sealed columns are vault.seal()'d and their derived
22
- * hashes computed automatically.
23
- * - On read, sealed columns are vault.unseal()'d before the row is returned.
24
- * - where() on a sealed column with a registered derived hash silently
25
- * translates to the derived hash column. Querying a sealed column WITHOUT
26
- * a derived hash throws (every encryption uses a fresh nonce — the lookup
27
- * would always return zero rows; failing loudly is safer).
28
- */
29
- var { Readable } = require("node:stream");
30
- var C = require("./constants");
31
- var cryptoField = require("./crypto-field");
32
- var { generateToken } = require("./crypto");
33
- var safeSql = require("./safe-sql");
34
-
35
- var ALLOWED_OPS = new Set(["=", "!=", "<>", "<", "<=", ">", ">=", "IS", "IS NOT", "LIKE", "IN"]);
36
-
37
- class Query {
38
- constructor(database, tableName) {
39
- // Identifier safety: tableName flows into SQL via interpolation
40
- // (parameter placeholders only bind values, not names). Validate at
41
- // construction so an attacker-controlled name with embedded `"` or
42
- // SQL keywords can't break out of the wrapping quotes downstream.
43
- if (typeof tableName !== "string") {
44
- throw new TypeError("Query: tableName must be a string, got " + typeof tableName);
45
- }
46
- // Cross-schema syntax: "schema.table". Two-part identifier only —
47
- // three-part (catalog.schema.table) is rejected. Both parts must
48
- // be valid SQL identifiers and contain no further dots.
49
- var schema = null;
50
- var table = tableName;
51
- if (tableName.indexOf(".") !== -1) {
52
- var parts = tableName.split(".");
53
- if (parts.length !== 2 || parts[0].length === 0 || parts[1].length === 0) {
54
- throw new Error("Query: schema-qualified tableName must be exactly " +
55
- "'schema.table' (got '" + tableName + "'). Three-part identifiers " +
56
- "(catalog.schema.table) and empty parts are not supported.");
57
- }
58
- schema = parts[0];
59
- table = parts[1];
60
- // Validate the schema identifier separately. allowReserved:true
61
- // because we always wrap in `"..."`.
62
- safeSql.validateIdentifier(schema, { allowReserved: true });
63
- }
64
- safeSql.validateIdentifier(table, { allowReserved: true });
65
-
66
- this._db = database;
67
- this._schema = schema;
68
- this._table = table;
69
- this._qualifiedKey = schema ? schema + "." + table : table;
70
- this._where = [];
71
- this._whereParams = [];
72
- this._select = null;
73
- this._orderBy = null;
74
- this._limit = null;
75
- this._offset = null;
76
- }
77
-
78
- // Quoted SQL form: `"schema"."table"` if schema-qualified, else `"table"`.
79
- _quotedTable() {
80
- return this._schema
81
- ? '"' + this._schema + '"."' + this._table + '"'
82
- : '"' + this._table + '"';
83
- }
84
-
85
- // ---- Chainable filters ----
86
-
87
- where(fieldOrObj, op, value) {
88
- if (fieldOrObj && typeof fieldOrObj === "object") {
89
- // Object form: { field: value, ... } — all AND'd as equalities
90
- for (var k in fieldOrObj) {
91
- this._addCondition(k, "=", fieldOrObj[k]);
92
- }
93
- return this;
94
- }
95
- if (arguments.length === 2) {
96
- // where('field', value) shorthand
97
- return this._addCondition(fieldOrObj, "=", op);
98
- }
99
- return this._addCondition(fieldOrObj, op, value);
100
- }
101
-
102
- _addCondition(field, op, value) {
103
- if (!ALLOWED_OPS.has(op)) {
104
- throw new Error("invalid where operator: " + op);
105
- }
106
- // Sealed-field translation: rewrite predicate to use derived hash if available
107
- if (this._isSealedField(field)) {
108
- var lookup = cryptoField.lookupHash(this._cryptoFieldKey(), field, value);
109
- if (!lookup) {
110
- throw new Error(
111
- "cannot query sealed column '" + this._cryptoFieldKey() + "." + field +
112
- "' without a derived hash. Declare derivedHashes: { <name>: { from: '" + field + "' } } " +
113
- "in the table's schema config."
114
- );
115
- }
116
- field = lookup.field;
117
- value = lookup.value;
118
- }
119
- cryptoField && _validateField(field);
120
- this._where.push('"' + field + '" ' + op + " ?");
121
- this._whereParams.push(value);
122
- return this;
123
- }
124
-
125
- _isSealedField(field) {
126
- var sealed = cryptoField.getSealedFields(this._cryptoFieldKey());
127
- return sealed.indexOf(field) !== -1;
128
- }
129
-
130
- // Sealed-field registry lookup key. Schema-qualified queries first
131
- // try the qualified name (`audit.users`) so an operator can register
132
- // per-schema sealed columns; falls back to the bare table when no
133
- // qualified registration exists. The fall-back lets the existing
134
- // table-name-only registrations keep working unchanged.
135
- _cryptoFieldKey() {
136
- if (!this._schema) return this._table;
137
- if (cryptoField.getSealedFields(this._qualifiedKey).length > 0) {
138
- return this._qualifiedKey;
139
- }
140
- return this._table;
141
- }
142
-
143
- // whereRaw — append a parenthesized raw SQL fragment with positional
144
- // placeholders and the parameter values that fill them. Composes with
145
- // .where() (AND-joined via the same `_where` array). The fragment
146
- // must NOT contain operator-supplied SQL — it's caller-controlled
147
- // text used to build expressions the chainable .where() can't express
148
- // (compound OR, row-value comparison for cursor pagination, etc.).
149
- // Placeholder count must match params.length.
150
- whereRaw(sql, params) {
151
- if (typeof sql !== "string" || sql.length === 0) {
152
- throw new Error("whereRaw: sql must be a non-empty string");
153
- }
154
- var p = Array.isArray(params) ? params : (params == null ? [] : [params]);
155
- var holders = (sql.match(/\?/g) || []).length;
156
- if (holders !== p.length) {
157
- throw new Error("whereRaw: " + holders + " placeholder(s) in sql but " +
158
- p.length + " param(s) supplied");
159
- }
160
- this._where.push("(" + sql + ")");
161
- for (var i = 0; i < p.length; i++) this._whereParams.push(p[i]);
162
- return this;
163
- }
164
-
165
- select(columns) {
166
- if (!Array.isArray(columns)) {
167
- throw new Error("select() expects an array of column names");
168
- }
169
- columns.forEach(_validateField);
170
- this._select = columns.slice();
171
- return this;
172
- }
173
-
174
- orderBy(field, direction) {
175
- _validateField(field);
176
- direction = (direction || "asc").toLowerCase();
177
- if (direction !== "asc" && direction !== "desc") {
178
- throw new Error("orderBy direction must be 'asc' or 'desc'");
179
- }
180
- var entry = { field: field, direction: direction.toUpperCase() };
181
- if (this._orderBy === null) {
182
- // First call — keep the back-compat single-object shape so any
183
- // legacy reader that does `query._orderBy.field` keeps working.
184
- this._orderBy = entry;
185
- return this;
186
- }
187
- // Second-or-later call — promote to an array. Multi-column ORDER BY
188
- // is the keyset-pagination tiebreaker pattern: ORDER BY createdAt
189
- // DESC, _id DESC means same-second rows still have a total order.
190
- if (Array.isArray(this._orderBy)) {
191
- this._orderBy.push(entry);
192
- } else {
193
- this._orderBy = [this._orderBy, entry];
194
- }
195
- return this;
196
- }
197
-
198
- limit(n) {
199
- if (!Number.isInteger(n) || n < 0) throw new Error("limit must be a non-negative integer");
200
- this._limit = n;
201
- return this;
202
- }
203
-
204
- offset(n) {
205
- if (!Number.isInteger(n) || n < 0) throw new Error("offset must be a non-negative integer");
206
- this._offset = n;
207
- return this;
208
- }
209
-
210
- // ---- Build SELECT components ----
211
-
212
- _whereClause() {
213
- return this._where.length === 0 ? "" : " WHERE " + this._where.join(" AND ");
214
- }
215
-
216
- _orderLimitOffset() {
217
- var s = "";
218
- if (this._orderBy) {
219
- var entries = Array.isArray(this._orderBy) ? this._orderBy : [this._orderBy];
220
- var fragments = [];
221
- for (var i = 0; i < entries.length; i++) {
222
- fragments.push('"' + entries[i].field + '" ' + entries[i].direction);
223
- }
224
- s += " ORDER BY " + fragments.join(", ");
225
- }
226
- if (this._limit !== null) s += " LIMIT " + this._limit;
227
- if (this._offset !== null) s += " OFFSET " + this._offset;
228
- return s;
229
- }
230
-
231
- _projection() {
232
- if (!this._select) return "*";
233
- return this._select.map(function (c) { return '"' + c + '"'; }).join(", ");
234
- }
235
-
236
- // ---- Terminal methods (sync) ----
237
-
238
- first() {
239
- var sql = "SELECT " + this._projection() + " FROM " + this._quotedTable() +
240
- this._whereClause() + this._orderLimitOffset() + " LIMIT 1";
241
- var stmt = this._db.prepare(sql);
242
- var row = stmt.get.apply(stmt, this._whereParams);
243
- return row ? cryptoField.unsealRow(this._cryptoFieldKey(), row) : null;
244
- }
245
-
246
- all() {
247
- var sql = "SELECT " + this._projection() + " FROM " + this._quotedTable() +
248
- this._whereClause() + this._orderLimitOffset();
249
- var stmt = this._db.prepare(sql);
250
- var rows = stmt.all.apply(stmt, this._whereParams);
251
- var out = new Array(rows.length);
252
- var key = this._cryptoFieldKey();
253
- for (var i = 0; i < rows.length; i++) {
254
- out[i] = cryptoField.unsealRow(key, rows[i]);
255
- }
256
- return out;
257
- }
258
-
259
- // Streaming counterpart to all(). Each row is auto-unsealed against
260
- // the bound table's sealedFields registration before it lands in the
261
- // operator's pipeline. For large result sets (audit exports, backup
262
- // table dumps) this avoids materializing the full rowset in memory.
263
- stream() {
264
- var sql = "SELECT " + this._projection() + " FROM " + this._quotedTable() +
265
- this._whereClause() + this._orderLimitOffset();
266
- var stmt = this._db.prepare(sql);
267
- var key = this._cryptoFieldKey();
268
- var iter;
269
- try { iter = stmt.iterate.apply(stmt, this._whereParams); }
270
- catch (e) {
271
- var r = new Readable({ objectMode: true, read: function () {} });
272
- setImmediate(function () { r.destroy(e); });
273
- return r;
274
- }
275
- return new Readable({
276
- objectMode: true,
277
- read: function () {
278
- try {
279
- var step = iter.next();
280
- if (step.done) { this.push(null); return; }
281
- this.push(cryptoField.unsealRow(key, step.value));
282
- } catch (e) {
283
- this.destroy(e);
284
- }
285
- },
286
- });
287
- }
288
-
289
- count() {
290
- var sql = "SELECT COUNT(*) AS n FROM " + this._quotedTable() + this._whereClause();
291
- var stmt = this._db.prepare(sql);
292
- var row = stmt.get.apply(stmt, this._whereParams);
293
- return row ? row.n : 0;
294
- }
295
-
296
- insertOne(row) {
297
- if (!row || typeof row !== "object") {
298
- throw new Error("insertOne requires a row object");
299
- }
300
- var withId = Object.assign({}, row);
301
- if (withId._id === undefined || withId._id === null) {
302
- withId._id = generateToken(C.BYTES.bytes(16));
303
- }
304
- var sealed = cryptoField.sealRow(this._cryptoFieldKey(), withId);
305
- var cols = Object.keys(sealed);
306
- var placeholders = cols.map(function () { return "?"; }).join(", ");
307
- var quotedCols = cols.map(function (c) { return '"' + c + '"'; }).join(", ");
308
- var values = cols.map(function (c) { return sealed[c]; });
309
- var sql = "INSERT INTO " + this._quotedTable() + " (" + quotedCols + ") VALUES (" + placeholders + ")";
310
- var insertStmt = this._db.prepare(sql);
311
- insertStmt.run.apply(insertStmt, values);
312
- // Return the original row with _id filled in (plaintext, never sealed)
313
- return Object.assign({}, withId);
314
- }
315
-
316
- insertMany(rows) {
317
- if (!Array.isArray(rows)) throw new Error("insertMany expects an array");
318
- var out = new Array(rows.length);
319
- for (var i = 0; i < rows.length; i++) {
320
- out[i] = this.insertOne(rows[i]);
321
- }
322
- return out;
323
- }
324
-
325
- updateOne(changes) {
326
- var n = this._update(changes, true);
327
- return n > 0;
328
- }
329
-
330
- updateMany(changes) {
331
- return this._update(changes, false);
332
- }
333
-
334
- _update(changes, single) {
335
- if (!changes || typeof changes !== "object") {
336
- throw new Error("update requires a changes object");
337
- }
338
- if (this._where.length === 0) {
339
- throw new Error("refusing unconditional update — call where(...) first");
340
- }
341
- var sealed = cryptoField.sealRow(this._cryptoFieldKey(), changes);
342
- var setKeys = Object.keys(sealed);
343
- if (setKeys.length === 0) {
344
- throw new Error("update changes object is empty");
345
- }
346
- setKeys.forEach(_validateField);
347
- var setClause = setKeys.map(function (k) { return '"' + k + '" = ?'; }).join(", ");
348
- var setValues = setKeys.map(function (k) { return sealed[k]; });
349
-
350
- var whereSql = this._where.join(" AND ");
351
- var limit = single ? " LIMIT 1" : "";
352
- // SQLite supports LIMIT on UPDATE only when compiled with SQLITE_ENABLE_UPDATE_DELETE_LIMIT.
353
- // node:sqlite ships without that flag — emulate single-row with a sub-select on rowid.
354
- var sql;
355
- var qt = this._quotedTable();
356
- if (single) {
357
- sql = "UPDATE " + qt + " SET " + setClause +
358
- " WHERE rowid = (SELECT rowid FROM " + qt + " WHERE " + whereSql + " LIMIT 1)";
359
- } else {
360
- sql = "UPDATE " + qt + " SET " + setClause + " WHERE " + whereSql + limit;
361
- }
362
- var allParams = setValues.concat(this._whereParams);
363
- var updStmt = this._db.prepare(sql);
364
- var info = updStmt.run.apply(updStmt, allParams);
365
- return info.changes;
366
- }
367
-
368
- deleteOne() {
369
- return this._delete(true) > 0;
370
- }
371
-
372
- deleteMany() {
373
- return this._delete(false);
374
- }
375
-
376
- _delete(single) {
377
- if (this._where.length === 0) {
378
- throw new Error("refusing unconditional delete — call where(...) first");
379
- }
380
- var whereSql = this._where.join(" AND ");
381
- var sql;
382
- var qt = this._quotedTable();
383
- if (single) {
384
- sql = "DELETE FROM " + qt +
385
- " WHERE rowid = (SELECT rowid FROM " + qt + " WHERE " + whereSql + " LIMIT 1)";
386
- } else {
387
- sql = "DELETE FROM " + qt + " WHERE " + whereSql;
388
- }
389
- var delStmt = this._db.prepare(sql);
390
- var info = delStmt.run.apply(delStmt, this._whereParams);
391
- return info.changes;
392
- }
393
- }
394
-
395
- function _validateField(field) {
396
- if (typeof field !== "string" ||
397
- field.length === 0 ||
398
- field.length > safeSql.MAX_IDENTIFIER_LENGTH ||
399
- !safeSql.DEFAULT_IDENTIFIER_RE.test(field)) {
400
- throw new Error("invalid field name: '" + field +
401
- "' (must match " + safeSql.DEFAULT_IDENTIFIER_RE + ", length 1.." +
402
- safeSql.MAX_IDENTIFIER_LENGTH + ")");
403
- }
404
- }
405
-
406
- module.exports = { Query: Query };
1
+ "use strict";
2
+ /**
3
+ * Chainable Query builder.
4
+ *
5
+ * Public surface (all methods sync — node:sqlite is sync):
6
+ *
7
+ * db.from('users') // → Query
8
+ * .where({ status: 'active' }) // object form: AND of equalities
9
+ * .where('createdAt', '>', '2026-01-01') // operator form: AND condition
10
+ * .select(['_id', 'email']) // optional projection
11
+ * .orderBy('createdAt', 'desc')
12
+ * .limit(10).offset(20)
13
+ * .all(); // → array of decrypted rows
14
+ *
15
+ * Terminal methods: first(), all(), count(),
16
+ * insertOne(row), insertMany(rows),
17
+ * updateOne(changes), updateMany(changes),
18
+ * deleteOne(), deleteMany().
19
+ *
20
+ * Sealed-field semantics:
21
+ * - On insert/update, sealed columns are vault.seal()'d and their derived
22
+ * hashes computed automatically.
23
+ * - On read, sealed columns are vault.unseal()'d before the row is returned.
24
+ * - where() on a sealed column with a registered derived hash silently
25
+ * translates to the derived hash column. Querying a sealed column WITHOUT
26
+ * a derived hash throws (every encryption uses a fresh nonce — the lookup
27
+ * would always return zero rows; failing loudly is safer).
28
+ */
29
+ var { Readable } = require("node:stream");
30
+ var C = require("./constants");
31
+ var cryptoField = require("./crypto-field");
32
+ var { generateToken } = require("./crypto");
33
+ var safeSql = require("./safe-sql");
34
+
35
+ var ALLOWED_OPS = new Set(["=", "!=", "<>", "<", "<=", ">", ">=", "IS", "IS NOT", "LIKE", "IN"]);
36
+
37
+ class Query {
38
+ constructor(database, tableName) {
39
+ // Identifier safety: tableName flows into SQL via interpolation
40
+ // (parameter placeholders only bind values, not names). Validate at
41
+ // construction so an attacker-controlled name with embedded `"` or
42
+ // SQL keywords can't break out of the wrapping quotes downstream.
43
+ if (typeof tableName !== "string") {
44
+ throw new TypeError("Query: tableName must be a string, got " + typeof tableName);
45
+ }
46
+ // Cross-schema syntax: "schema.table". Two-part identifier only —
47
+ // three-part (catalog.schema.table) is rejected. Both parts must
48
+ // be valid SQL identifiers and contain no further dots.
49
+ var schema = null;
50
+ var table = tableName;
51
+ if (tableName.indexOf(".") !== -1) {
52
+ var parts = tableName.split(".");
53
+ if (parts.length !== 2 || parts[0].length === 0 || parts[1].length === 0) {
54
+ throw new Error("Query: schema-qualified tableName must be exactly " +
55
+ "'schema.table' (got '" + tableName + "'). Three-part identifiers " +
56
+ "(catalog.schema.table) and empty parts are not supported.");
57
+ }
58
+ schema = parts[0];
59
+ table = parts[1];
60
+ // Validate the schema identifier separately. allowReserved:true
61
+ // because we always wrap in `"..."`.
62
+ safeSql.validateIdentifier(schema, { allowReserved: true });
63
+ }
64
+ safeSql.validateIdentifier(table, { allowReserved: true });
65
+
66
+ this._db = database;
67
+ this._schema = schema;
68
+ this._table = table;
69
+ this._qualifiedKey = schema ? schema + "." + table : table;
70
+ this._where = [];
71
+ this._whereParams = [];
72
+ this._select = null;
73
+ this._orderBy = null;
74
+ this._limit = null;
75
+ this._offset = null;
76
+ }
77
+
78
+ // Quoted SQL form: `"schema"."table"` if schema-qualified, else `"table"`.
79
+ _quotedTable() {
80
+ return this._schema
81
+ ? '"' + this._schema + '"."' + this._table + '"'
82
+ : '"' + this._table + '"';
83
+ }
84
+
85
+ // ---- Chainable filters ----
86
+
87
+ where(fieldOrObj, op, value) {
88
+ if (fieldOrObj && typeof fieldOrObj === "object") {
89
+ // Object form: { field: value, ... } — all AND'd as equalities
90
+ for (var k in fieldOrObj) {
91
+ this._addCondition(k, "=", fieldOrObj[k]);
92
+ }
93
+ return this;
94
+ }
95
+ if (arguments.length === 2) {
96
+ // where('field', value) shorthand
97
+ return this._addCondition(fieldOrObj, "=", op);
98
+ }
99
+ return this._addCondition(fieldOrObj, op, value);
100
+ }
101
+
102
+ _addCondition(field, op, value) {
103
+ if (!ALLOWED_OPS.has(op)) {
104
+ throw new Error("invalid where operator: " + op);
105
+ }
106
+ // Sealed-field translation: rewrite predicate to use derived hash if available
107
+ if (this._isSealedField(field)) {
108
+ var lookup = cryptoField.lookupHash(this._cryptoFieldKey(), field, value);
109
+ if (!lookup) {
110
+ throw new Error(
111
+ "cannot query sealed column '" + this._cryptoFieldKey() + "." + field +
112
+ "' without a derived hash. Declare derivedHashes: { <name>: { from: '" + field + "' } } " +
113
+ "in the table's schema config."
114
+ );
115
+ }
116
+ field = lookup.field;
117
+ value = lookup.value;
118
+ }
119
+ cryptoField && _validateField(field);
120
+ this._where.push('"' + field + '" ' + op + " ?");
121
+ this._whereParams.push(value);
122
+ return this;
123
+ }
124
+
125
+ _isSealedField(field) {
126
+ var sealed = cryptoField.getSealedFields(this._cryptoFieldKey());
127
+ return sealed.indexOf(field) !== -1;
128
+ }
129
+
130
+ // Sealed-field registry lookup key. Schema-qualified queries first
131
+ // try the qualified name (`audit.users`) so an operator can register
132
+ // per-schema sealed columns; falls back to the bare table when no
133
+ // qualified registration exists. The fall-back lets the existing
134
+ // table-name-only registrations keep working unchanged.
135
+ _cryptoFieldKey() {
136
+ if (!this._schema) return this._table;
137
+ if (cryptoField.getSealedFields(this._qualifiedKey).length > 0) {
138
+ return this._qualifiedKey;
139
+ }
140
+ return this._table;
141
+ }
142
+
143
+ // whereRaw — append a parenthesized raw SQL fragment with positional
144
+ // placeholders and the parameter values that fill them. Composes with
145
+ // .where() (AND-joined via the same `_where` array). The fragment
146
+ // must NOT contain operator-supplied SQL — it's caller-controlled
147
+ // text used to build expressions the chainable .where() can't express
148
+ // (compound OR, row-value comparison for cursor pagination, etc.).
149
+ // Placeholder count must match params.length.
150
+ whereRaw(sql, params) {
151
+ if (typeof sql !== "string" || sql.length === 0) {
152
+ throw new Error("whereRaw: sql must be a non-empty string");
153
+ }
154
+ var p = Array.isArray(params) ? params : (params == null ? [] : [params]);
155
+ var holders = (sql.match(/\?/g) || []).length;
156
+ if (holders !== p.length) {
157
+ throw new Error("whereRaw: " + holders + " placeholder(s) in sql but " +
158
+ p.length + " param(s) supplied");
159
+ }
160
+ this._where.push("(" + sql + ")");
161
+ for (var i = 0; i < p.length; i++) this._whereParams.push(p[i]);
162
+ return this;
163
+ }
164
+
165
+ select(columns) {
166
+ if (!Array.isArray(columns)) {
167
+ throw new Error("select() expects an array of column names");
168
+ }
169
+ columns.forEach(_validateField);
170
+ this._select = columns.slice();
171
+ return this;
172
+ }
173
+
174
+ orderBy(field, direction) {
175
+ _validateField(field);
176
+ direction = (direction || "asc").toLowerCase();
177
+ if (direction !== "asc" && direction !== "desc") {
178
+ throw new Error("orderBy direction must be 'asc' or 'desc'");
179
+ }
180
+ var entry = { field: field, direction: direction.toUpperCase() };
181
+ if (this._orderBy === null) {
182
+ // First call — keep the back-compat single-object shape so any
183
+ // legacy reader that does `query._orderBy.field` keeps working.
184
+ this._orderBy = entry;
185
+ return this;
186
+ }
187
+ // Second-or-later call — promote to an array. Multi-column ORDER BY
188
+ // is the keyset-pagination tiebreaker pattern: ORDER BY createdAt
189
+ // DESC, _id DESC means same-second rows still have a total order.
190
+ if (Array.isArray(this._orderBy)) {
191
+ this._orderBy.push(entry);
192
+ } else {
193
+ this._orderBy = [this._orderBy, entry];
194
+ }
195
+ return this;
196
+ }
197
+
198
+ limit(n) {
199
+ if (!Number.isInteger(n) || n < 0) throw new Error("limit must be a non-negative integer");
200
+ this._limit = n;
201
+ return this;
202
+ }
203
+
204
+ offset(n) {
205
+ if (!Number.isInteger(n) || n < 0) throw new Error("offset must be a non-negative integer");
206
+ this._offset = n;
207
+ return this;
208
+ }
209
+
210
+ // ---- Build SELECT components ----
211
+
212
+ _whereClause() {
213
+ return this._where.length === 0 ? "" : " WHERE " + this._where.join(" AND ");
214
+ }
215
+
216
+ _orderLimitOffset() {
217
+ var s = "";
218
+ if (this._orderBy) {
219
+ var entries = Array.isArray(this._orderBy) ? this._orderBy : [this._orderBy];
220
+ var fragments = [];
221
+ for (var i = 0; i < entries.length; i++) {
222
+ fragments.push('"' + entries[i].field + '" ' + entries[i].direction);
223
+ }
224
+ s += " ORDER BY " + fragments.join(", ");
225
+ }
226
+ if (this._limit !== null) s += " LIMIT " + this._limit;
227
+ if (this._offset !== null) s += " OFFSET " + this._offset;
228
+ return s;
229
+ }
230
+
231
+ _projection() {
232
+ if (!this._select) return "*";
233
+ return this._select.map(function (c) { return '"' + c + '"'; }).join(", ");
234
+ }
235
+
236
+ // ---- Terminal methods (sync) ----
237
+
238
+ first() {
239
+ var sql = "SELECT " + this._projection() + " FROM " + this._quotedTable() +
240
+ this._whereClause() + this._orderLimitOffset() + " LIMIT 1";
241
+ var stmt = this._db.prepare(sql);
242
+ var row = stmt.get.apply(stmt, this._whereParams);
243
+ return row ? cryptoField.unsealRow(this._cryptoFieldKey(), row) : null;
244
+ }
245
+
246
+ all() {
247
+ var sql = "SELECT " + this._projection() + " FROM " + this._quotedTable() +
248
+ this._whereClause() + this._orderLimitOffset();
249
+ var stmt = this._db.prepare(sql);
250
+ var rows = stmt.all.apply(stmt, this._whereParams);
251
+ var out = new Array(rows.length);
252
+ var key = this._cryptoFieldKey();
253
+ for (var i = 0; i < rows.length; i++) {
254
+ out[i] = cryptoField.unsealRow(key, rows[i]);
255
+ }
256
+ return out;
257
+ }
258
+
259
+ // Streaming counterpart to all(). Each row is auto-unsealed against
260
+ // the bound table's sealedFields registration before it lands in the
261
+ // operator's pipeline. For large result sets (audit exports, backup
262
+ // table dumps) this avoids materializing the full rowset in memory.
263
+ stream() {
264
+ var sql = "SELECT " + this._projection() + " FROM " + this._quotedTable() +
265
+ this._whereClause() + this._orderLimitOffset();
266
+ var stmt = this._db.prepare(sql);
267
+ var key = this._cryptoFieldKey();
268
+ var iter;
269
+ try { iter = stmt.iterate.apply(stmt, this._whereParams); }
270
+ catch (e) {
271
+ var r = new Readable({ objectMode: true, read: function () {} });
272
+ setImmediate(function () { r.destroy(e); });
273
+ return r;
274
+ }
275
+ return new Readable({
276
+ objectMode: true,
277
+ read: function () {
278
+ try {
279
+ var step = iter.next();
280
+ if (step.done) { this.push(null); return; }
281
+ this.push(cryptoField.unsealRow(key, step.value));
282
+ } catch (e) {
283
+ this.destroy(e);
284
+ }
285
+ },
286
+ });
287
+ }
288
+
289
+ count() {
290
+ var sql = "SELECT COUNT(*) AS n FROM " + this._quotedTable() + this._whereClause();
291
+ var stmt = this._db.prepare(sql);
292
+ var row = stmt.get.apply(stmt, this._whereParams);
293
+ return row ? row.n : 0;
294
+ }
295
+
296
+ insertOne(row) {
297
+ if (!row || typeof row !== "object") {
298
+ throw new Error("insertOne requires a row object");
299
+ }
300
+ var withId = Object.assign({}, row);
301
+ if (withId._id === undefined || withId._id === null) {
302
+ withId._id = generateToken(C.BYTES.bytes(16));
303
+ }
304
+ var sealed = cryptoField.sealRow(this._cryptoFieldKey(), withId);
305
+ var cols = Object.keys(sealed);
306
+ var placeholders = cols.map(function () { return "?"; }).join(", ");
307
+ var quotedCols = cols.map(function (c) { return '"' + c + '"'; }).join(", ");
308
+ var values = cols.map(function (c) { return sealed[c]; });
309
+ var sql = "INSERT INTO " + this._quotedTable() + " (" + quotedCols + ") VALUES (" + placeholders + ")";
310
+ var insertStmt = this._db.prepare(sql);
311
+ insertStmt.run.apply(insertStmt, values);
312
+ // Return the original row with _id filled in (plaintext, never sealed)
313
+ return Object.assign({}, withId);
314
+ }
315
+
316
+ insertMany(rows) {
317
+ if (!Array.isArray(rows)) throw new Error("insertMany expects an array");
318
+ var out = new Array(rows.length);
319
+ for (var i = 0; i < rows.length; i++) {
320
+ out[i] = this.insertOne(rows[i]);
321
+ }
322
+ return out;
323
+ }
324
+
325
+ updateOne(changes) {
326
+ var n = this._update(changes, true);
327
+ return n > 0;
328
+ }
329
+
330
+ updateMany(changes) {
331
+ return this._update(changes, false);
332
+ }
333
+
334
+ _update(changes, single) {
335
+ if (!changes || typeof changes !== "object") {
336
+ throw new Error("update requires a changes object");
337
+ }
338
+ if (this._where.length === 0) {
339
+ throw new Error("refusing unconditional update — call where(...) first");
340
+ }
341
+ var sealed = cryptoField.sealRow(this._cryptoFieldKey(), changes);
342
+ var setKeys = Object.keys(sealed);
343
+ if (setKeys.length === 0) {
344
+ throw new Error("update changes object is empty");
345
+ }
346
+ setKeys.forEach(_validateField);
347
+ var setClause = setKeys.map(function (k) { return '"' + k + '" = ?'; }).join(", ");
348
+ var setValues = setKeys.map(function (k) { return sealed[k]; });
349
+
350
+ var whereSql = this._where.join(" AND ");
351
+ var limit = single ? " LIMIT 1" : "";
352
+ // SQLite supports LIMIT on UPDATE only when compiled with SQLITE_ENABLE_UPDATE_DELETE_LIMIT.
353
+ // node:sqlite ships without that flag — emulate single-row with a sub-select on rowid.
354
+ var sql;
355
+ var qt = this._quotedTable();
356
+ if (single) {
357
+ sql = "UPDATE " + qt + " SET " + setClause +
358
+ " WHERE rowid = (SELECT rowid FROM " + qt + " WHERE " + whereSql + " LIMIT 1)";
359
+ } else {
360
+ sql = "UPDATE " + qt + " SET " + setClause + " WHERE " + whereSql + limit;
361
+ }
362
+ var allParams = setValues.concat(this._whereParams);
363
+ var updStmt = this._db.prepare(sql);
364
+ var info = updStmt.run.apply(updStmt, allParams);
365
+ return info.changes;
366
+ }
367
+
368
+ deleteOne() {
369
+ return this._delete(true) > 0;
370
+ }
371
+
372
+ deleteMany() {
373
+ return this._delete(false);
374
+ }
375
+
376
+ _delete(single) {
377
+ if (this._where.length === 0) {
378
+ throw new Error("refusing unconditional delete — call where(...) first");
379
+ }
380
+ var whereSql = this._where.join(" AND ");
381
+ var sql;
382
+ var qt = this._quotedTable();
383
+ if (single) {
384
+ sql = "DELETE FROM " + qt +
385
+ " WHERE rowid = (SELECT rowid FROM " + qt + " WHERE " + whereSql + " LIMIT 1)";
386
+ } else {
387
+ sql = "DELETE FROM " + qt + " WHERE " + whereSql;
388
+ }
389
+ var delStmt = this._db.prepare(sql);
390
+ var info = delStmt.run.apply(delStmt, this._whereParams);
391
+ return info.changes;
392
+ }
393
+ }
394
+
395
+ function _validateField(field) {
396
+ if (typeof field !== "string" ||
397
+ field.length === 0 ||
398
+ field.length > safeSql.MAX_IDENTIFIER_LENGTH ||
399
+ !safeSql.DEFAULT_IDENTIFIER_RE.test(field)) {
400
+ throw new Error("invalid field name: '" + field +
401
+ "' (must match " + safeSql.DEFAULT_IDENTIFIER_RE + ", length 1.." +
402
+ safeSql.MAX_IDENTIFIER_LENGTH + ")");
403
+ }
404
+ }
405
+
406
+ module.exports = { Query: Query };