Newer
Older
import { client } from "@logilab/cwclientlibjs";
import { RqlQuery } from "@logilab/cwclientlibjs/build/client";
import { AuthProvider, DataProvider, DeleteResult } from "ra-core";
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
import { Schema } from "./Schema";
import { deduplicate } from "./utils/deduplicate";
// import authProvider from './authProvider';
// see https://marmelab.com/react-admin/Authentication.html
export const authProvider: AuthProvider = {
// authentication
login: (_params) => Promise.resolve(),
checkError: (_error) => Promise.resolve(),
checkAuth: (_params) => Promise.resolve(),
logout: () => Promise.resolve(),
getIdentity: () => Promise.resolve({ id: 0 }),
// authorization
getPermissions: (_params) => Promise.resolve(),
};
export function createDataProvider<S extends Schema<string>>(
rqlClient: client.CwRqlClient,
schema: S
): DataProvider {
function subjectRelationsNames(entityType: string) {
return deduplicate(
schema.relationsDefinitions
.filter(({ subject }) => subject === entityType)
.map(({ name }) => name)
);
}
function objectRelationsNames(entityType: string) {
return deduplicate(
schema.relationsDefinitions
.filter(({ object }) => object === entityType)
.map(({ name }) => name)
);
}
const getList: DataProvider["getList"] = async (
resource: string,
{ pagination, sort, filter }
) => {
const sortAttribute = sort.field === "id" ? "eid" : sort.field;
const attributesNames = ["eid", ...Object.keys(schema.entities[resource])];
const selection: string[] = [];
const restrictions: string[] = [];
let sortvariable = null;
attributesNames.forEach((key, idx) => {
const variable = `X${idx}`;
selection.push(variable);
restrictions.push(`X ${key} ${variable}`);
if (key === sortAttribute) {
sortvariable = variable;
}
});
// Handle filters
restrictions.push(
...Object.entries(filter).map(([attrName, attrValue]) => {
return `EXISTS(X ${attrName} ~= '%${attrValue}%')`;
})
);
const total = await rqlClient
.queryRows(`Any Count(${selection[0]}) WHERE ${restrictions.join(",")}`)
.then((rows) => rows[0][0]);
return rqlClient
.queryRows(
`Any ${selection.join(", ")} ORDERBY ${sortvariable} ${
sort.order
} LIMIT ${pagination.perPage} OFFSET ${
(pagination.page - 1) * pagination.perPage
} WHERE ${restrictions.join(", ")}`,
{}
)
.then((rows) => {
return {
data: rows.map((row) =>
row.reduce(
(agg, attributeValue, idx) => ({
[attributesNames[idx]]: attributeValue,
...agg,
}),
{ id: row[0] }
)
),
total,
};
});
};
const getOne: DataProvider["getOne"] = async (resource: string, params) => {
// Getting attributes
const attributesNames = [...Object.keys(schema.entities[resource])];
const selection: string[] = [];
const restrictions: string[] = [];
attributesNames.forEach((key, idx) => {
const variable = `X${idx}`;
selection.push(variable);
restrictions.push(`X ${key} ${variable}`);
});
const result = await rqlClient.queryRows(
`Any ${selection.join(",")} Where ${restrictions.join(",")}, X eid ${
params.id
}`
);
const row = result[0];
const entity = row.reduce(
(agg, attributeValue, idx) => ({
[attributesNames[idx]]: attributeValue,
...agg,
}),
{ eid: params.id, id: params.id }
);
// Getting subject relations
const subjectRelations = schema.relationsDefinitions.filter(
({ subject }) => subject === resource
);
for (const relation of subjectRelations) {
const result = await rqlClient.queryRows(
`Any TARGET Where X ${relation.name} TARGET, X eid ${params.id}, TARGET is ${relation.object}`
);
(entity[relation.name] ??= []).push(...result.map((row) => row[0]));
}
// Getting object relations
const objectRelations = schema.relationsDefinitions.filter(
({ object }) => object === resource
);
for (const relation of objectRelations) {
const result = await rqlClient.queryRows(
`Any TARGET Where TARGET ${relation.name} X, X eid ${params.id}, TARGET is ${relation.subject}`
);
(entity[`reverse_${relation.name}`] ??= []).push(
...result.map((row) => row[0])
);
}
return { data: entity };
};
const getMany: DataProvider["getMany"] = async (resource, params) => {
// FIXME handle several params id and refactor code to use GetOne
// Getting attributes
const attributesNames = [...Object.keys(schema.entities[resource])];
const selection: string[] = [];
const restrictions: string[] = [];
attributesNames.forEach((key, idx) => {
const variable = `X${idx}`;
selection.push(variable);
restrictions.push(`X ${key} ${variable}`);
});
const result = await rqlClient.queryRows(
`Any ${selection.join(",")} Where ${restrictions.join(
","
)}, X eid IN (${params.ids.join(",")})`
);
const entities = result.map((row, rowIdx) =>
row.reduce(
(agg, attributeValue, idx) => ({
[attributesNames[idx]]: attributeValue,
...agg,
}),
{ id: params.ids[rowIdx] }
)
);
return { data: entities };
};
const getManyReference: DataProvider["getManyReference"] = (
_resource,
_params
) => Promise.reject("Not implemented");
const update: DataProvider["update"] = async (resource, { data, id }) => {
const attributeUpdates: string[] = [];
const relationUpdates: string[] = [];
const restrictionsUpdate: string[] = [`X is ${resource}, X eid ${id}`];
let counter = 0;
Object.entries(data).forEach(([key, value]) => {
if (key in schema.entities[resource]) {
attributeUpdates.push(`X ${key} ${JSON.stringify(value)}`);
} else if (subjectRelationsNames(resource).includes(key)) {
if (!Array.isArray(value)) {
throw new Error(`An array is expected for relation ${key}.`);
}
relationUpdates.push(`X ${key} Y${counter}`);
if (value.length > 0) {
restrictionsUpdate.push(`Y${counter} eid IN (${value.join(", ")})`);
}
counter += 1;
} else if (
key.startsWith("reverse_") &&
objectRelationsNames(resource).includes(key.replace("reverse_", ""))
) {
if (!Array.isArray(value)) {
throw new Error(`An array is expected for relation ${key}.`);
}
relationUpdates.push(`Y${counter} ${key.replace("reverse_", "")} X`);
if (value.length > 0) {
restrictionsUpdate.push(`Y${counter} eid IN (${value.join(", ")})`);
}
const queries: RqlQuery[] = [
[
`
SET
${[...attributeUpdates, ...relationUpdates].join(", ")}
WHERE
${restrictionsUpdate.join(", ")}`,
{},
],
];
if (relationUpdates.length !== 0) {
queries.unshift([
`
DELETE
${relationUpdates.join(", ")}
WHERE
X is ${resource}, X eid ${id}`,
{},
]);
}
await rqlClient.transactionV2(queries);
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
return Promise.resolve({ data: { ...data, id } });
};
const updateMany: DataProvider["updateMany"] = (_resource, _params) =>
Promise.reject("Not implemented");
const create: DataProvider["create"] = async (resource, { data }) => {
const assignments: string[] = [];
const restrictions: string[] = [];
Object.entries(data).forEach(([key, value]) => {
if (key in schema.entities[resource]) {
assignments.push(`X ${key} ${JSON.stringify(value)}`);
}
});
let counter = 0;
function addRelation(
relationName: string,
resourceRole: "subject" | "object",
targetId: number
) {
const relationTargetVariable = `Y${counter++}`;
if (resourceRole === "subject") {
assignments.push(`X ${relationName} ${relationTargetVariable}`);
} else {
assignments.push(`${relationTargetVariable} ${relationName} X`);
}
restrictions.push(`${relationTargetVariable} eid ${targetId}`);
}
function toArray(idOrIds: number | number[] | undefined) {
if (Array.isArray(idOrIds)) {
return idOrIds;
}
if (idOrIds === undefined) {
return [];
}
return [idOrIds];
}
for (const relationName of subjectRelationsNames(resource)) {
const ids = toArray(data[relationName]);
ids.forEach((id) => addRelation(relationName, "subject", id));
}
for (const relationName of objectRelationsNames(resource)) {
const ids = toArray(data[`reverse_${relationName}`]);
ids.forEach((id) => addRelation(relationName, "object", id));
}
const result = await rqlClient.queryRows(`
INSERT ${resource} X:
${assignments.join(", ")}
${restrictions.length > 0 ? "WHERE " + restrictions.join(", ") : ""}
`);
const eid = result[0][0];
return Promise.resolve({ data: { ...data, id: eid } });
};
const _delete: DataProvider["delete"] = async (resource, data) => {
await rqlClient.queryRows(`
DELETE ${resource} X WHERE X eid ${data.id}
`);
// FIXME: find how to correctly specify type without "any"
return { data: data.previousData } as DeleteResult<any>;
};
const deleteMany: DataProvider["deleteMany"] = async (resource, data) => {
await rqlClient.queryRows(`
DELETE ${resource} X WHERE X eid IN (${data.ids.join(", ")})
`);
return { data: data.ids };
};