all-contributors-cli/lib/util/git.js

62 lines
1.4 KiB
JavaScript
Raw Normal View History

'use strict';
2016-03-30 18:11:37 +00:00
var path = require('path');
2016-05-05 14:27:26 +00:00
var spawn = require('child_process').spawn;
var _ = require('lodash/fp');
var pify = require('pify');
var commitTemplate = '<%= (newContributor ? "Add" : "Update") %> @<%= username %> as a contributor';
var getRemoteOriginData = pify(cb => {
var output = '';
var git = spawn('git', 'config --get remote.origin.url'.split(' '));
git.stdout.on('data', function (data) {
output += data;
});
git.stderr.on('data', cb);
git.on('close', function () {
cb(null, output);
});
});
function parse(originUrl) {
2016-05-05 14:27:26 +00:00
var result = /:(\w+)\/([A-Za-z0-9-_]+)/.exec(originUrl);
if (!result) {
return null;
}
return {
projectOwner: result[1],
projectName: result[2]
};
}
function getRepoInfo() {
return getRemoteOriginData()
.then(parse);
}
var spawnGitCommand = pify((args, cb) => {
var git = spawn('git', args);
git.stderr.on('data', cb);
git.on('close', cb);
});
function commit(options, data) {
2016-03-30 18:11:37 +00:00
var files = options.files.concat(options.config);
var absolutePathFiles = files.map(file => {
2016-03-30 18:11:37 +00:00
return path.resolve(process.cwd(), file);
});
return spawnGitCommand(['add'].concat(absolutePathFiles))
.then(() => {
var commitMessage = _.template(options.commitTemplate || commitTemplate)(data);
return spawnGitCommand(['commit', '-m', commitMessage]);
});
}
module.exports = {
commit: commit,
getRepoInfo: getRepoInfo
};