« get me outta code hell

wiki-checks.js « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/wiki-checks.js
blob: af8a27000717714d9b7e5b2783d7ce8c83719254 (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
import { quickLoadAllFromYAML } from './data/yaml.js';
import { logError, parseOptions } from './util/cli.js';
import { isMain } from './util/node-utils.js';
import { showAggregate } from './util/sugar.js';

export default async function performAllChecks({
    dataPath,
    mediaPath,
}) {
    const wikiData = await quickLoadAllFromYAML(dataPath);

    console.log(wikiData);
}

if (isMain(import.meta.url)) {
    (async function() {
        const miscOptions = await parseOptions(process.argv.slice(2), {
            'data-path': {
                type: 'value'
            },

            'media-path': {
                type: 'value'
            },

            'show-traces': {
                type: 'flag'
            },
        });

        const dataPath = miscOptions['data-path'] || process.env.HSMUSIC_DATA;
        const mediaPath = miscOptions['media-path'] || process.env.HSMUSIC_MEDIA;

        if (!dataPath) {
            logError`Expected --data-path option or HSMUSIC_DATA to be set`;
            return;
        }

        const niceShowAggregate = (error, ...opts) => {
            showAggregate(error, {
                showTraces: showAggregateTraces,
                pathToFile: f => path.relative(__dirname, f),
                ...opts
            });
        };

        await performAllChecks({
            dataPath,
            mediaPath,

            showAggregate: niceShowAggregate,
        });
    })().catch(err => {
        console.error(err);
    });
}