-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate-indexes.js
147 lines (123 loc) · 3.78 KB
/
generate-indexes.js
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
const fs = require("fs");
const path = require("path");
const config = require("./config.js");
const { generateStyles } = require("./styles.js");
const { generateHtml, generateAllFilesHtml } = require("./template.js");
function readFileContent(filePath) {
return fs.readFileSync(filePath, config.encoding);
}
function getFilterList() {
return readFileContent(config.files.filter)
.split("\n")
.map((line) => line.trim())
.filter((line) => line.length > 0);
}
function formatBytes(bytes, decimals = config.size.decimals) {
if (bytes === 0) return config.size.empty_message;
const k = 1024;
const dm = decimals < 0 ? 0 : decimals;
const sizes = config.size.sizes;
const i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + " " + sizes[i];
}
function getDirectoryInfo(dir) {
let totalSize = 0;
let fileCount = 0;
const filterList = getFilterList();
function calculateDirSize(directory) {
const files = fs.readdirSync(directory);
files.forEach((file) => {
const filePath = path.join(directory, file);
const stats = fs.statSync(filePath);
if (stats.isDirectory()) {
calculateDirSize(filePath);
} else if (!filterList.includes(file)) {
totalSize += stats.size;
fileCount += 1;
}
});
}
calculateDirSize(dir);
return {
totalSizeBytes: totalSize,
totalSizeFormatted: formatBytes(totalSize),
fileCount,
};
}
function getFileList(dir) {
const filterList = getFilterList();
return fs
.readdirSync(dir)
.map((file) => {
const filePath = path.join(dir, file);
const stats = fs.statSync(filePath);
return {
name: file,
isDirectory: stats.isDirectory(),
};
})
.filter((file) => !filterList.includes(file.name));
}
function generateIndex(dir) {
const relativeDir = path
.relative(config.root.directory, dir)
.replace(/\\/g, "/");
const parentDir = relativeDir.split("/").slice(0, -1).join("/") || "";
const dirInfo = getDirectoryInfo(dir);
const files = getFileList(dir);
const metaTags = readFileContent(config.files.meta_tags);
const seoTags = readFileContent(config.files.seo_tags);
const styles = generateStyles();
const htmlContent = generateHtml({
relativeDir,
parentDir,
dirInfo,
files,
metaTags,
seoTags,
styles,
});
fs.writeFileSync(path.join(dir, "index.html"), htmlContent);
files
.filter((file) => file.isDirectory)
.forEach((file) => generateIndex(path.join(dir, file.name)));
}
function getAllFiles(dir, fileList = []) {
const files = fs.readdirSync(dir);
const filterList = getFilterList();
files.forEach(file => {
const filePath = path.join(dir, file);
const stats = fs.statSync(filePath);
const relativePath = path.relative(config.root.directory, filePath).replace(/\\/g, "/");
if (stats.isDirectory()) {
getAllFiles(filePath, fileList);
} else if (!filterList.includes(file)) {
fileList.push({
name: file,
path: relativePath,
size: formatBytes(stats.size),
lastModified: stats.mtime.toISOString().split('T')[0]
});
}
});
return fileList;
}
function generateAllFilesPage() {
const allFiles = getAllFiles(config.root.directory);
const publicDir = path.join(config.root.directory, '.');
if (!fs.existsSync(publicDir)) {
fs.mkdirSync(publicDir);
}
const metaTags = readFileContent(config.files.meta_tags);
const seoTags = readFileContent(config.files.seo_tags);
const styles = generateStyles("all-files");
const htmlContent = generateAllFilesHtml({
allFiles,
metaTags,
seoTags,
styles,
});
fs.writeFileSync(path.join(publicDir, "all-files.html"), htmlContent);
}
generateIndex(config.root.directory);
generateAllFilesPage();