@rebasepro/server-postgres 0.10.1-canary.b1e3dbf → 0.10.1-canary.d8d45b2
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.
- package/dist/chunk-DSJWtz9O.js +40 -0
- package/dist/ensure-collection-tables-CNlIONzj.js +304 -0
- package/dist/ensure-collection-tables-CNlIONzj.js.map +1 -0
- package/dist/index.es.js +166 -4536
- package/dist/index.es.js.map +1 -1
- package/dist/schema/ensure-collection-tables.d.ts +79 -0
- package/dist/schema/generate-postgres-ddl-logic.d.ts +4 -1
- package/dist/src-B0v4IKaI.js +329 -0
- package/dist/src-B0v4IKaI.js.map +1 -0
- package/dist/src-DmsRg8MR.js +4056 -0
- package/dist/src-DmsRg8MR.js.map +1 -0
- package/package.json +6 -6
- package/src/PostgresBootstrapper.ts +40 -0
- package/src/schema/ensure-collection-tables.test.ts +156 -0
- package/src/schema/ensure-collection-tables.ts +297 -0
- package/src/schema/generate-postgres-ddl-logic.ts +3 -3
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Bringing a database up to date with a bundle's collections, additively.
|
|
3
|
+
*
|
|
4
|
+
* ## Why this exists
|
|
5
|
+
*
|
|
6
|
+
* A managed runtime boots someone else's compiled project against a database it
|
|
7
|
+
* has never seen. Auth tables are ensured at boot already, but collection tables
|
|
8
|
+
* were not created by anything: the platform ran the app and every `/api/data/*`
|
|
9
|
+
* request answered 500 on a missing relation. `rebase db push` cannot help — it
|
|
10
|
+
* is an Atlas-driven CLI command, and the runtime image ships no CLI.
|
|
11
|
+
*
|
|
12
|
+
* ## Why additive-only, forever
|
|
13
|
+
*
|
|
14
|
+
* This runs unattended, against a database with customers' data in it, with no
|
|
15
|
+
* human reading a diff. So it may only ever do things that cannot lose data:
|
|
16
|
+
* create a missing table, add a missing column, create a missing enum type.
|
|
17
|
+
*
|
|
18
|
+
* It will **never** drop a table or a column, narrow a type, or alter a
|
|
19
|
+
* constraint. A removed field leaves its column behind; a renamed field looks
|
|
20
|
+
* like an addition and the old column stays. That is the correct trade for an
|
|
21
|
+
* automated path — the alternative is an unattended process that can silently
|
|
22
|
+
* destroy a column, which is precisely the failure `db push` was hardened
|
|
23
|
+
* against. Destructive changes stay a deliberate, human-reviewed migration.
|
|
24
|
+
*
|
|
25
|
+
* Because of that, this is safe to run on every boot, and re-running it is a
|
|
26
|
+
* no-op.
|
|
27
|
+
*/
|
|
28
|
+
import { type CollectionConfig } from "@rebasepro/types";
|
|
29
|
+
/**
|
|
30
|
+
* The subset of a database handle this needs: run a statement, get rows back.
|
|
31
|
+
*
|
|
32
|
+
* Deliberately parameterless. Everything here is DDL or catalogue reads keyed by
|
|
33
|
+
* schema name, and schema names are identifiers — they cannot be bound as
|
|
34
|
+
* parameters anyway. They are validated against {@link SAFE_IDENTIFIER} before
|
|
35
|
+
* they reach a statement, so a config that somehow carried a quote is refused
|
|
36
|
+
* rather than concatenated.
|
|
37
|
+
*/
|
|
38
|
+
export interface Queryable {
|
|
39
|
+
query<T = unknown>(sql: string): Promise<{
|
|
40
|
+
rows: T[];
|
|
41
|
+
}>;
|
|
42
|
+
}
|
|
43
|
+
/** What the database currently has, as the planner needs it. */
|
|
44
|
+
export interface ExistingSchema {
|
|
45
|
+
/** `schema.table` → set of column names. */
|
|
46
|
+
tables: Map<string, Set<string>>;
|
|
47
|
+
/** `schema.typename` of every enum type that already exists. */
|
|
48
|
+
enums: Set<string>;
|
|
49
|
+
}
|
|
50
|
+
export interface EnsureAction {
|
|
51
|
+
kind: "create-enum" | "create-table" | "add-column";
|
|
52
|
+
/** Qualified target, for logging: `public.posts` or `public.posts.title`. */
|
|
53
|
+
target: string;
|
|
54
|
+
sql: string;
|
|
55
|
+
}
|
|
56
|
+
export interface EnsurePlan {
|
|
57
|
+
actions: EnsureAction[];
|
|
58
|
+
/** Every statement, in dependency order. Empty when the schema is current. */
|
|
59
|
+
statements: string[];
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Decide what to add. Pure — the caller supplies what exists and runs the result.
|
|
63
|
+
*
|
|
64
|
+
* Ordering matters and is deliberate: enum types before the tables and columns
|
|
65
|
+
* that reference them, tables before the columns added to other tables (a new
|
|
66
|
+
* table may be the target of a relation), and nothing is emitted twice.
|
|
67
|
+
*/
|
|
68
|
+
export declare function planCollectionSchemaEnsure(collections: CollectionConfig[], existing: ExistingSchema): EnsurePlan;
|
|
69
|
+
/** Read what the database has, for the schemas the collections live in. */
|
|
70
|
+
export declare function readExistingSchema(client: Queryable, schemas: string[]): Promise<ExistingSchema>;
|
|
71
|
+
/**
|
|
72
|
+
* Bring the database up to date. Returns what it did.
|
|
73
|
+
*
|
|
74
|
+
* Each statement runs on its own rather than in one transaction: they are all
|
|
75
|
+
* independently safe and idempotent, and a single failure (an enum label that
|
|
76
|
+
* cannot be added, say) should not roll back the tables that were created fine.
|
|
77
|
+
* The error is surfaced with the statement that caused it.
|
|
78
|
+
*/
|
|
79
|
+
export declare function ensureCollectionTables(client: Queryable, collections: CollectionConfig[], log?: (message: string) => void): Promise<EnsurePlan>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import { CollectionConfig } from "@rebasepro/types";
|
|
1
|
+
import { CollectionConfig, Property } from "@rebasepro/types";
|
|
2
|
+
export declare const resolveColumnName: (propName: string, prop?: Property | null) => string;
|
|
3
|
+
export declare const isIdProperty: (propName: string, prop: Property, collection: CollectionConfig) => boolean;
|
|
4
|
+
export declare const getSqlColumnType: (propName: string, prop: Property, collection: CollectionConfig, collections: CollectionConfig[]) => string;
|
|
2
5
|
export declare const generatePostgresDdl: (collections: CollectionConfig[], options?: {
|
|
3
6
|
includePolicies?: boolean;
|
|
4
7
|
}) => Promise<string>;
|
|
@@ -0,0 +1,329 @@
|
|
|
1
|
+
import { createRequire as __createRequire } from "module";
|
|
2
|
+
import "process";
|
|
3
|
+
__createRequire(import.meta.url);
|
|
4
|
+
//#region ../types/src/types/entities.ts
|
|
5
|
+
/**
|
|
6
|
+
* Class used to create a reference to a entity in a different path
|
|
7
|
+
*/
|
|
8
|
+
var EntityRelation = class {
|
|
9
|
+
__type = "relation";
|
|
10
|
+
/**
|
|
11
|
+
* ID of the entity
|
|
12
|
+
*/
|
|
13
|
+
id;
|
|
14
|
+
/**
|
|
15
|
+
* A string representing the path of the referenced document (relative
|
|
16
|
+
* to the root of the database).
|
|
17
|
+
*/
|
|
18
|
+
path;
|
|
19
|
+
/**
|
|
20
|
+
* Pre-fetched data payload to eliminate N+1 queries.
|
|
21
|
+
* When present, clients can use this directly instead of fetching.
|
|
22
|
+
*/
|
|
23
|
+
data;
|
|
24
|
+
constructor(id, path, data) {
|
|
25
|
+
this.id = id;
|
|
26
|
+
this.path = path;
|
|
27
|
+
this.data = data;
|
|
28
|
+
}
|
|
29
|
+
get pathWithId() {
|
|
30
|
+
return `${this.path}/${this.id}`;
|
|
31
|
+
}
|
|
32
|
+
isEntityReference() {
|
|
33
|
+
return false;
|
|
34
|
+
}
|
|
35
|
+
isEntityRelation() {
|
|
36
|
+
return true;
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
var Vector = class {
|
|
40
|
+
value;
|
|
41
|
+
constructor(value) {
|
|
42
|
+
this.value = value;
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
//#endregion
|
|
46
|
+
//#region ../types/src/types/filter-operators.ts
|
|
47
|
+
/** Maps REST short-code operators to their canonical equivalents. */
|
|
48
|
+
var REST_TO_CANONICAL = {
|
|
49
|
+
"eq": "==",
|
|
50
|
+
"neq": "!=",
|
|
51
|
+
"gt": ">",
|
|
52
|
+
"gte": ">=",
|
|
53
|
+
"lt": "<",
|
|
54
|
+
"lte": "<=",
|
|
55
|
+
"in": "in",
|
|
56
|
+
"nin": "not-in",
|
|
57
|
+
"cs": "array-contains",
|
|
58
|
+
"csa": "array-contains-any",
|
|
59
|
+
"like": "like",
|
|
60
|
+
"ilike": "ilike",
|
|
61
|
+
"nlike": "not-like",
|
|
62
|
+
"nilike": "not-ilike",
|
|
63
|
+
"isnull": "is-null",
|
|
64
|
+
"notnull": "is-not-null"
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* Operators that test for null/not-null and therefore ignore their value.
|
|
68
|
+
* Codecs normalize the value of these conditions to `null`.
|
|
69
|
+
*/
|
|
70
|
+
var NULL_OPS = new Set(["is-null", "is-not-null"]);
|
|
71
|
+
/**
|
|
72
|
+
* Every canonical operator, in a stable order. Useful for engine capability
|
|
73
|
+
* declarations ({@link DataSourceCapabilities.filterOperators}) and for
|
|
74
|
+
* building operator subsets.
|
|
75
|
+
* @group Models
|
|
76
|
+
*/
|
|
77
|
+
var ALL_WHERE_FILTER_OPS = [
|
|
78
|
+
"<",
|
|
79
|
+
"<=",
|
|
80
|
+
"==",
|
|
81
|
+
"!=",
|
|
82
|
+
">=",
|
|
83
|
+
">",
|
|
84
|
+
"in",
|
|
85
|
+
"not-in",
|
|
86
|
+
"array-contains",
|
|
87
|
+
"array-contains-any",
|
|
88
|
+
"like",
|
|
89
|
+
"ilike",
|
|
90
|
+
"not-like",
|
|
91
|
+
"not-ilike",
|
|
92
|
+
"is-null",
|
|
93
|
+
"is-not-null"
|
|
94
|
+
];
|
|
95
|
+
/** All canonical operator strings for runtime validation. */
|
|
96
|
+
var CANONICAL_OPS = new Set(ALL_WHERE_FILTER_OPS);
|
|
97
|
+
/**
|
|
98
|
+
* Resolve any operator string (canonical or REST short-code) to its
|
|
99
|
+
* canonical `WhereFilterOp` form. Returns `undefined` for unknown operators.
|
|
100
|
+
*
|
|
101
|
+
* @example
|
|
102
|
+
* toCanonicalOp("==") // "=="
|
|
103
|
+
* toCanonicalOp("eq") // "=="
|
|
104
|
+
* toCanonicalOp("cs") // "array-contains"
|
|
105
|
+
* toCanonicalOp("xyz") // undefined
|
|
106
|
+
*/
|
|
107
|
+
function toCanonicalOp(op) {
|
|
108
|
+
if (CANONICAL_OPS.has(op)) return op;
|
|
109
|
+
return REST_TO_CANONICAL[op];
|
|
110
|
+
}
|
|
111
|
+
//#endregion
|
|
112
|
+
//#region ../types/src/types/collections.ts
|
|
113
|
+
/**
|
|
114
|
+
* Type guard for PostgreSQL collections.
|
|
115
|
+
* Returns true if the collection uses the Postgres engine (or the default engine).
|
|
116
|
+
* @group Models
|
|
117
|
+
*/
|
|
118
|
+
function isPostgresCollectionConfig(collection) {
|
|
119
|
+
return !collection.engine || collection.engine === "postgres";
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* Reads a collection's driver-declared subcollections thunk (the `subcollections`
|
|
123
|
+
* field) independent of engine identity, so engine-agnostic code doesn't have to
|
|
124
|
+
* type-guard against a specific driver. Returns `undefined` when the collection
|
|
125
|
+
* declares none.
|
|
126
|
+
*
|
|
127
|
+
* Pair with `getDataSourceCapabilities(engine).supportsSubcollections` to decide
|
|
128
|
+
* whether the engine honours subcollections at all before reading them.
|
|
129
|
+
* @group Models
|
|
130
|
+
*/
|
|
131
|
+
function getDeclaredSubcollections(collection) {
|
|
132
|
+
return collection.subcollections;
|
|
133
|
+
}
|
|
134
|
+
//#endregion
|
|
135
|
+
//#region ../types/src/types/policy.ts
|
|
136
|
+
/**
|
|
137
|
+
* The id a request without a logged-in user reports as `auth.uid()`.
|
|
138
|
+
*
|
|
139
|
+
* A user-context request always sets `app.uid`: blank would read back as
|
|
140
|
+
* `NULL`, and `NULL` is how the trusted server context is recognised, so an
|
|
141
|
+
* anonymous visitor would be promoted to server privileges. The driver
|
|
142
|
+
* therefore substitutes this sentinel at the single chokepoint where the GUC
|
|
143
|
+
* is set.
|
|
144
|
+
*
|
|
145
|
+
* The consequence for policy authors is that **`auth.uid() IS NOT NULL` is a
|
|
146
|
+
* tautology on the user path** — it is true for anonymous visitors too. Use
|
|
147
|
+
* {@link policy.authenticated} (or `auth.uid() <> 'anonymous'`) to mean "signed
|
|
148
|
+
* in", and {@link policy.serverContext} to mean "the trusted server context".
|
|
149
|
+
*
|
|
150
|
+
* @group Models
|
|
151
|
+
*/
|
|
152
|
+
var ANONYMOUS_USER_ID = "anonymous";
|
|
153
|
+
/** @group Models */
|
|
154
|
+
var policy = {
|
|
155
|
+
true: () => ({ kind: "true" }),
|
|
156
|
+
false: () => ({ kind: "false" }),
|
|
157
|
+
and: (...operands) => ({
|
|
158
|
+
kind: "and",
|
|
159
|
+
operands
|
|
160
|
+
}),
|
|
161
|
+
or: (...operands) => ({
|
|
162
|
+
kind: "or",
|
|
163
|
+
operands
|
|
164
|
+
}),
|
|
165
|
+
not: (operand) => ({
|
|
166
|
+
kind: "not",
|
|
167
|
+
operand
|
|
168
|
+
}),
|
|
169
|
+
compare: (left, op, right) => ({
|
|
170
|
+
kind: "compare",
|
|
171
|
+
op,
|
|
172
|
+
left,
|
|
173
|
+
right
|
|
174
|
+
}),
|
|
175
|
+
rolesOverlap: (roles) => ({
|
|
176
|
+
kind: "rolesOverlap",
|
|
177
|
+
roles
|
|
178
|
+
}),
|
|
179
|
+
rolesContain: (roles) => ({
|
|
180
|
+
kind: "rolesContain",
|
|
181
|
+
roles
|
|
182
|
+
}),
|
|
183
|
+
authenticated: () => ({ kind: "authenticated" }),
|
|
184
|
+
serverContext: () => ({ kind: "serverContext" }),
|
|
185
|
+
existsIn: (args) => ({
|
|
186
|
+
kind: "existsIn",
|
|
187
|
+
collection: args.collection,
|
|
188
|
+
where: args.where
|
|
189
|
+
}),
|
|
190
|
+
raw: (sql) => ({
|
|
191
|
+
kind: "raw",
|
|
192
|
+
sql
|
|
193
|
+
}),
|
|
194
|
+
field: (name) => ({
|
|
195
|
+
kind: "field",
|
|
196
|
+
name
|
|
197
|
+
}),
|
|
198
|
+
outerField: (name) => ({
|
|
199
|
+
kind: "outerField",
|
|
200
|
+
name
|
|
201
|
+
}),
|
|
202
|
+
literal: (value) => ({
|
|
203
|
+
kind: "literal",
|
|
204
|
+
value
|
|
205
|
+
}),
|
|
206
|
+
authUid: () => ({ kind: "authUid" }),
|
|
207
|
+
authRoles: () => ({ kind: "authRoles" })
|
|
208
|
+
};
|
|
209
|
+
//#endregion
|
|
210
|
+
//#region ../types/src/types/backend.ts
|
|
211
|
+
/**
|
|
212
|
+
* Type guard: does this admin support SQL operations?
|
|
213
|
+
* @group Admin
|
|
214
|
+
*/
|
|
215
|
+
function isSQLAdmin(admin) {
|
|
216
|
+
return !!admin && typeof admin.executeSql === "function";
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* Type guard: does this admin support schema management?
|
|
220
|
+
* @group Admin
|
|
221
|
+
*/
|
|
222
|
+
function isSchemaAdmin(admin) {
|
|
223
|
+
return !!admin && (typeof admin.fetchUnmappedTables === "function" || typeof admin.fetchTableMetadata === "function");
|
|
224
|
+
}
|
|
225
|
+
//#endregion
|
|
226
|
+
//#region ../types/src/types/channel_bus.ts
|
|
227
|
+
/**
|
|
228
|
+
* Whether `setting` is an already-constructed transport rather than a request
|
|
229
|
+
* for a built-in one.
|
|
230
|
+
*
|
|
231
|
+
* Structural rather than nominal so that an instance from a *different copy* of
|
|
232
|
+
* `@rebasepro/types` — an entirely normal outcome of a separately versioned
|
|
233
|
+
* transport package — is still recognised.
|
|
234
|
+
*/
|
|
235
|
+
function isChannelBusInstance(setting) {
|
|
236
|
+
return typeof setting?.publish === "function";
|
|
237
|
+
}
|
|
238
|
+
//#endregion
|
|
239
|
+
//#region ../types/src/types/data_source.ts
|
|
240
|
+
/**
|
|
241
|
+
* The default data-source key, used when a collection does not name a
|
|
242
|
+
* `dataSource`. Shared by the frontend router and the backend driver
|
|
243
|
+
* registry so both agree on "the default database".
|
|
244
|
+
* @group Models
|
|
245
|
+
*/
|
|
246
|
+
var DEFAULT_DATA_SOURCE_KEY = "(default)";
|
|
247
|
+
/** @group Models */
|
|
248
|
+
var POSTGRES_CAPABILITIES = {
|
|
249
|
+
key: "postgres",
|
|
250
|
+
label: "PostgreSQL",
|
|
251
|
+
supportsRelations: true,
|
|
252
|
+
supportsSubcollections: false,
|
|
253
|
+
supportsRLS: true,
|
|
254
|
+
supportsReferences: false,
|
|
255
|
+
supportsColumnTypes: true,
|
|
256
|
+
supportsRealtime: true,
|
|
257
|
+
filterOperators: ALL_WHERE_FILTER_OPS,
|
|
258
|
+
supportsSQLAdmin: true,
|
|
259
|
+
supportsDocumentAdmin: false,
|
|
260
|
+
supportsSchemaAdmin: true
|
|
261
|
+
};
|
|
262
|
+
/** @group Models */
|
|
263
|
+
var FIREBASE_CAPABILITIES = {
|
|
264
|
+
key: "firestore",
|
|
265
|
+
label: "Firebase / Firestore",
|
|
266
|
+
supportsRelations: false,
|
|
267
|
+
supportsSubcollections: true,
|
|
268
|
+
supportsRLS: false,
|
|
269
|
+
supportsReferences: true,
|
|
270
|
+
supportsColumnTypes: false,
|
|
271
|
+
supportsRealtime: true,
|
|
272
|
+
filterOperators: ALL_WHERE_FILTER_OPS.filter((op) => op !== "like" && op !== "ilike" && op !== "not-like" && op !== "not-ilike"),
|
|
273
|
+
supportsSQLAdmin: false,
|
|
274
|
+
supportsDocumentAdmin: false,
|
|
275
|
+
supportsSchemaAdmin: false
|
|
276
|
+
};
|
|
277
|
+
/** @group Models */
|
|
278
|
+
var MONGODB_CAPABILITIES = {
|
|
279
|
+
key: "mongodb",
|
|
280
|
+
label: "MongoDB",
|
|
281
|
+
supportsRelations: false,
|
|
282
|
+
supportsSubcollections: true,
|
|
283
|
+
supportsRLS: false,
|
|
284
|
+
supportsReferences: true,
|
|
285
|
+
supportsColumnTypes: false,
|
|
286
|
+
supportsRealtime: false,
|
|
287
|
+
filterOperators: ALL_WHERE_FILTER_OPS,
|
|
288
|
+
supportsSQLAdmin: false,
|
|
289
|
+
supportsDocumentAdmin: true,
|
|
290
|
+
supportsSchemaAdmin: true
|
|
291
|
+
};
|
|
292
|
+
/**
|
|
293
|
+
* Fallback capabilities when the driver is unknown.
|
|
294
|
+
* Enables everything so nothing is hidden unexpectedly.
|
|
295
|
+
* @group Models
|
|
296
|
+
*/
|
|
297
|
+
var DEFAULT_CAPABILITIES = {
|
|
298
|
+
key: "(default)",
|
|
299
|
+
label: "Default",
|
|
300
|
+
supportsRelations: true,
|
|
301
|
+
supportsSubcollections: true,
|
|
302
|
+
supportsRLS: true,
|
|
303
|
+
supportsReferences: true,
|
|
304
|
+
supportsColumnTypes: true,
|
|
305
|
+
supportsRealtime: true,
|
|
306
|
+
filterOperators: ALL_WHERE_FILTER_OPS,
|
|
307
|
+
supportsSQLAdmin: true,
|
|
308
|
+
supportsDocumentAdmin: true,
|
|
309
|
+
supportsSchemaAdmin: true
|
|
310
|
+
};
|
|
311
|
+
var CAPABILITIES_REGISTRY = {
|
|
312
|
+
postgres: POSTGRES_CAPABILITIES,
|
|
313
|
+
firestore: FIREBASE_CAPABILITIES,
|
|
314
|
+
mongodb: MONGODB_CAPABILITIES,
|
|
315
|
+
"(default)": DEFAULT_CAPABILITIES
|
|
316
|
+
};
|
|
317
|
+
/**
|
|
318
|
+
* Look up capabilities for a given engine key.
|
|
319
|
+
* If `engine` is undefined or not found, returns `DEFAULT_CAPABILITIES`.
|
|
320
|
+
* @group Models
|
|
321
|
+
*/
|
|
322
|
+
function getDataSourceCapabilities(engine) {
|
|
323
|
+
if (!engine) return POSTGRES_CAPABILITIES;
|
|
324
|
+
return CAPABILITIES_REGISTRY[engine] ?? DEFAULT_CAPABILITIES;
|
|
325
|
+
}
|
|
326
|
+
//#endregion
|
|
327
|
+
export { isSchemaAdmin as a, getDeclaredSubcollections as c, REST_TO_CANONICAL as d, toCanonicalOp as f, isSQLAdmin as i, isPostgresCollectionConfig as l, Vector as m, getDataSourceCapabilities as n, ANONYMOUS_USER_ID as o, EntityRelation as p, isChannelBusInstance as r, policy as s, DEFAULT_DATA_SOURCE_KEY as t, NULL_OPS as u };
|
|
328
|
+
|
|
329
|
+
//# sourceMappingURL=src-B0v4IKaI.js.map
|