@stoker-platform/cli 0.5.90 → 0.5.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/package.json +1 -1
- package/lib/src/ops/auditRelations.js +25 -16
- package/package.json +1 -1
package/lib/package.json
CHANGED
|
@@ -8,38 +8,47 @@ export const auditRelations = async (options) => {
|
|
|
8
8
|
await initializeStoker(options.mode || "production", options.tenant, join(process.cwd(), "lib", "main.js"), join(process.cwd(), "lib", "collections"));
|
|
9
9
|
const schema = await fetchCurrentSchema();
|
|
10
10
|
const db = getFirestore();
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
const tenantPrefix = `tenants/${options.tenant}`;
|
|
12
|
+
const recordByDocumentPath = new Map();
|
|
13
|
+
const collectionDocsByName = new Map();
|
|
14
|
+
for (const [collectionName] of Object.entries(schema.collections)) {
|
|
14
15
|
console.log(`Loading ${collectionName}...`);
|
|
15
16
|
const collectionSnapshot = await db.collectionGroup(collectionName).get();
|
|
17
|
+
const tenantDocs = collectionSnapshot.docs.filter((doc) => doc.ref.path.includes(tenantPrefix));
|
|
18
|
+
collectionDocsByName.set(collectionName, tenantDocs);
|
|
19
|
+
for (const doc of tenantDocs) {
|
|
20
|
+
recordByDocumentPath.set(doc.ref.path, doc.data());
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
for (const [collectionName, collectionSchema] of Object.entries(schema.collections)) {
|
|
24
|
+
const collectionDocs = collectionDocsByName.get(collectionName) || [];
|
|
16
25
|
console.log(`Auditing ${collectionName}...`);
|
|
17
|
-
|
|
18
|
-
if (
|
|
19
|
-
|
|
26
|
+
for (const field of collectionSchema.fields) {
|
|
27
|
+
if ("collection" in field) {
|
|
28
|
+
field.includeFields ||= [];
|
|
29
|
+
if (!field.includeFields.includes("Collection_Path")) {
|
|
30
|
+
field.includeFields.push("Collection_Path");
|
|
31
|
+
}
|
|
32
|
+
if (!field.includeFields.includes("deleted")) {
|
|
33
|
+
field.includeFields.push("deleted");
|
|
34
|
+
}
|
|
20
35
|
}
|
|
21
|
-
|
|
22
|
-
});
|
|
36
|
+
}
|
|
23
37
|
const singleFieldRelations = getSingleFieldRelations(collectionSchema, collectionSchema.fields);
|
|
24
38
|
const singleFieldRelationNames = Array.from(singleFieldRelations).map((field) => field.name);
|
|
25
|
-
for (const doc of
|
|
26
|
-
if (!doc.ref.path.includes(`tenants/${options.tenant}`)) {
|
|
27
|
-
continue;
|
|
28
|
-
}
|
|
39
|
+
for (const doc of collectionDocs) {
|
|
29
40
|
const record = doc.data();
|
|
30
41
|
for (const field of collectionSchema.fields) {
|
|
31
42
|
if ("collection" in field) {
|
|
32
43
|
field.includeFields ||= [];
|
|
33
|
-
field.includeFields.push("Collection_Path");
|
|
34
|
-
field.includeFields.push("deleted");
|
|
35
44
|
const relationCollection = schema.collections[field.collection];
|
|
36
45
|
if (record[field.name]) {
|
|
37
46
|
for (const relationRecord of Object.entries(record[field.name])) {
|
|
38
47
|
const [id, relation] = relationRecord;
|
|
39
48
|
const mainRelation = relation;
|
|
40
49
|
const ref = getFirestorePathRef(db, mainRelation.Collection_Path, options.tenant);
|
|
41
|
-
const
|
|
42
|
-
const source =
|
|
50
|
+
const sourceDocRef = ref.doc(id);
|
|
51
|
+
const source = recordByDocumentPath.get(sourceDocRef.path);
|
|
43
52
|
if (!source) {
|
|
44
53
|
if (field.preserve) {
|
|
45
54
|
for (const includeField of field.includeFields) {
|