summaryrefslogtreecommitdiff
path: root/themes/blowfish/genLangLinks.js
blob: 6b5925bbbdff7f29d38ab02f217e7692d25d9eae (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
const fs = require('fs');

const configDir = "./exampleSite/config/_default";
const contentDir = "./exampleSite/content";
const defaultLang = "en";

var targetLangs = []

function readConfigs() {
    const files = fs.readdirSync(configDir);
    files.forEach(file => {
        console.log(file)
        if(file.indexOf("languages.") > -1) {
            var lang = file.split(".")[1];
            console.log(lang)
            if(lang != defaultLang) {
                targetLangs.push(lang);
            }
        }
    });
}

async function processFile(filePath, file) {
    if (filePath.indexOf("index.md") > -1) {

        console.log("processing", filePath)
        
        for(var i in targetLangs) {
            const targetLang = targetLangs[i];
            var targetFilePath = filePath.replace(".md", "." + targetLang + ".md");
            //var targetFileName = file.replace(".md", "." + targetLang + ".md");

            if(fs.existsSync(targetFilePath)) {
                console.log("file already exists", targetFilePath);
            }else{
                console.log("creating file", targetFilePath);
                //fs.symlinkSync(file, targetFilePath, 'junction');
                fs.copyFileSync(filePath, targetFilePath);
            }
        }

    } else
        return
}

async function processFolder(folderPath) {
    const files = fs.readdirSync(folderPath);

    for (var i in files) {
        const file = files[i];
        const filePath = `${folderPath}/${file}`;
        const isDir = fs.lstatSync(filePath).isDirectory();
        if (isDir) {
            await processFolder(filePath);
        } else {
            await processFile(filePath, file);
        }
    }
}

async function createLinks() {
    processFolder(contentDir);
}

readConfigs();
createLinks();