-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathversion.js
127 lines (109 loc) · 3.95 KB
/
version.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
#!/usr/bin/env node
const path = require('path');
const fs = require('fs');
const { exec } = require('child_process');
const commander = require('commander');
commander
.option('-w, --working-dir [path]', 'set working directory', process.cwd())
.option('-o, --out-file [path]', 'write output to a file instead of stdout')
.option('-c, --config-file [path]', 'override default config file name', '.git-version.config.json')
.option('--app-id [id]', 'override default application id', 'app')
.option('--version-tag-prefix [prefix]', 'override default version tag prefix', 'v[0-9]*')
.option('--no-repository', 'omit repository from the output JSON')
.option('--no-pretty', 'disable pretty printing the output JSON')
.option('--version-only', 'return only the version without git information')
.parse(process.argv);
const {
workingDir, outFile, configFile, appId, versionTagPrefix, pretty, repository, versionOnly
} = commander;
if (!workingDir || !fs.existsSync(workingDir) || !fs.lstatSync(workingDir).isDirectory()) {
console.error(`Invalid working directory '${workingDir || ''}'`);
process.exit(1);
}
const getDefaultApp = () => {
const packageJsonFilePath = path.join(workingDir, 'package.json');
if (fs.existsSync(packageJsonFilePath)) {
const pack = JSON.parse(fs.readFileSync(packageJsonFilePath, 'utf8'));
return {
id: appId,
name: pack.name,
version: pack.version,
versionTagPrefix,
};
}
return {
id: appId,
name: path.basename(workingDir),
versionTagPrefix,
};
};
const configFilePath = path.join(workingDir, configFile);
const config = fs.existsSync(configFilePath) ? JSON.parse(fs.readFileSync(configFilePath, 'utf8')) : [getDefaultApp()];
const outFilePath = outFile ? path.join(workingDir, outFile) : null;
const appConfig = config.find((c) => c.id === appId);
if (!appConfig) {
console.error(`Expected an item with id '${appId}' in '${configFilePath}'`);
process.exit(1);
}
const execGetOutput = async (command, cwd) =>
new Promise((resolve) => {
exec(command, { cwd }, (error, stdout) => {
resolve(error ? null : (stdout || '').trim());
});
});
const execGetExitCode = async (command, cwd) =>
new Promise((resolve) => {
exec(command, { cwd }, (error) => {
resolve(error ? error.code : 0);
});
});
async function getGitInfo(dirPath, describeMatchPrefix) {
const remoteUrl = repository ? await execGetOutput('git config --get remote.origin.url', dirPath) : undefined;
const branch = await execGetOutput('git rev-parse --abbrev-ref HEAD', dirPath);
const sha1 = await execGetOutput('git rev-parse HEAD', dirPath);
const dateUnix = await execGetOutput('git --no-pager log --pretty=format:"%at" -n1', dirPath);
const diffExitCode = await execGetExitCode('git diff-index --quiet HEAD --', dirPath);
const version = describeMatchPrefix && describeMatchPrefix.length > 0
? await execGetOutput(`git describe --tags --match "${describeMatchPrefix}" HEAD`, dirPath)
: undefined;
return {
version,
git: {
repository: remoteUrl,
branch,
sha1,
date: dateUnix ? new Date(1000 * dateUnix) : undefined,
clean: diffExitCode === 0,
},
};
}
Promise.all(
config.map(async (item) => ({
id: item.id,
name: item.name,
...(await getGitInfo(path.join(workingDir, item.path || '.'), item.versionTagPrefix)),
}))
).then((versions) => {
const app = versions.find((c) => c.id === appId);
const components = versions.filter((c) => c.id !== appId);
let version = {
name: app.name,
version: app.version || appConfig.version,
};
if (!versionOnly) {
version = Object.assign(version, {
git: app.git,
components: components.length ? components : undefined,
});
}
const json = JSON.stringify(version, undefined, pretty ? 2 : 0);
if (outFilePath) {
fs.writeFile(outFilePath, json, (err) => {
if (err) {
console.error(err);
}
});
} else {
console.log(json);
}
});