@rebasepro/server-postgres 0.12.1-canary.gf5f1d39 → 0.13.1-canary.g18cfeb7
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/PostgresBackendDriver.d.ts +49 -2
- package/dist/PostgresBootstrapper.d.ts +25 -1
- package/dist/auth/services.d.ts +21 -0
- package/dist/{src-BbFOPJ1S.js → auth-users-columns-Do9mw5Y5.js} +602 -200
- package/dist/auth-users-columns-Do9mw5Y5.js.map +1 -0
- package/dist/backup/backup-service.d.ts +10 -1
- package/dist/backup/pg-tools.d.ts +47 -0
- package/dist/backup-service-Bww-Lg0s.js +8999 -0
- package/dist/backup-service-Bww-Lg0s.js.map +1 -0
- package/dist/cli-helpers.d.ts +40 -1
- package/dist/connection-BuZ97wsr.js +250 -0
- package/dist/connection-BuZ97wsr.js.map +1 -0
- package/dist/connection.d.ts +42 -0
- package/dist/ensure-collection-policies-DMUdRQdM.js +57 -0
- package/dist/ensure-collection-policies-DMUdRQdM.js.map +1 -0
- package/dist/ensure-collection-tables-DSIxvLLD.js +694 -0
- package/dist/ensure-collection-tables-DSIxvLLD.js.map +1 -0
- package/dist/index.es.js +1701 -10167
- package/dist/index.es.js.map +1 -1
- package/dist/policy-CPkCqVTz.js +105 -0
- package/dist/policy-CPkCqVTz.js.map +1 -0
- package/dist/rls-bootstrap-sql-Bpv3nUZo.js +244 -0
- package/dist/rls-bootstrap-sql-Bpv3nUZo.js.map +1 -0
- package/dist/schema/auth-schema.d.ts +83 -144
- package/dist/schema/auth-users-columns.d.ts +97 -0
- package/dist/schema/ensure-collection-policies.d.ts +60 -0
- package/dist/schema/ensure-collection-tables.d.ts +45 -3
- package/dist/schema/generate-drizzle-schema-logic.d.ts +1 -1
- package/dist/schema/generate-postgres-ddl-logic.d.ts +137 -3
- package/dist/schema/generated-schema-staleness.d.ts +39 -0
- package/dist/schema/introspect-db-constraints.d.ts +57 -0
- package/dist/schema/introspect-db-logic.d.ts +94 -5
- package/dist/schema/introspect-db-queries.d.ts +119 -0
- package/dist/schema/introspect-db-structure.d.ts +263 -0
- package/dist/schema/introspect-db-types.d.ts +11 -0
- package/dist/schema/rls-bootstrap-sql.d.ts +135 -0
- package/dist/security/rls-enforcement.d.ts +53 -2
- package/dist/services/FetchService.d.ts +14 -8
- package/dist/services/RelationService.d.ts +24 -1
- package/dist/services/channel-bus/index.d.ts +1 -7
- package/dist/services/collection-helpers.d.ts +36 -2
- package/dist/services/dataService.d.ts +5 -1
- package/dist/services/realtimeService.d.ts +25 -21
- package/dist/services/row-pipeline.d.ts +1 -1
- package/dist/{src-Zqwaw3P5.js → src-C_wvdMnl.js} +78 -145
- package/dist/src-C_wvdMnl.js.map +1 -0
- package/dist/utils/connection-string.d.ts +29 -0
- package/dist/utils/drizzle-conditions.d.ts +5 -4
- package/dist/utils/pg-error-utils.d.ts +35 -0
- package/dist/websocket-D0TBU3ia.js +530 -0
- package/dist/websocket-D0TBU3ia.js.map +1 -0
- package/package.json +17 -16
- package/src/PostgresAdapter.ts +21 -2
- package/src/PostgresBackendDriver.ts +169 -3
- package/src/PostgresBootstrapper.ts +233 -35
- package/src/auth/ensure-tables.ts +335 -81
- package/src/auth/services.ts +24 -2
- package/src/backup/backup-cli.ts +41 -2
- package/src/backup/backup-service.ts +38 -5
- package/src/backup/pg-tools.ts +96 -3
- package/src/cli-helpers.ts +92 -9
- package/src/cli.ts +219 -56
- package/src/collections/validate-relations.ts +136 -14
- package/src/connection.ts +73 -0
- package/src/data-transformer.ts +22 -6
- package/src/databasePoolManager.ts +5 -2
- package/src/history/ensure-history-table.ts +7 -0
- package/src/schema/auth-schema.ts +30 -19
- package/src/schema/auth-users-columns.ts +131 -0
- package/src/schema/doctor.ts +7 -5
- package/src/schema/ensure-collection-policies.ts +105 -0
- package/src/schema/ensure-collection-tables.test.ts +105 -9
- package/src/schema/ensure-collection-tables.ts +301 -44
- package/src/schema/generate-drizzle-schema-logic.ts +49 -7
- package/src/schema/generate-postgres-ddl-logic.ts +474 -27
- package/src/schema/generated-schema-staleness.ts +169 -0
- package/src/schema/introspect-db-constraints.ts +385 -0
- package/src/schema/introspect-db-inference.ts +18 -8
- package/src/schema/introspect-db-logic.ts +385 -71
- package/src/schema/introspect-db-queries.ts +326 -0
- package/src/schema/introspect-db-structure.ts +670 -0
- package/src/schema/introspect-db-types.ts +56 -0
- package/src/schema/introspect-db.ts +37 -80
- package/src/schema/introspect-runtime.test.ts +56 -8
- package/src/schema/introspect-runtime.ts +31 -9
- package/src/schema/non-sql-collections.test.ts +131 -0
- package/src/schema/rls-bootstrap-sql.ts +288 -0
- package/src/security/anonymous-grants.test.ts +4 -2
- package/src/security/policy-drift.test.ts +11 -3
- package/src/security/rls-enforcement.ts +141 -3
- package/src/services/BranchService.ts +71 -28
- package/src/services/FetchService.ts +100 -107
- package/src/services/PersistService.ts +34 -7
- package/src/services/RelationService.ts +249 -48
- package/src/services/channel-bus/index.ts +0 -9
- package/src/services/channel-history.ts +8 -0
- package/src/services/channel-presence.ts +6 -0
- package/src/services/collection-helpers.ts +69 -3
- package/src/services/dataService.ts +5 -1
- package/src/services/realtimeService.ts +38 -35
- package/src/services/row-pipeline.ts +1 -1
- package/src/utils/connection-string.ts +58 -0
- package/src/utils/drizzle-conditions.ts +31 -6
- package/src/utils/pg-error-utils.ts +65 -0
- package/src/websocket.ts +18 -9
- package/dist/chunk-DSJWtz9O.js +0 -40
- package/dist/ensure-collection-tables-CNTcZGvn.js +0 -304
- package/dist/ensure-collection-tables-CNTcZGvn.js.map +0 -1
- package/dist/schema/auth-bootstrap-sql.d.ts +0 -24
- package/dist/src-BbFOPJ1S.js.map +0 -1
- package/dist/src-Zqwaw3P5.js.map +0 -1
- package/src/schema/auth-bootstrap-sql.ts +0 -47
|
@@ -3,7 +3,7 @@ import { BranchService } from "./services/BranchService";
|
|
|
3
3
|
import { RealtimeService } from "./services/realtimeService";
|
|
4
4
|
import { DatabasePoolManager } from "./databasePoolManager";
|
|
5
5
|
import { DrizzleClient } from "./interfaces";
|
|
6
|
-
import { DatabaseAdmin, DataDriver, DeleteProps, CollectionConfig, FetchCollectionProps, FetchOneProps, ListenCollectionProps, ListenOneProps, RebaseClient, RebaseSdkData, RestFetchService, SaveManyProps, SaveProps, TableMetadata, User } from "@rebasepro/types";
|
|
6
|
+
import { DatabaseAdmin, DataDriver, DeleteProps, CollectionConfig, FetchCollectionProps, FetchOneProps, ListenCollectionProps, ListenOneProps, RebaseClient, RebaseSdkData, RestFetchService, SaveManyProps, SaveProps, UpdateManyProps, DeleteManyProps, TableMetadata, User } from "@rebasepro/types";
|
|
7
7
|
import { PostgresCollectionRegistry } from "./collections/PostgresCollectionRegistry";
|
|
8
8
|
import { HistoryService } from "./history/HistoryService";
|
|
9
9
|
export declare class PostgresBackendDriver implements DataDriver {
|
|
@@ -62,6 +62,25 @@ export declare class PostgresBackendDriver implements DataDriver {
|
|
|
62
62
|
* REST/SDK read leaks unmasked data (see {@link applyAfterReadForRest}).
|
|
63
63
|
*/
|
|
64
64
|
get restFetchService(): RestFetchService;
|
|
65
|
+
/**
|
|
66
|
+
* Build the context handed to every collection callback.
|
|
67
|
+
*
|
|
68
|
+
* Note `data: this.data` — `this` is whichever driver is running the
|
|
69
|
+
* operation, so the callback's data plane inherits that driver's privilege.
|
|
70
|
+
* On a user request `AuthenticatedPostgresBackendDriver.withTransaction`
|
|
71
|
+
* constructs a fresh base driver bound to the RLS-scoped transaction and
|
|
72
|
+
* runs the operation on it, so `this.data` speaks through that connection
|
|
73
|
+
* and policies apply. On server-context work `this` is the base driver on
|
|
74
|
+
* the owner connection, and they do not. Pinned by the
|
|
75
|
+
* `"scopes context.data to the caller"` case in the `rls-enforcement` e2e
|
|
76
|
+
* suite, because it is the kind of property that is easy to break from a
|
|
77
|
+
* distance and impossible to notice.
|
|
78
|
+
*
|
|
79
|
+
* Previously returned through `as unknown as RebaseCallContext`, which
|
|
80
|
+
* disabled checking for the whole object and let `driver` — documented in
|
|
81
|
+
* the callbacks guide — sit on the runtime context while absent from the
|
|
82
|
+
* contract. Both are declared now, so this is a plain typed return.
|
|
83
|
+
*/
|
|
65
84
|
private buildCallContext;
|
|
66
85
|
private resolveCollectionCallbacks;
|
|
67
86
|
/**
|
|
@@ -102,10 +121,38 @@ export declare class PostgresBackendDriver implements DataDriver {
|
|
|
102
121
|
* with the last write winning, exactly as separate calls would.
|
|
103
122
|
*/
|
|
104
123
|
saveMany<M extends Record<string, unknown>>({ path, rows, collection, upsert }: SaveManyProps<M>): Promise<Record<string, unknown>[]>;
|
|
124
|
+
/**
|
|
125
|
+
* Update many rows through the same pipeline as {@link save}, in one
|
|
126
|
+
* transaction.
|
|
127
|
+
*
|
|
128
|
+
* Structurally the mirror of {@link saveMany} — same tx-bound sub-driver,
|
|
129
|
+
* same deferred notifications, same per-row error labelling — but it calls
|
|
130
|
+
* `save` with an explicit `id` and `status: "existing"`, which is precisely
|
|
131
|
+
* what `saveMany` cannot do: that one passes `status: "new"` and keeps the
|
|
132
|
+
* key inside `values`, so it inserts or upserts and can never target a
|
|
133
|
+
* particular row.
|
|
134
|
+
*
|
|
135
|
+
* All-or-nothing, so an id matching no row aborts the batch. A partial
|
|
136
|
+
* update is the outcome with no good recovery: the caller cannot tell which
|
|
137
|
+
* half landed without re-reading everything.
|
|
138
|
+
*/
|
|
139
|
+
updateMany<M extends Record<string, unknown>>({ path, updates, collection }: UpdateManyProps<M>): Promise<Record<string, unknown>[]>;
|
|
140
|
+
/**
|
|
141
|
+
* Delete many rows in one transaction, running the full delete pipeline —
|
|
142
|
+
* `beforeDelete`, the delete, `afterDelete` — for each.
|
|
143
|
+
*
|
|
144
|
+
* Looping the single-row {@link delete} rather than emitting one
|
|
145
|
+
* `DELETE ... WHERE id = ANY($1)` is the deliberate choice: a single
|
|
146
|
+
* statement would be faster and would skip every callback, so a collection
|
|
147
|
+
* relying on `beforeDelete` to veto or on `afterDelete` to clean up
|
|
148
|
+
* dependents would behave differently depending on how many rows the caller
|
|
149
|
+
* happened to delete at once. Same pipeline, one transaction.
|
|
150
|
+
*/
|
|
151
|
+
deleteMany<M extends Record<string, unknown>>({ path, ids, collection }: DeleteManyProps<M>): Promise<void>;
|
|
105
152
|
delete<M extends Record<string, unknown>>({ row, collection }: DeleteProps<M>): Promise<void>;
|
|
106
153
|
deleteAll(path: string): Promise<void>;
|
|
107
154
|
checkUniqueField(path: string, name: string, value: unknown, id?: string, collection?: CollectionConfig): Promise<boolean>;
|
|
108
|
-
count<M extends Record<string, unknown>>({ path, collection, filter, searchString }: FetchCollectionProps<M>): Promise<number>;
|
|
155
|
+
count<M extends Record<string, unknown>>({ path, collection, filter, logical, searchString }: FetchCollectionProps<M>): Promise<number>;
|
|
109
156
|
private getTargetDb;
|
|
110
157
|
executeSql(sqlText: string, options?: {
|
|
111
158
|
database?: string;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Implements the `BackendBootstrapper` interface for PostgreSQL.
|
|
5
5
|
*/
|
|
6
6
|
import { NodePgDatabase } from "drizzle-orm/node-postgres";
|
|
7
|
-
import { BackendBootstrapper, type RealtimeChannelsConfig } from "@rebasepro/types";
|
|
7
|
+
import { BackendBootstrapper, CollectionConfig, type RealtimeChannelsConfig } from "@rebasepro/types";
|
|
8
8
|
import { PostgresBackendDriver } from "./PostgresBackendDriver";
|
|
9
9
|
import { RealtimeService } from "./services/realtimeService";
|
|
10
10
|
import { DatabasePoolManager } from "./databasePoolManager";
|
|
@@ -65,6 +65,30 @@ export interface PostgresDriverInternals {
|
|
|
65
65
|
*/
|
|
66
66
|
provisionCdcForTables?: (tables: CdcTableRef[]) => Promise<void>;
|
|
67
67
|
}
|
|
68
|
+
/**
|
|
69
|
+
* Which table name the boot-time drift check should look for, for one collection.
|
|
70
|
+
*
|
|
71
|
+
* A declared `table` IS the table name, not a hint to be second-guessed. This
|
|
72
|
+
* used to ask the registry whether it had indexed the declared name and fall
|
|
73
|
+
* back to the SLUG when it had not — but "the registry does not know this table"
|
|
74
|
+
* is exactly the condition the drift check exists to report, so the fallback
|
|
75
|
+
* fired precisely when it was most harmful.
|
|
76
|
+
*
|
|
77
|
+
* A collection with `slug: "usage-daily", table: "usage_daily"` was reported as
|
|
78
|
+
* missing table `usage-daily`: a name that does not exist, should never exist,
|
|
79
|
+
* and that nobody can find by looking. Worse, the remediation the caller prints
|
|
80
|
+
* says to run `rebase db push` — which would then CREATE that invented table
|
|
81
|
+
* beside the correct one, the same "second copy" hazard the misplaced-schema
|
|
82
|
+
* branch further down exists to prevent. Seen in production, where a correctly
|
|
83
|
+
* migrated database reported drift on every boot.
|
|
84
|
+
*
|
|
85
|
+
* The slug is used only when nothing was declared, which is the config shape
|
|
86
|
+
* where the slug genuinely is the table name.
|
|
87
|
+
*
|
|
88
|
+
* Exported for its own test: the caller needs a live pool and a real database,
|
|
89
|
+
* and this is the part that was wrong.
|
|
90
|
+
*/
|
|
91
|
+
export declare function resolveDriftCheckName(col: CollectionConfig, registeredTableNames: string[]): string;
|
|
68
92
|
/**
|
|
69
93
|
* Default PostgreSQL bootstrapper.
|
|
70
94
|
*
|
package/dist/auth/services.d.ts
CHANGED
|
@@ -9,6 +9,27 @@ export interface AuthSchemaTables {
|
|
|
9
9
|
appConfig: RebasePgTable;
|
|
10
10
|
userIdentities: RebasePgTable;
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* The single definition of what an email address looks like in storage.
|
|
14
|
+
*
|
|
15
|
+
* Reads have always folded case; writes did not, and normalising was left to
|
|
16
|
+
* each caller. That asymmetry is only ever one forgotten `.toLowerCase()` away
|
|
17
|
+
* from a row no lookup can find — the account exists, every sign-in path
|
|
18
|
+
* reports no such user, and the byte-exact UNIQUE on the column does not stop a
|
|
19
|
+
* duplicate differing only in case. Applied on both sides here so the guarantee
|
|
20
|
+
* belongs to the repository rather than to its callers' discipline; the
|
|
21
|
+
* `lower(email)` unique index added in `ensureAuthTablesExist` is the database
|
|
22
|
+
* half of the same rule.
|
|
23
|
+
*
|
|
24
|
+
* Whitespace goes too: a trailing space survives the fold and reproduces the
|
|
25
|
+
* problem exactly.
|
|
26
|
+
*
|
|
27
|
+
* Re-exported rather than defined here: `@rebasepro/server` and
|
|
28
|
+
* `@rebasepro/server-mongo` write this column too, and a second copy of this
|
|
29
|
+
* rule is the defect it exists to prevent.
|
|
30
|
+
*/
|
|
31
|
+
import { normalizeEmail } from "@rebasepro/common";
|
|
32
|
+
export { normalizeEmail };
|
|
12
33
|
/**
|
|
13
34
|
* PostgreSQL implementation of UserRepository.
|
|
14
35
|
* Handles all user-related database operations using Drizzle ORM.
|