-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.js
76 lines (72 loc) · 1.98 KB
/
index.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
#!/usr/bin/env node
console._log = console.log
console.log = () => {}
const util = require(`./util.js`)
util.init()
const {
parseArgv,
execSync,
help,
paserLogToList,
toMd,
} = util
const argv = parseArgv()
const cli = {
...argv,
'--debug': argv[`--debug`] || false,
'--select': argv[`--select`] ? argv[`--select`].split(`,`) : [`default`],
}
{ // 关联参数特殊处理
if(cli['--help'] || cli['-h']) {
help()
process.exit()
}
if(cli['--config']) {
util.opener(GET(`configdir`))
process.exit()
}
if(cli['-v'] || cli['--version']) {
util.print(GET(`package`).version)
process.exit()
}
}
SET(`cli`, cli)
const config = GET(`config`)
let reportList = config.report.filter(item => cli[`--select`].includes(item.select))
if(reportList.length === 0) {
util.print(`所指定的 --select 值不存在, 将使用默认值`)
reportList = config.report.filter(item => [`default`].includes(item.select))
}
reportList.forEach(reportItem => {
const newReportItem = util.handleReportConfig({reportItem, query: cli})
SET(`curReport`, newReportItem)
const repository = newReportItem.repository.map(repositoryItem => {
let cmdRes = ``
try {
cmdRes = execSync(
util.logLine(newReportItem),
{
cwd: repositoryItem.path,
}
)
} catch (error) {
util.errExit(`获取 git 工作记录失败`, error)
}
const list = paserLogToList({str: cmdRes})
const toMdRes = toMd({
list,
rootLevel: newReportItem.rootLevel,
})
const obj = {
name: `${`#`.repeat(util.getTitleLevel({type: `repository`, rootLevel: newReportItem.rootLevel}))} ${repositoryItem.name}`,
toMdRes
}
return [
obj.name,
obj.toMdRes,
`\n`,
].join(`\n`)
}).join(`\n`).trim()
const out = util.handleTemplateFile({report: reportItem, body: repository})
require(`fs`).writeFileSync(newReportItem.outFile, out)
})