generated from discourse/discourse-plugin-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextract_app_events.mjs
400 lines (359 loc) · 11.6 KB
/
extract_app_events.mjs
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
import "dotenv/config";
import parser from "@babel/parser";
import _traverse from "@babel/traverse";
import * as t from "@babel/types";
import { Preprocessor } from "content-tag";
import fs from "fs";
import yaml from "js-yaml";
import path from "path";
import { promisify } from "util";
const discourseDir = process.env.DISCOURSE_CORE;
const traverse = _traverse.default;
const readdir = promisify(fs.readdir);
const readFile = promisify(fs.readFile);
const stat = promisify(fs.stat);
const GJSPreprocessor = new Preprocessor();
const EXCLUDED_DIR_PATTERNS = [
"/app/assets/javascripts/discourse/tests/",
"/discourse/tmp/",
"node_modules",
"/discourse/dist/",
"/discourse/vendor/",
"/discourse/public/",
"/discourse/spec/",
"/discourse/plugins/chat/test",
"/discourse/plugins/discourse-deprecation-collector/",
];
const UNPARSABLE_INDICATOR = "undefined";
const filesToDebug = [];
async function isExcludedDir(filePath) {
return EXCLUDED_DIR_PATTERNS.some((pattern) => filePath.includes(pattern));
}
async function parseFile(filePath) {
let hasAppEventsTrigger = { result: false };
let code = await readFile(filePath, "utf8");
const relativeFilePath = filePath.replace(discourseDir, "");
try {
if (filePath.endsWith(".gjs")) {
code = GJSPreprocessor.process(code);
}
const ast = parser.parse(code, {
sourceType: "module",
plugins: [["decorators", { version: "2023-11" }]],
errorRecovery: true,
});
const eventTriggers = [];
traverse(ast, {
CallExpression(path) {
extractAppEvents(
path,
relativeFilePath,
eventTriggers,
hasAppEventsTrigger
);
},
OptionalCallExpression(path) {
extractAppEventsFromOptionalExpressions(
path,
relativeFilePath,
eventTriggers,
hasAppEventsTrigger
);
},
});
return [eventTriggers, hasAppEventsTrigger];
} catch (error) {
console.error(`Error parsing file: ${filePath}`);
console.error(error);
return [[], false];
}
}
function extractAppEvents(path, filePath, eventTriggers, hasAppEventsTrigger) {
const { node } = path;
const { callee } = node;
// This first condition checks for the .trigger identifier
if (
t.isMemberExpression(callee) &&
t.isIdentifier(callee.property, { name: "trigger" }) &&
node.arguments.length > 0
) {
const { object } = callee;
// These conditions check that the object calling .trigger is referring to appEvents
if (
t.isIdentifier(object, { name: "appEvents" }) ||
(t.isMemberExpression(object) &&
t.isIdentifier(object.property, { name: "appEvents" })) ||
(t.isCallExpression(object) &&
t.isMemberExpression(object.callee) &&
t.isIdentifier(object.callee.property, { name: "lookup" }) &&
t.isStringLiteral(object.arguments[0], { value: "service:app-events" }))
) {
hasAppEventsTrigger.result = true;
const eventId = extractArgument(node.arguments[0]).argValue;
const location = node.loc;
const lineNumber = location ? location.start.line : null;
const args = node.arguments.slice(1).map((arg, index) => {
return {
...extractArgument(arg),
argPosition: index + 1,
};
});
const comments = extractComments(path);
eventTriggers.push({
eventId,
filePath,
lineNumber,
args,
comments,
});
}
}
}
function extractAppEventsFromOptionalExpressions(
path,
filePath,
eventTriggers,
hasAppEventsTrigger
) {
const { node } = path;
const { callee } = node;
if (
t.isOptionalMemberExpression(callee) &&
t.isIdentifier(callee.property, { name: "trigger" }) &&
node.arguments.length > 0
) {
const { object } = path.node.callee;
if (
t.isIdentifier(object, { name: "appEvents" }) ||
(t.isOptionalMemberExpression(object) &&
t.isIdentifier(object.property, { name: "appEvents" })) ||
(t.isOptionalCallExpression(object) &&
t.isOptionalMemberExpression(object.callee) &&
t.isIdentifier(object.callee.property, { name: "lookup" }) &&
t.isStringLiteral(object.arguments[0], { value: "service:app-events" }))
) {
hasAppEventsTrigger.result = true;
const eventId = extractArgument(node.arguments[0]).argValue;
const location = node.loc;
const lineNumber = location ? location.start.line : null;
const args = node.arguments.slice(1).map((arg, index) => {
return {
...extractArgument(arg),
argPosition: index + 1,
};
});
const comments = extractComments(path);
eventTriggers.push({
eventId,
filePath,
lineNumber,
args,
comments,
});
}
}
}
function extractArgument(argNode) {
let argValue, argType;
if (t.isStringLiteral(argNode)) {
argValue = argNode.value;
argType = "string";
} else if (t.isNumericLiteral(argNode)){
argValue = argNode.value;
argType = "integer";
} else if (t.isIdentifier(argNode)) {
argValue = argNode.name;
argType = "variable";
} else if (t.isMemberExpression(argNode)) {
argValue = extractNameFromMemberExpression(argNode);
argType = "property";
} else if (t.isThisExpression(argNode)) {
argValue = "this";
argType = "this";
} else if (t.isCallExpression(argNode)) {
let calleeObjectName;
// TODO: possibly some duplication here? quite nested code
if (t.isMemberExpression(argNode.callee)) {
argValue = extractNameFromMemberExpression(argNode.callee);
} else {
if (argNode.callee.object) {
calleeObjectName = t.isThisExpression(argNode.callee.object)
? "this"
: argNode.callee.object.name;
}
argValue = `${calleeObjectName}.${argNode.callee.property.name}`;
}
argType = "called_function";
} else if (t.isTemplateLiteral(argNode)) {
argValue = argNode.quasis.reduce((acc, quasi, index) => {
// empty string quasi value here is fine, just indicates that it's either a head or tail quasi that should have an expression interpolated
acc += quasi.value.raw;
const currExpression = argNode.expressions[index];
if (currExpression) {
if (t.isIdentifier(currExpression)) {
acc += currExpression.name;
} else if (t.isMemberExpression(currExpression)) {
acc += extractNameFromMemberExpression(currExpression);
} else if (t.isCallExpression(currExpression)) {
let calleeObjectName;
if (currExpression.callee.object) {
calleeObjectName = t.isThisExpression(currExpression.callee.object)
? "this"
: currExpression.callee.object.name;
}
acc += `${calleeObjectName}.${currExpression.callee.property.name}`;
}
}
return acc;
}, "");
argType = "templated_string";
} else if (t.isObjectExpression(argNode)) {
argValue = extractDetailsFromObjectExpression(argNode.properties);
argType = "object";
} else if (t.isSpreadElement(argNode)) {
argValue = argNode.argument.name;
argType = "spread_element";
} else if (t.isNullLiteral(argNode)) {
argValue = "null";
argType = "null";
} else {
argValue = UNPARSABLE_INDICATOR;
argType = UNPARSABLE_INDICATOR;
}
return { argValue, argType };
}
function extractDetailsFromObjectExpression(props) {
return props.reduce((result, prop) => {
const key = prop.key.name || prop.key.value;
let valueType;
if (t.isStringLiteral(prop.value)) {
valueType = "string";
} else if (t.isIdentifier(prop.value)) {
valueType = "variable";
} else if (t.isBooleanLiteral(prop.value)) {
valueType = "boolean";
} else if (t.isNumericLiteral(prop.value)) {
valueType = "integer";
} else if (t.isObjectExpression(prop.value)) {
valueType = "object";
} else if (t.isCallExpression(prop.value)) {
valueType = "called_function";
} else if (t.isMemberExpression(prop.value)) {
valueType = "property";
} else {
valueType = UNPARSABLE_INDICATOR;
}
result.push({ key, valueType });
return result;
}, []);
}
function extractNameFromMemberExpression(currExpression) {
let parts = [];
let currNode = currExpression;
while (t.isMemberExpression(currNode)) {
parts.unshift(currNode.property.name);
currNode = currNode.object;
}
if (t.isIdentifier(currNode)) {
parts.unshift(currNode.name);
} else if (t.isThisExpression(currNode)) {
parts.unshift("this");
}
return parts.join(".");
}
function extractComments(path) {
// to find comment, need to traverse to parent ExpressionStatement -
// In the Babel AST, comments are generally attached to statement-level nodes (like ExpressionStatement)
// or declaration nodes, rather than to expression nodes (like CallExpression).
const parentStatement = path.findParent((p) => t.isExpressionStatement(p));
if (!parentStatement || !parentStatement.node.leadingComments) {
return null;
}
return parentStatement.node.leadingComments
.reduce((commentLines, currentComment) => {
commentLines.push(currentComment.value.trim());
return commentLines;
}, [])
.join("\n");
}
async function parseDirectory(directoryPath) {
const eventTriggers = [];
const files = await readdir(directoryPath);
for (const file of files) {
const filePath = path.join(directoryPath, file);
if (await isExcludedDir(filePath)) {
continue;
}
const fileStat = await stat(filePath);
if (
fileStat.isFile() &&
(filePath.endsWith(".js") || filePath.endsWith(".gjs"))
) {
const [parsedTriggers, hasAppEventsTrigger] = await parseFile(filePath);
if (
hasAppEventsTrigger.result &&
parsedTriggers.filter(
(trigger) => trigger.eventId && !trigger.eventId.includes("undefined")
).length === 0
) {
console.log(`DEBUG THE FILE: ${filePath}`);
filesToDebug.push(filePath);
}
eventTriggers.push(...parsedTriggers);
} else if (fileStat.isDirectory()) {
eventTriggers.push(...(await parseDirectory(filePath)));
}
}
return eventTriggers;
}
// Main script
(async () => {
if (process.argv.length != 2) {
console.log(
"Usage: node extract_app_events.mjs, Remember to define DISCOURSE_CORE in an .env file"
);
process.exit(1);
}
const eventTriggers = await parseDirectory(discourseDir);
if (filesToDebug.length > 0) {
const filesToDebugFilePath = path.join(
".",
"scripts",
"files_to_debug.txt"
);
fs.writeFileSync(filesToDebugFilePath, filesToDebug.join("\n"));
}
const eventIdsFilePath = path.join(
".",
"lib",
"app_events_docs_generator",
"app_events",
"event-ids.yml"
);
const allEventIds = [
...new Set(eventTriggers.map((trigger) => trigger.eventId)),
].sort();
const eventIds = { app_event_ids: allEventIds };
fs.writeFileSync(
eventIdsFilePath,
"---\n" + yaml.dump(eventIds, { noArrayIndent: true }),
"utf8"
);
console.log(
`${allEventIds.length} Extracted event IDs saved to ${eventIdsFilePath}`
);
// Event triggers are saved without any further processing to group by filePath
// or by event ID intentionally, as this maintains flexibility in how we can
// use the raw data
const detailedOutputPath = path.join(
".",
"lib",
"app_events_docs_generator",
"app_events",
"app_events_details.json"
);
fs.writeFileSync(detailedOutputPath, JSON.stringify(eventTriggers, null, 2));
console.log(
`Detailed app events information saved to ${detailedOutputPath} with ${eventTriggers.length} event triggers`
);
})();