@stoker-platform/cli 0.5.89 → 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 +4 -4
- package/lib/src/ops/auditRelations.js +26 -17
- package/package.json +1 -1
package/lib/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stoker-platform/cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.90",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"main": "./lib/src/main.js",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"@google-cloud/secret-manager": "^6.1.1",
|
|
25
25
|
"@google-cloud/storage": "^7.19.0",
|
|
26
26
|
"@inquirer/prompts": "^8.4.2",
|
|
27
|
-
"@stoker-platform/node-client": "0.5.
|
|
28
|
-
"@stoker-platform/types": "0.5.
|
|
29
|
-
"@stoker-platform/utils": "0.5.
|
|
27
|
+
"@stoker-platform/node-client": "0.5.62",
|
|
28
|
+
"@stoker-platform/types": "0.5.41",
|
|
29
|
+
"@stoker-platform/utils": "0.5.53",
|
|
30
30
|
"algoliasearch": "^5.51.0",
|
|
31
31
|
"commander": "^14.0.0",
|
|
32
32
|
"cross-spawn": "^7.0.6",
|
|
@@ -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) {
|
|
@@ -108,7 +117,7 @@ export const auditRelations = async (options) => {
|
|
|
108
117
|
continue;
|
|
109
118
|
}
|
|
110
119
|
if (singleFieldRelationNames.includes(field.name)) {
|
|
111
|
-
if (!isEqual(record[`${field.name}_Single`], mainRelation)) {
|
|
120
|
+
if (!isEqual(record[`${field.name}_Single`], { ...mainRelation, id })) {
|
|
112
121
|
console.log(`${collectionName} ${doc.id} - Field ${field.name} does not have a single relation`);
|
|
113
122
|
continue;
|
|
114
123
|
}
|