-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathPostgresMetaTypes.ts
55 lines (52 loc) · 1.4 KB
/
PostgresMetaTypes.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import { DEFAULT_SYSTEM_SCHEMAS } from './constants.js'
import { filterByList } from './helpers.js'
import typesSql from './sql/types.sql'
import { PostgresMetaResult, PostgresType } from './types.js'
export default class PostgresMetaTypes {
query: (sql: string) => Promise<PostgresMetaResult<any>>
constructor(query: (sql: string) => Promise<PostgresMetaResult<any>>) {
this.query = query
}
async list({
includeArrayTypes = false,
includeSystemSchemas = false,
includedSchemas,
excludedSchemas,
limit,
offset,
}: {
includeArrayTypes?: boolean
includeSystemSchemas?: boolean
includedSchemas?: string[]
excludedSchemas?: string[]
limit?: number
offset?: number
} = {}): Promise<PostgresMetaResult<PostgresType[]>> {
let sql = typesSql
if (!includeArrayTypes) {
sql += ` and not exists (
select
from
pg_type el
where
el.oid = t.typelem
and el.typarray = t.oid
)`
}
const filter = filterByList(
includedSchemas,
excludedSchemas,
!includeSystemSchemas ? DEFAULT_SYSTEM_SCHEMAS : undefined
)
if (filter) {
sql += ` and n.nspname ${filter}`
}
if (limit) {
sql += ` limit ${limit}`
}
if (offset) {
sql += ` offset ${offset}`
}
return await this.query(sql)
}
}