mirror of
https://github.com/pomber/git-history.git
synced 2024-11-22 23:13:20 +03:00
63 lines
1.4 KiB
JavaScript
63 lines
1.4 KiB
JavaScript
const execa = require("execa");
|
|
const pather = require("path");
|
|
|
|
async function getCommits(path, last, before) {
|
|
const format = `{"hash":"%h","author":{"login":"%aN"},"date":"%ad"},`;
|
|
const { stdout } = await execa(
|
|
"git",
|
|
[
|
|
"log",
|
|
`--max-count=${before ? last + 1 : last}`,
|
|
`--pretty=format:${format}`,
|
|
"--date=iso",
|
|
`${before || "HEAD"}`,
|
|
"--",
|
|
pather.basename(path)
|
|
],
|
|
{ cwd: pather.dirname(path) }
|
|
);
|
|
const json = `[${stdout.slice(0, -1)}]`;
|
|
|
|
const messagesOutput = await execa(
|
|
"git",
|
|
[
|
|
"log",
|
|
`--max-count=${last}`,
|
|
`--pretty=format:%s`,
|
|
`${before || "HEAD"}`,
|
|
"--",
|
|
pather.basename(path)
|
|
],
|
|
{ cwd: pather.dirname(path) }
|
|
);
|
|
|
|
const messages = messagesOutput.stdout.replace('"', '\\"').split(/\r?\n/);
|
|
|
|
const result = JSON.parse(json).map((commit, i) => ({
|
|
...commit,
|
|
date: new Date(commit.date),
|
|
message: messages[i]
|
|
}));
|
|
|
|
return before ? result.slice(1) : result;
|
|
}
|
|
|
|
async function getContent(commit, path) {
|
|
const { stdout } = await execa(
|
|
"git",
|
|
["show", `${commit.hash}:./${pather.basename(path)}`],
|
|
{ cwd: pather.dirname(path) }
|
|
);
|
|
return stdout;
|
|
}
|
|
|
|
module.exports = async function(path, last, before) {
|
|
const commits = await getCommits(path, last, before);
|
|
await Promise.all(
|
|
commits.map(async commit => {
|
|
commit.content = await getContent(commit, path);
|
|
})
|
|
);
|
|
return commits;
|
|
};
|