1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Tools: Add script to validate Markdown filenames on commit

This commit is contained in:
Laurent Cozic
2024-07-02 15:16:16 +02:00
parent 46ade2e0f8
commit f2841a9a94
5 changed files with 40 additions and 1 deletions

View File

@@ -0,0 +1,35 @@
// This is used to validate the Markdown filenames. The updateNews script uses the filename as the
// Discourse external_id, however that ID does not support certain characters, such as ".".
import { getRootDir } from '@joplin/utils';
import { fileExtension } from '@joplin/utils/path';
import { readdir } from 'fs/promises';
import { filename } from '@joplin/lib/path-utils';
const supportedExtensions = ['md', 'mdx'];
const allowedRegex = '^[a-zA-Z0-9_-]+$';
const main = async () => {
const readmeDir = `${await getRootDir()}/readme`;
const filePaths = await readdir(readmeDir, { recursive: true });
for (const filePath of filePaths) {
try {
const ext = fileExtension(filePath);
if (!supportedExtensions.includes(ext.toLowerCase())) continue;
if (!supportedExtensions.includes(ext)) throw new Error(`Invalid extension case (Supported extensions: ${JSON.stringify(supportedExtensions)})`);
const name = filename(filePath);
if (!name.match(new RegExp(allowedRegex))) throw new Error(`File format not allowed (Allowed characters: ${allowedRegex})`);
} catch (error) {
console.info(`Invalid filename: "${filePath}":`, error.message);
process.exit(1);
}
}
};
main().catch((error) => {
console.error('Fatal error');
console.error(error);
process.exit(1);
});