-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathutils.ts
198 lines (165 loc) · 5.07 KB
/
utils.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
191
192
193
194
195
196
197
198
// deno-lint-ignore-file no-explicit-any
import { type GraphQLClient, gql, _ } from "../deps.ts";
import type { Metadata, QueryTree } from "./client.gen.ts";
/**
* Format argument into GraphQL query format.
*/
function buildArgs(args: any): string {
const metadata: Metadata = args.__metadata || {};
// Remove unwanted quotes
const formatValue = (key: string, value: string) => {
// Special treatment for enumeration, they must be inserted without quotes
if (metadata[key]?.is_enum) {
return JSON.stringify(value).replace(/['"]+/g, "");
}
return JSON.stringify(value).replace(
/\{"[a-zA-Z]+":|,"[a-zA-Z]+":/gi,
(str) => {
return str.replace(/"/g, "");
}
);
};
if (args === undefined || args === null) {
return "";
}
const formattedArgs = Object.entries(args).reduce(
(acc: any, [key, value]) => {
// Ignore internal metadata key
if (key === "__metadata") {
return acc;
}
if (value !== undefined && value !== null) {
acc.push(`${key}: ${formatValue(key, value as string)}`);
}
return acc;
},
[]
);
if (formattedArgs.length === 0) {
return "";
}
return `(${formattedArgs})`;
}
/**
* Find QueryTree, convert them into GraphQl query
* then compute and return the result to the appropriate field
*/
async function computeNestedQuery(
query: QueryTree[],
client: GraphQLClient
): Promise<void> {
// Check if there is a nested queryTree to be executed
const isQueryTree = (value: any) => value["_queryTree"] !== undefined;
// Check if there is a nested array of queryTree to be executed
const isArrayQueryTree = (value: any[]) =>
value.every((v) => v instanceof Object && isQueryTree(v));
// Prepare query tree for final query by computing nested queries
// and building it with their results.
const computeQueryTree = async (value: any): Promise<string> => {
// Resolve sub queries if operation's args is a subquery
for (const op of value["_queryTree"]) {
await computeNestedQuery([op], client);
}
// push an id that will be used by the container
return buildQuery([
...value["_queryTree"],
{
operation: "id",
},
]);
};
// Remove all undefined args and assert args type
const queryToExec = query.filter((q): q is Required<QueryTree> => !!q.args);
for (const q of queryToExec) {
await Promise.all(
// Compute nested query for single object
Object.entries(q.args).map(async ([key, value]: any) => {
if (value instanceof Object && isQueryTree(value)) {
// push an id that will be used by the container
const getQueryTree = await computeQueryTree(value);
q.args[key] = await compute(getQueryTree, client);
}
// Compute nested query for array of object
if (Array.isArray(value) && isArrayQueryTree(value)) {
const tmp: any = q.args[key];
for (let i = 0; i < value.length; i++) {
// push an id that will be used by the container
const getQueryTree = await computeQueryTree(value[i]);
tmp[i] = await compute(getQueryTree, client);
}
q.args[key] = tmp;
}
})
);
}
}
/**
* Convert the queryTree into a GraphQL query
* @param q
* @returns
*/
export function buildQuery(q: QueryTree[]): string {
const query = q.reduce((acc, { operation, args }, i) => {
const qLen = q.length;
acc += ` ${operation} ${args ? `${buildArgs(args)}` : ""} ${
qLen - 1 !== i ? "{" : "}".repeat(qLen - 1)
}`;
return acc;
}, "");
return `{${query} }`;
}
/**
* Convert querytree into a Graphql query then compute it
* @param q | QueryTree[]
* @param client | GraphQLClient
* @returns
*/
export async function computeQuery<T>(
q: QueryTree[],
client: GraphQLClient
): Promise<T> {
await computeNestedQuery(q, client);
const query = buildQuery(q);
return await compute(query, client);
}
/**
* Return a Graphql query result flattened
* @param response any
* @returns
*/
export function queryFlatten<T>(response: any): T {
// Recursion break condition
// If our response is not an object or an array we assume we reached the value
if (!(response instanceof Object) || Array.isArray(response)) {
return response;
}
const keys = Object.keys(response);
if (keys.length != 1) {
// Dagger is currently expecting to only return one value
// If the response is nested in a way were more than one object is nested inside throw an error
throw new Error("Too many nested objects inside graphql response");
}
const nestedKey = keys[0];
return queryFlatten(response[nestedKey]);
}
/**
* Send a GraphQL document to the server
* return a flatten result
* @hidden
*/
export async function compute<T>(
query: string,
client: GraphQLClient
): Promise<T> {
let computeQuery: Awaited<T>;
try {
computeQuery = await client.request(
gql`
${query}
`
);
} catch (e: any) {
throw new Error(_.get(e, "response.errors[0].message", e.message));
}
return queryFlatten(computeQuery);
}