-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathgenerate-extensions-registry.js
More file actions
548 lines (502 loc) · 17.4 KB
/
Copy pathgenerate-extensions-registry.js
File metadata and controls
548 lines (502 loc) · 17.4 KB
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
const path = require('path');
const fs = require('fs').promises;
const shell = require('shelljs');
const {
validateExtension,
validateNoDuplicates,
} = require('./lib/ExtensionValidator');
const { getExtensionReferencePagePath } = require('./lib/WikiHelpLink');
const args = require('minimist')(process.argv.slice(2));
/** @typedef {import('./types').ExtensionShortHeader} ExtensionShortHeader */
/** @typedef {import('./types').BehaviorShortHeader} BehaviorShortHeader */
/** @typedef {import('./types').ObjectShortHeader} ObjectShortHeader */
/** @typedef {import('./types').RegistryItem} RegistryItem */
/** @typedef {import('./types').ExtensionsDatabase} ExtensionsDatabase */
/** @typedef {import('./types').ExtensionHeader} ExtensionHeader */
/** @typedef {import('./types').ExtensionWithFileInfo} ExtensionWithFileInfo */
/** @typedef {import('./types').ExtensionTier} ExtensionTier */
/** @typedef {import('./types').Extension} Extension */
/** @typedef {import('./types').EventsBasedObject} EventsBasedObject */
/** @typedef {import('./types').EventsBasedObjectInsideExtensionShortHeader} EventsBasedObjectInsideExtensionShortHeader */
/** @typedef {import('./types').EventsBasedBehavior} EventsBasedBehavior */
/** @typedef {import('./types').EventsBasedBehaviorInsideExtensionShortHeader} EventsBasedBehaviorInsideExtensionShortHeader */
/** @typedef {import('./types').EventsFunction} EventsFunction */
/** @typedef {import('./types').EventsFunctionInsideExtensionShortHeader} EventsFunctionInsideExtensionShortHeader */
const extensionsBasePath = path.join(__dirname, '..', 'extensions');
const reviewedExtensionsTier = 'reviewed';
const communityExtensionsTier = 'community';
const distBasePath = path.join(__dirname, '..', 'dist');
const distDatabasesPath = path.join(distBasePath, 'extensions-database');
const distExtensionsPath = path.join(distBasePath, 'extensions');
const extensionsBaseUrl = 'https://resources.gdevelop-app.com/extensions';
/**
* @type {Set<string>}
*/
const extensionsWithoutValidation = new Set([]);
const extensionsRequiring3DPhysics = new Set([
'AdvancedJump3D',
'PhysicsCharacter3DAnimator',
'PhysicsCharacter3DKeyMapper',
'PhysicsEllipseMovement3D',
]);
/**
* @param {string} path
* @param {any} object
* @returns {Promise<void>}
*/
const writeJSONFile = (path, object) =>
fs.writeFile(path, JSON.stringify(object, null, 2));
/**
* Reads the extension files and parses their JSON.
* @param {string} folderPath
* @param {ExtensionTier} tier
* @returns {Promise<ExtensionWithFileInfo[]>}
*/
const readExtensionsFromFolder = async (folderPath, tier) => {
const filenames = await fs.readdir(folderPath);
const filteredFilenames = filenames.filter((name) => name.endsWith('.json'));
return await Promise.all(
/** @returns {Promise<ExtensionWithFileInfo>} */
filteredFilenames.map(async (filename) => {
const content = await fs.readFile(
path.join(folderPath, filename),
'utf8'
);
try {
const extension = JSON.parse(content);
/** @type {ExtensionWithFileInfo} */
const extensionWithFileInfo = {
state: 'success',
filename,
tier,
extension,
};
return extensionWithFileInfo;
} catch (error) {
/** @type {ExtensionWithFileInfo} */
const extensionWithErroredFileInfo = {
state: 'error',
filename,
tier,
// @ts-ignore
error,
};
return extensionWithErroredFileInfo;
}
})
);
};
/**
* Find all required behaviors including transitive ones.
* @param {Extension} extension
* @param {EventsBasedBehavior} behavior
* @param {Array<string>} requiredBehaviorTypes
*/
const findAllRequiredBehaviorTypes = (
extension,
behavior,
requiredBehaviorTypes = []
) => {
for (const propertyDescriptor of behavior.propertyDescriptors) {
if (propertyDescriptor.type == 'Behavior') {
const requiredBehaviorType = propertyDescriptor.extraInformation[0];
const extensionPrefix = extension.name + '::';
if (!requiredBehaviorTypes.includes(requiredBehaviorType)) {
requiredBehaviorTypes.push(requiredBehaviorType);
if (requiredBehaviorType.startsWith(extensionPrefix)) {
const behaviorName = requiredBehaviorType.substring(
extensionPrefix.length
);
const requiredBehavior = extension.eventsBasedBehaviors.find(
(behavior) => behavior.name === behaviorName
);
if (!requiredBehavior) {
throw new Error(
'Required behavior: ' +
requiredBehaviorTypes +
' is missing in the extension.'
);
}
findAllRequiredBehaviorTypes(
extension,
requiredBehavior,
requiredBehaviorTypes
);
}
}
}
}
return requiredBehaviorTypes;
};
/**
* @param {EventsFunction[]} eventFunctions
* @param {EventsFunction} eventFunction
* @returns {EventsFunctionInsideExtensionShortHeader}
*/
const formatEventFunctionInsideExtensionShortHeader = (
eventFunctions,
eventFunction
) => {
if (eventFunction.functionType === 'ActionWithOperator') {
const getterFunction = eventFunctions.find(
(otherEventsFunction) =>
otherEventsFunction.name === eventFunction.getterName
);
if (getterFunction) {
return {
name: eventFunction.name,
fullName: getterFunction.fullName,
description:
'Change ' + (getterFunction.description || getterFunction.fullName),
functionType: 'Action',
};
} else {
return {
name: eventFunction.name,
fullName: eventFunction.fullName,
description: 'Change ' + eventFunction.description,
functionType: 'Action',
};
}
}
if (eventFunction.functionType === 'ExpressionAndCondition') {
return {
name: eventFunction.name,
fullName: eventFunction.fullName,
description: 'Compare ' + eventFunction.description,
functionType: 'Condition',
};
}
return {
name: eventFunction.name,
fullName: eventFunction.fullName,
description: eventFunction.description,
functionType: eventFunction.functionType,
};
};
/**
* @param {EventsBasedBehavior} eventsBasedBehavior
* @returns {EventsBasedBehaviorInsideExtensionShortHeader}
*/
const formatEventsBasedBehaviorInsideExtensionShortHeader = (
eventsBasedBehavior
) => {
return {
description: eventsBasedBehavior.description,
fullName: eventsBasedBehavior.fullName,
name: eventsBasedBehavior.name,
objectType: eventsBasedBehavior.objectType,
eventsFunctions: filterEventsFunctions(
eventsBasedBehavior.eventsFunctions
).map((eventsFunction) =>
formatEventFunctionInsideExtensionShortHeader(
eventsBasedBehavior.eventsFunctions,
eventsFunction
)
),
};
};
/**
* @param {EventsBasedObject} eventsBasedObject
* @returns {EventsBasedObjectInsideExtensionShortHeader}
*/
const formatEventsBasedObjectInsideExtensionShortHeader = (
eventsBasedObject
) => {
return {
description: eventsBasedObject.description,
fullName: eventsBasedObject.fullName,
name: eventsBasedObject.name,
defaultName: eventsBasedObject.defaultName,
eventsFunctions: filterEventsFunctions(
eventsBasedObject.eventsFunctions
).map((eventsFunction) =>
formatEventFunctionInsideExtensionShortHeader(
eventsBasedObject.eventsFunctions,
eventsFunction
)
),
};
};
/** @param {Array<EventsBasedBehavior>} behaviors */
const filterEventsBasedBehaviors = (behaviors) =>
behaviors.filter((behavior) => !behavior.private);
/** @param {Array<EventsBasedObject>} objects */
const filterEventsBasedObjects = (objects) =>
objects.filter((object) => !object.private);
/** @param {Array<EventsFunction>} eventsFunctions */
const filterEventsFunctions = (eventsFunctions) =>
eventsFunctions.filter(
(eventFunction) =>
// Lifecycle functions, which have no full names, are never shown.
// ActionWithOperator have no full name but will read it from their associated getter.
(eventFunction.fullName ||
eventFunction.functionType === 'ActionWithOperator') &&
// Private functions are never shown.
!eventFunction.private
);
(async () => {
try {
shell.mkdir('-p', distBasePath);
shell.mkdir('-p', distExtensionsPath);
shell.mkdir('-p', distDatabasesPath);
const reviewedExtensionWithFileInfos = await readExtensionsFromFolder(
path.join(extensionsBasePath, reviewedExtensionsTier),
reviewedExtensionsTier
);
const communityExtensionWithFileInfos = await readExtensionsFromFolder(
path.join(extensionsBasePath, communityExtensionsTier),
communityExtensionsTier
);
const allExtensionWithFileInfos = [
...reviewedExtensionWithFileInfos,
...communityExtensionWithFileInfos,
];
const allTagsSet = new Set();
const allCategoriesSet = new Set();
/** @type {ExtensionShortHeader[]} */
const extensionShortHeaders = [];
/** @type {Array<BehaviorShortHeader>} */
const behaviorShortHeaders = [];
/** @type {Array<ObjectShortHeader>} */
const objectShortHeaders = [];
let totalErrors = 0;
let fatalErrors = 0;
let fixableErrors = 0;
const errors = validateNoDuplicates(allExtensionWithFileInfos);
errors.forEach((error) => {
totalErrors++;
fatalErrors++;
shell.echo(`❌ ${error.message}`);
});
await Promise.all(
allExtensionWithFileInfos.map(async (extensionWithFileInfo) => {
if (extensionWithFileInfo.state === 'error') {
const error = extensionWithFileInfo.error;
shell.echo(
`\n❌ Unable to open extension in file ${extensionWithFileInfo.filename}: ${error.message}\n`
);
totalErrors++;
fatalErrors++;
return;
}
const { extension, tier } = extensionWithFileInfo;
const { name } = extension;
// Check for errors:
if (extensionsWithoutValidation.has(name)) {
shell.echo(`ℹ️ Ignoring validation for extension "${name}".`);
} else {
const errors = await validateExtension(extensionWithFileInfo);
if (errors.length !== 0) {
shell.echo(
`\n❌ ${errors.length} Error${
errors.length > 1 ? 's' : ''
} found in extension '${name}':\n`
);
errors.forEach((error) => {
totalErrors++;
if (error.fix)
if (args['fix']) {
totalErrors--;
error.fix();
} else fixableErrors++;
shell.echo(` ⟶ ❌${error.fix ? ' (🔧)' : ''} ${error.message}`);
});
}
}
// Override the base extensions when fixing
if (args['fix'])
await writeJSONFile(
path.join(extensionsBasePath, tier, `${name}.json`),
extension
);
// Convert back to the old format for tags.
if (Array.isArray(extension.tags)) {
extension.tags = extension.tags.join(',');
}
// Generate the headers of the extension
/** @type {RegistryItem} */
const registryItem = {
tier,
authorIds: extension.authorIds,
extensionNamespace: extension.extensionNamespace,
fullName: extension.fullName,
name,
version: extension.version,
url: `${extensionsBaseUrl}/${name}.json`,
headerUrl: `${extensionsBaseUrl}/${name}-header.json`,
//@ts-ignore Conversion to string done above
tags: extension.tags,
category: extension.category || 'General',
previewIconUrl: extension.previewIconUrl,
gdevelopVersion: extension.gdevelopVersion,
changelog: extension.changelog?.map(({ version, breaking }) => ({
version,
breaking: Array.isArray(breaking) ? breaking.join('\n') : breaking,
})),
};
// Some part of the extension are filtered if private or internal.
const eventsBasedBehaviors = filterEventsBasedBehaviors(
extension.eventsBasedBehaviors
);
const eventsFunctions = filterEventsFunctions(
extension.eventsFunctions
);
const eventsBasedObjects = filterEventsBasedObjects(
extension.eventsBasedObjects || []
);
/** @type {ExtensionShortHeader} */
const extensionShortHeader = {
...registryItem,
shortDescription: extension.shortDescription,
fullName: extension.fullName,
name,
eventsBasedBehaviorsCount: eventsBasedBehaviors.length,
eventsFunctionsCount: eventsFunctions.length,
helpPath: extension.helpPath || getExtensionReferencePagePath(name),
requiredExtensions: extension.requiredExtensions,
};
if (tier === 'reviewed') {
extensionShortHeader.eventsBasedBehaviors = eventsBasedBehaviors.map(
formatEventsBasedBehaviorInsideExtensionShortHeader
);
extensionShortHeader.eventsFunctions = eventsFunctions.map(
(eventsFunction) =>
formatEventFunctionInsideExtensionShortHeader(
extension.eventsFunctions,
eventsFunction
)
);
extensionShortHeader.eventsBasedObjects = eventsBasedObjects.map(
formatEventsBasedObjectInsideExtensionShortHeader
);
}
extensionShortHeaders.push(extensionShortHeader);
/** @type {ExtensionHeader} */
const extensionHeader = {
...extensionShortHeader,
description: Array.isArray(extension.description)
? extension.description.join('\n')
: extension.description,
iconUrl: extension.iconUrl,
};
/** @type {Array<BehaviorShortHeader>} */
behaviorShortHeaders.push.apply(
behaviorShortHeaders,
filterEventsBasedBehaviors(extension.eventsBasedBehaviors).map(
(behavior) => ({
...registryItem,
extensionName: name,
name: behavior.name,
fullName: behavior.fullName,
description: behavior.description,
objectType: behavior.objectType,
allRequiredBehaviorTypes: findAllRequiredBehaviorTypes(
extension,
behavior
),
requiredExtensions: extension.requiredExtensions,
})
)
);
/** @type {Array<ObjectShortHeader>} */
objectShortHeaders.push.apply(
objectShortHeaders,
extension.eventsBasedObjects
? extension.eventsBasedObjects.map((object) => ({
...registryItem,
extensionName: name,
name: object.name,
fullName: object.fullName,
description: object.description,
}))
: []
);
extension.tags.split(',').forEach(
/** @param {string} tag */
(tag) => {
allTagsSet.add(tag.trim().toLowerCase());
}
);
if (extension.category) {
allCategoriesSet.add(extension.category);
}
await writeJSONFile(
path.join(distExtensionsPath, `${name}.json`),
extension
);
await writeJSONFile(
path.join(distExtensionsPath, `${name}-header.json`),
extensionHeader
);
})
);
if (totalErrors) {
shell.echo(
`\n\n❌ ${totalErrors} Error${
totalErrors > 1 ? 's' : ''
} found in extensions - please fix ${
totalErrors > 1 ? 'them' : 'it'
} before generating the registry.`
);
if (!args['disable-exit-code'] && fixableErrors)
shell.echo(
`\n\n🔧 ${fixableErrors} Error${
fixableErrors > 1 ? 's are' : ' is'
} auto-fixable - pass the argument --fix to fix them automatically.`
);
if (fatalErrors) {
shell.exit(args['disable-exit-code'] ? 0 : 1);
}
}
const views = JSON.parse(
await fs.readFile(path.join(extensionsBasePath, 'views.json'), 'utf8')
);
// Write the registry
/** @type {ExtensionsDatabase} */
const registry = {
version: '0.0.1',
allTags: Array.from(allTagsSet),
allCategories: Array.from(allCategoriesSet),
extensionShortHeaders,
behavior: {
headers: behaviorShortHeaders,
views: {
default: {
firstIds: views.default.firstBehaviorIds,
},
},
},
object: {
headers: objectShortHeaders,
views: {
default: {
firstIds: views.default.firstObjectIds,
},
},
},
views: {
default: {
firstExtensionIds: views.default.firstExtensionIds,
},
},
};
await writeJSONFile(
path.join(distDatabasesPath, 'extensions-database.json'),
registry
);
if (totalErrors) {
console.log(
`No fatal error found the extension can be updated but still need fixes.`
);
} else {
console.log(`✅ Headers and registry files successfully updated`);
}
} catch (error) {
console.error(
`⚠️ Error while generating headers and registry files:`,
error
);
shell.exit(1);
}
})();