summaryrefslogtreecommitdiffstats
path: root/extra/check-knex-filenames.mjs
blob: 4911fc5622ce5702e5cacc879d79169abd8a54d9 (plain)
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
import fs from "fs";
const dir = "./db/knex_migrations";

// Get the file list (ending with .js) from the directory
const files = fs.readdirSync(dir).filter((file) => file !== "README.md");

// They are wrong, but they had been merged, so allowed.
const exceptionList = [
    "2024-08-24-000-add-cache-bust.js",
    "2024-10-1315-rabbitmq-monitor.js",
];

// Correct format: YYYY-MM-DD-HHmm-description.js

for (const file of files) {
    if (exceptionList.includes(file)) {
        continue;
    }

    // Check ending with .js
    if (!file.endsWith(".js")) {
        console.error(`It should end with .js: ${file}`);
        process.exit(1);
    }

    const parts = file.split("-");

    // Should be at least 5 parts
    if (parts.length < 5) {
        console.error(`Invalid format: ${file}`);
        process.exit(1);
    }

    // First part should be a year >= 2024
    const year = parseInt(parts[0], 10);
    if (isNaN(year) || year < 2023) {
        console.error(`Invalid year: ${file}`);
        process.exit(1);
    }

    // Second part should be a month
    const month = parseInt(parts[1], 10);
    if (isNaN(month) || month < 1 || month > 12) {
        console.error(`Invalid month: ${file}`);
        process.exit(1);
    }

    // Third part should be a day
    const day = parseInt(parts[2], 10);
    if (isNaN(day) || day < 1 || day > 31) {
        console.error(`Invalid day: ${file}`);
        process.exit(1);
    }

    // Fourth part should be HHmm
    const time = parts[3];

    // Check length is 4
    if (time.length !== 4) {
        console.error(`Invalid time: ${file}`);
        process.exit(1);
    }

    const hour = parseInt(time.substring(0, 2), 10);
    const minute = parseInt(time.substring(2), 10);
    if (isNaN(hour) || hour < 0 || hour > 23 || isNaN(minute) || minute < 0 || minute > 59) {
        console.error(`Invalid time: ${file}`);
        process.exit(1);
    }
}

console.log("All knex filenames are correct.");