-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathPostgresMetaRelationships.ts
155 lines (141 loc) · 5.65 KB
/
PostgresMetaRelationships.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
import { literal } from 'pg-format'
import { DEFAULT_SYSTEM_SCHEMAS } from './constants.js'
import tableRelationshipsSql from './sql/table_relationships.sql'
import viewsKeyDependenciesSql from './sql/views_key_dependencies.sql'
import { PostgresMetaResult, PostgresRelationship } from './types.js'
/*
* Only used for generating types at the moment. Will need some cleanups before
* using it for other things, e.g. /relationships endpoint.
*/
export default class PostgresMetaRelationships {
query: (sql: string) => Promise<PostgresMetaResult<any>>
constructor(query: (sql: string) => Promise<PostgresMetaResult<any>>) {
this.query = query
}
async list(): Promise<PostgresMetaResult<PostgresRelationship[]>> {
let allTableM2oAndO2oRelationships: PostgresRelationship[]
{
let sql = tableRelationshipsSql
const { data, error } = (await this.query(sql)) as PostgresMetaResult<PostgresRelationship[]>
if (error) {
return { data: null, error }
}
allTableM2oAndO2oRelationships = data
}
/*
* Adapted from:
* https://github.com/PostgREST/postgrest/blob/f9f0f79fa914ac00c11fbf7f4c558e14821e67e2/src/PostgREST/SchemaCache.hs#L392
*/
let allViewM2oAndO2oRelationships: PostgresRelationship[]
{
type ColDep = {
table_column: string
view_columns: string[]
}
type KeyDep = {
table_schema: string
table_name: string
view_schema: string
view_name: string
constraint_name: string
constraint_type: 'f' | 'f_ref' | 'p' | 'p_ref'
column_dependencies: ColDep[]
}
const { data: viewsKeyDependencies, error } = (await this.query(
allViewsKeyDependenciesSql
)) as PostgresMetaResult<KeyDep[]>
if (error) {
return { data: null, error }
}
const viewRelationships = allTableM2oAndO2oRelationships.flatMap((r) => {
const expandKeyDepCols = (
colDeps: ColDep[]
): { tableColumns: string[]; viewColumns: string[] }[] => {
const tableColumns = colDeps.map(({ table_column }) => table_column)
// https://gist.github.com/ssippe/1f92625532eef28be6974f898efb23ef?permalink_comment_id=3474581#gistcomment-3474581
const cartesianProduct = <T>(allEntries: T[][]): T[][] => {
return allEntries.reduce<T[][]>(
(results, entries) =>
results
.map((result) => entries.map((entry) => [...result, entry]))
.reduce((subResults, result) => [...subResults, ...result], []),
[[]]
)
}
const viewColumnsPermutations = cartesianProduct(colDeps.map((cd) => cd.view_columns))
return viewColumnsPermutations.map((viewColumns) => ({ tableColumns, viewColumns }))
}
const viewToTableKeyDeps = viewsKeyDependencies.filter(
(vkd) =>
vkd.table_schema === r.schema &&
vkd.table_name === r.relation &&
vkd.constraint_name === r.foreign_key_name &&
vkd.constraint_type === 'f'
)
const tableToViewKeyDeps = viewsKeyDependencies.filter(
(vkd) =>
vkd.table_schema === r.referenced_schema &&
vkd.table_name === r.referenced_relation &&
vkd.constraint_name === r.foreign_key_name &&
vkd.constraint_type === 'f_ref'
)
const viewToTableRelationships = viewToTableKeyDeps.flatMap((vtkd) =>
expandKeyDepCols(vtkd.column_dependencies).map(({ viewColumns }) => ({
foreign_key_name: r.foreign_key_name,
schema: vtkd.view_schema,
relation: vtkd.view_name,
columns: viewColumns,
is_one_to_one: r.is_one_to_one,
referenced_schema: r.referenced_schema,
referenced_relation: r.referenced_relation,
referenced_columns: r.referenced_columns,
}))
)
const tableToViewRelationships = tableToViewKeyDeps.flatMap((tvkd) =>
expandKeyDepCols(tvkd.column_dependencies).map(({ viewColumns }) => ({
foreign_key_name: r.foreign_key_name,
schema: r.schema,
relation: r.relation,
columns: r.columns,
is_one_to_one: r.is_one_to_one,
referenced_schema: tvkd.view_schema,
referenced_relation: tvkd.view_name,
referenced_columns: viewColumns,
}))
)
const viewToViewRelationships = viewToTableKeyDeps.flatMap((vtkd) =>
expandKeyDepCols(vtkd.column_dependencies).flatMap(({ viewColumns }) =>
tableToViewKeyDeps.flatMap((tvkd) =>
expandKeyDepCols(tvkd.column_dependencies).map(
({ viewColumns: referencedViewColumns }) => ({
foreign_key_name: r.foreign_key_name,
schema: vtkd.view_schema,
relation: vtkd.view_name,
columns: viewColumns,
is_one_to_one: r.is_one_to_one,
referenced_schema: tvkd.view_schema,
referenced_relation: tvkd.view_name,
referenced_columns: referencedViewColumns,
})
)
)
)
)
return [
...viewToTableRelationships,
...tableToViewRelationships,
...viewToViewRelationships,
]
})
allViewM2oAndO2oRelationships = viewRelationships
}
return {
data: allTableM2oAndO2oRelationships.concat(allViewM2oAndO2oRelationships),
error: null,
}
}
}
const allViewsKeyDependenciesSql = viewsKeyDependenciesSql.replaceAll(
'__EXCLUDED_SCHEMAS',
literal(DEFAULT_SYSTEM_SCHEMAS)
)