deno.land / x / pasta@0.0.6 / src / database / typed-statement-builder.ts

typed-statement-builder.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
// Automatically generated by PASTAimport { associations, AssociationsOf, ColumnNamesOf, ColumnsOf, KeysOf, MxNAssociation, NAssociation, TableName,} from "./schema.ts";
import { sql } from "https://deno.land/x/pasta@0.0.5/mod.ts";
type ReturningBuilder<T extends TableName> = sql.SqlBuilder & { returning: (options: ColumnNamesOf<T>) => ReturningBuilder<T>;};type InsertBuilder<T extends TableName> = ReturningBuilder<T> & { associate: (associationMap: AssociationsOf<T>) => InsertBuilder<T>;};type SelectBuilder<T extends TableName> = ReturningBuilder<T> & { where: (whereMap: ColumnsOf<T>) => SelectBuilder<T>; unique: (whereMap: KeysOf<T>) => SelectBuilder<T>;};
function addReturning<T extends TableName>(builder: sql.SqlBuilder): ReturningBuilder<T> { return { ...builder, returning: function ( options: ColumnNamesOf<T>, ): ReturningBuilder<T> { return addReturning(sql.returning(builder, options.map(String))); }, };}
function addSelectReturning<T extends TableName>(builder: sql.SqlBuilder) { return { ...builder, returning: function (options: ColumnNamesOf<T>): ReturningBuilder<T> { return addSelectReturning(sql.selection(builder, options.map(String))); }, };}
function addWhere<T extends TableName>(builder: ReturningBuilder<T>) { return { ...builder, where: function (whereMap: ColumnsOf<T>): ReturningBuilder<T> { return addSelectReturning(sql.where(builder, whereMap)); }, } as SelectBuilder<T>;}
function addUnique<T extends TableName>(builder: ReturningBuilder<T>) { return { ...builder, unique: function (whereMap: KeysOf<T>): ReturningBuilder<T> { return addSelectReturning(sql.where(builder, whereMap)); }, } as SelectBuilder<T>;}
function addAssociate<T extends TableName>( table: T, builder: ReturningBuilder<T>,): InsertBuilder<T> { const builderWithMxNAssociation = <T extends TableName>( builder: ReturningBuilder<T>, association: MxNAssociation, associatedValues: Record<string, unknown>, ) => { const { fks, associativeTable } = association; const targetAssociationColumns = Object.keys(fks); const sourceColumns = targetAssociationColumns.map(( c, ) => (sql.column(...fks[c]))); const returningFksAssociation = Object.values(fks).filter(( [fkTable], ) => (fkTable == association.table)) .map(([_, fkColumn]) => (fkColumn));
const withStatement = sql.makeInsertWith( association.table, sql.returning( sql.makeInsert(association.table, associatedValues), returningFksAssociation, ), sql.makeInsertWith( table, builder, sql.makeInsertFrom(associativeTable, sourceColumns, targetAssociationColumns), ), ); return addReturning<T>(withStatement); };
const builderWith1xNAssociation = ( builder: ReturningBuilder<T>, association: NAssociation, associatedValues: Record<string, unknown>, ) => { const { fks, table: associedTable } = association;
const returningFksAssociation = Object.values(fks);
const sourceFkColumns = Object.keys(fks).map(( k, ) => (sql.column(table, fks[k])));
const sourceValueColumns = Object.keys(associatedValues).map(( k, ) => (sql.column(String(associatedValues[k]))));
const withStatement = sql.makeInsertWith( table, sql.returning(builder, returningFksAssociation), sql.makeInsertFrom( associedTable, [...sourceFkColumns, ...sourceValueColumns], [...Object.keys(fks), ...Object.keys(associatedValues)], ), ); return addReturning<T>(withStatement); };
const associate = (associationMap: AssociationsOf<T>) => { const newBuilder = Object.entries(associationMap).reduce( (previous, [associated, associatedValues]) => { const association = associations[table][associated]; const pks = association.kind === "1xN" ? Object.values(association.fks) : Object.values(association.fks).filter(( [associatedTable, _column], ) => associatedTable === table).map(([_table, column]) => column);
const returningPks = previous.returning(pks as ColumnNamesOf<T>);
return association.kind === "1xN" ? builderWith1xNAssociation(returningPks, association, associatedValues) : builderWithMxNAssociation(returningPks, association, associatedValues); }, builder, );
return addAssociate(table, newBuilder); }; return { ...builder, associate };}
// Public functions
function insert<T extends TableName>(table: T): (valueMap: ColumnsOf<T>) => InsertBuilder<T> { return function (valueMap) { return addAssociate<T>( table, addReturning<T>(sql.makeInsert(table, valueMap)), ); };}
function upsert<T extends TableName>( table: T,): (insertValues: ColumnsOf<T>, updateValues?: ColumnsOf<T>) => ReturningBuilder<T> { return (insertValues, updateValues) => addReturning(sql.makeUpsert(table, insertValues, updateValues));}
function update<T extends TableName>( table: T,): (keyValues: KeysOf<T>, setValues: ColumnsOf<T>) => ReturningBuilder<T> { return (keyValues, setValues) => addReturning(sql.makeUpdate(table, keyValues, setValues));}
function insertWith<T1 extends TableName>(contextTable: T1, context: ReturningBuilder<T1>) { return function <T2 extends TableName>(insert: ReturningBuilder<T2>) { return addReturning<T2>( sql.makeInsertWith(contextTable, context, insert), ); };}
function select<T extends TableName>(table: T): () => SelectBuilder<T> { return () => addUnique<T>(addWhere<T>(addSelectReturning<T>(sql.makeSelect(table))));}
export { insert, insertWith, select, update, upsert };export type { InsertBuilder, ReturningBuilder, SelectBuilder };
pasta

Version Info

Tagged at
a year ago