-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.js
413 lines (355 loc) · 11.6 KB
/
build.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
const util = require('util');
const fs = require('fs');
const path = require('path');
const fsextra = require('fs-extra');
const writeFileAsync = util.promisify(fs.writeFile);
const { exec } = require('child_process');
const axios = require('axios');
const { execSync } = require('child_process');
const { spawn } = require('child_process');
const DOCS_DIR = path.join(__dirname, 'docs');
const common = {
gitbook: "/",
mdBook: "/",
docusaurus: "/docs"
}
// 辅助函数:从GitHub仓库URL中提取仓库路径(格式为:username/repo)
function getRepoPath(repoUrl) {
const repoPath = repoUrl.replace('https://github.com/', '');
return repoPath.endsWith('.git') ? repoPath.slice(0, -4) : repoPath;
}
const downloadFile = async ({ repoUrl, commitHash, catalogueName, branch }) => {
const targetFolder = `./tmpl/${catalogueName}/${repoUrl.split("/").reverse()[0]}`; // 替换为你要将代码拉取到的目标文件夹
await axios.get(`https://api.github.com/repos/${getRepoPath(repoUrl)}`)
.then(async (response) => {
const repoInfo = response.data;
const cloneUrl = repoInfo.clone_url;
// 使用Git命令将代码克隆到目标文件夹
try {
execSync(`git clone ${cloneUrl} ${targetFolder}`);
console.log('代码克隆成功!');
} catch (error) {
// console.error('代码克隆或切换commit失败:', error.message);
}
// 先默认回到指定分支
execSync(`cd ${targetFolder} && git checkout ${branch || "main"}`);
// 切换到指定的commit
if (commitHash) {
execSync(`cd ${targetFolder} && git checkout ${commitHash}`);
console.log(`已切换到commit:${commitHash}`);
} else {
execSync(`cd ${targetFolder} && git pull`);
console.log("代码更新成功!");
}
})
.catch(error => {
console.log('获取GitHub仓库信息失败:', error.message);
});
};
const downloadAllFiles = async (filesToDownload) => {
for (let i = 0; i < filesToDownload.length; i++) {
if (filesToDownload[i]) {
const obj = filesToDownload[i];
await downloadFile(obj);
}
}
};
const extractFilesAndCopyFolder = async (destinationPath, filesNames, filesToDownload, tutorial) => {
const { catalogueNames, docTypes, docPath } = tutorial;
for (let i = 0; i < filesToDownload.length; i++) {
if (filesToDownload[i]) {
const filePath = common[docTypes[i]];
const newPath = docPath[i] || "";
try {
// 将 folderToCopy 从 destinationPath 复制到另一个文件夹
const sourceFolder = path.join(destinationPath, filesNames[i] + filePath + newPath);
const destinationFolder = `./docs/${catalogueNames[i]}`;
await fsextra.copy(sourceFolder, destinationFolder);
} catch (err) {
console.error(err);
}
}
}
}
const createFolder = (folderPath) => {
fs.mkdir(folderPath, (err) => {
if (err) {
console.error(err.message);
} else {
console.log(`Folder created successfully: ${folderPath}`);
}
});
};
function readJsonFile(filePath) {
return new Promise((resolve, reject) => {
fs.readFile(filePath, 'utf8', (err, data) => {
if (err) {
reject(err);
return;
}
try {
const jsonData = JSON.parse(data);
resolve(jsonData);
} catch (e) {
reject(e);
}
});
});
}
const buildProject = () => {
console.log("start build");
return new Promise((resolve, reject) => {
const buildCommand = spawn('npm', ['run', 'docusaurus', 'build']);
let flag = false;
buildCommand.stdout.on('data', (data) => {
console.log(`stdout: ${data}`);
});
buildCommand.stderr.on('data', (data) => {
// 忽略跳转路径错误
if (data.indexOf("Exhaustive list of all broken links found:") !== -1) {
flag = true
}
console.error(`stderr: ${data}`);
});
buildCommand.on('close', (code) => {
if (code !== 0 && !flag) {
console.log(`build process exited with code ${code}`);
reject(code);
} else {
console.log('Build completed successfully');
resolve();
}
});
});
};
const compatible = () => {
return new Promise((resolve, reject) => {
const compatibleCommand = 'node compatible.js';
exec(compatibleCommand, (err, stdout, stderr) => {
if (err) {
console.error(`Error running compatible command: ${err}`);
reject(err);
} else {
console.log('compatible successfully');
resolve();
}
});
});
};
function findLabel(data, id) {
for (let item of data) {
if (item.id === id) {
return item.label;
}
if (item.link && item.link.id === id) {
return item.label;
}
if (item.items) {
let foundLabel = findLabel(item.items, id);
if (foundLabel) {
return foundLabel;
}
}
}
return null;
}
function generateFrontMatter(label, content, meta) {
// 添加文档元数据
if (!label) return content;
if (content.startsWith("---")) {
const title = content.indexOf("title:") !== -1 ? "" : `title: "${label}"`;
const replacement = `---
${title}
description: "${meta.desc}"
image: "https://ipfs.decert.me/${meta.img}"
sidebar_label: "${label}"`;
content = content.replace("---", replacement);
return content;
}
return `---
title: "${label}"
description: "${meta.desc}"
image: "https://ipfs.decert.me/${meta.img}"
sidebar_label: "${label}"
---
${content}`;
}
function fromDir(startPath, filter, meta, list) {
if (!fs.existsSync(startPath)) {
console.log("no dir ", startPath);
return;
}
const files = fs.readdirSync(startPath);
for (let i = 0; i < files.length; i++) {
const filename = path.join(startPath, files[i]);
const stat = fs.lstatSync(filename);
if (stat.isDirectory()) {
fromDir(filename, filter, meta, list); // recurse
} else if (filename.indexOf(filter) >= 0 && filename.indexOf("SUMMARY.md") === -1) {
// 添加metadata
let content = fs.readFileSync(filename, 'utf8');
const idToFind = filename.replace("docs/", "").replace(".md", "").replace(/\/\d+_/, '/');;
// 判断是否是指定库 ? 图片路径替换
if (meta.repoUrl === "https://github.com/0xdwong/rust-solana-bootcamp") {
const regex = /\(\.\.\/\.\.\/assets\/([^)]+)\)/g;
content = content.replace(regex, "(https://github.com/0xdwong/rust-solana-bootcamp/blob/main/assets/$1/?raw=true)");
// 闭合标签
const tag = /<T>|<br>/g;
content = content.replace(tag, (match) => {
return match === '<T>' ? '<T />' : '<br />';
});
}
let label = findLabel(list, idToFind);
content = generateFrontMatter(label, content, meta)
fs.writeFileSync(filename, content, 'utf8');
}
}
}
async function metadataInit(meta, index) {
const path = "./siteMetadata.js"
const metadata = {
baseUrl: "",
metadata: []
};
metadata.baseUrl = index ? `/tutorial/${index}` : "/tutorial";
metadata.metadata = [
{ name: "twiter:card", content: "summary_large_image" },
{ property: "og:url", content: "https://decert.me/tutorials" },
{ property: "title", content: `${meta.label}` },
{ property: "og:title", content: `${meta.label}` },
{ property: "description", content: meta.desc },
{ property: "og:description", content: meta.desc },
{ property: "og:image", content: "https://ipfs.decert.me/" + meta.img },
{ property: "twitter:image", content: "https://ipfs.decert.me/" + meta.img },
]
await writeFileAsync(path, "module.exports = " + JSON.stringify(metadata), 'utf8');
}
function paramsInit(tutorials) {
const filesToDownload = tutorials.map(e => {
if (e.docType === "video" || e.docType === "page") {
return
}
const file = e.repoUrl;
const url = file.split("/").reverse();
return {
repoUrl: `${url[1]}/${url[0]}`,
commitHash: e.commitHash,
catalogueName: e.catalogueName,
branch: e.branch
}
})
const filesNames = tutorials.map(e => {
if (e.docType === "video") {
return
}
const file = e.repoUrl;
const url = file.split("/").reverse();
return e.catalogueName + "/" + url[0]
})
const tutorial = tutorials.reduce((acc, e) => {
acc.catalogueNames.push(e.catalogueName);
acc.docTypes.push(e.docType);
acc.docPath.push(e.docPath);
return acc;
}, { catalogueNames: [], docTypes: [], docPath: [] });
return {
filesToDownload,
filesNames,
tutorial
}
}
async function deleteCache() {
await fsextra.remove("./docs");
await new Promise((resolve, reject) => {
const compatibleCommand = 'find ./src/pages -type d -mindepth 1 -maxdepth 1 -exec rm -rf {} \\;';
exec(compatibleCommand, (err, stdout, stderr) => {
if (err) {
console.error(`Error running compatible command: ${err}`);
reject(err);
} else {
resolve();
}
});
});
}
async function addExtraFilesToRepos(repos) {
for (let i = 0; i < repos.length; i++) {
const repo = repos[i];
if (!repo) {
continue;
}
let { repoUrl, catalogueName } = repo;
if (!repoUrl.startsWith("https://github.com/")) {
repoUrl = "https://github.com/" + repoUrl;
}
const targetFolder = `./tmpl/${catalogueName}/${repoUrl.split("/").reverse()[0]}`;
const addOnConfigPath = "add-on/config.json"
if (!fs.existsSync(addOnConfigPath)) {
continue;
}
const addOnConfig = JSON.parse(fs.readFileSync(addOnConfigPath, 'utf8'));
const addOn = addOnConfig.find(e => e.repoUrl === repoUrl);
if (!addOn) continue;
if (addOn.summary) {
console.log(`拷贝 summary 到 ${repo.catalogueName} 项目目录`);
const relativeSummaryPath = addOn.summary;
const summaryPath = path.join("add-on", relativeSummaryPath);
if (!fs.existsSync(summaryPath)) {
console.warn(`summary 文件不存在: ${summaryPath}`);
continue;
}
// copy to targetFolder
const targetSummaryPath = path.join(targetFolder, "SUMMARY.md");
await fsextra.copy(summaryPath, targetSummaryPath);
}
}
}
const main = async () => {
// init
const index = process.argv.slice(2)[0];
const arr = await readJsonFile("tutorials.json");
let tutorials = arr;
await metadataInit(arr[0], index);
// 预先删除
await deleteCache();
// mkdir
const folder = "./tmpl";
createFolder(folder);
createFolder("./docs")
const { filesToDownload, filesNames, tutorial } = paramsInit(tutorials)
const generate = require('./generate');
// Download all files
await downloadAllFiles(filesToDownload);
await addExtraFilesToRepos(filesToDownload)
// copy to the docs
await extractFilesAndCopyFolder(folder, filesNames, filesToDownload, tutorial);
// generate sidebars、navbarItems
await generate.main();
// 兼容
await compatible();
if (arr[0].docType !== "page" && arr[0].docType !== "docusaurus" && arr[0].docType !== "video") {
// 遍历文档,生成指定metadata。
let json = arr.filter(e => e.docType !== "page");
const files = fs.readdirSync(DOCS_DIR);
const root = DOCS_DIR + "/" + files[0];
const list = await generate.getSummary("SUMMARY.md", root, json[0])
fromDir('./docs', '.md', json[0], list);
}
// Build project
await buildProject();
// 返回json
const navbarItems = require("./navbarItems");
if (navbarItems.length === 0) {
// 没有起始页,说明是单页应用
const obj = {
startPage: tutorials[0].catalogueName
}
console.log(JSON.stringify(obj));
} else {
const obj = {
startPage: navbarItems[0].docId
}
console.log(JSON.stringify(obj));
}
};
main();