@@ -6,29 +6,29 @@ import {trpcCli, TrpcCliMeta} from 'trpc-cli'
6
6
import { z } from 'zod'
7
7
import { Migration } from './migra'
8
8
9
- // todo: deviation: always return a PostgreSQL instance, and make `Migration.create` only accept PostgreSQL instances
10
- const argContext = async ( x : Queryable | string ) : Promise < PostgreSQL | Queryable > => {
11
- if ( typeof x !== 'string' ) {
12
- return x
9
+ // deviation: always return a PostgreSQL instance, and make `Migration.create` only accept PostgreSQL instances
10
+ const argContext = async ( connInfo : Queryable | string ) : Promise < PostgreSQL | Queryable > => {
11
+ if ( typeof connInfo !== 'string' ) {
12
+ return connInfo
13
13
}
14
14
15
- if ( x === 'EMPTY' ) {
15
+ if ( connInfo === 'EMPTY' ) {
16
16
return PostgreSQL . empty ( )
17
17
}
18
18
19
- if ( x . startsWith ( 'file://' ) ) {
20
- const url = new URL ( x )
19
+ if ( connInfo . startsWith ( 'file://' ) ) {
20
+ const url = new URL ( connInfo )
21
21
if ( url . hostname ) throw new Error ( `Not implemented: can only read files from localhost (got ${ url . hostname } )` )
22
22
const content = await readFile ( url . pathname , 'utf8' )
23
23
return PostgreSQL . fromJSON ( JSON . parse ( content ) )
24
24
}
25
25
26
- if ( / ^ h t t p s ? : \/ \/ / . test ( x ) ) {
27
- const response = await fetch ( x )
26
+ if ( / ^ h t t p s ? : \/ \/ / . test ( connInfo ) ) {
27
+ const response = await fetch ( connInfo )
28
28
return PostgreSQL . fromJSON ( await response . json ( ) )
29
29
}
30
30
31
- return createClient ( x )
31
+ return createClient ( connInfo )
32
32
}
33
33
34
34
export const run = async ( dburlFrom : Queryable | string , dburlTarget : Queryable | string , args : MigraOptions = { } ) => {
0 commit comments