mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-10 14:06:34 +00:00
1305a7cd92
BREAKING CHANGE: Drop support for Node < v4. This uses native Promises available from Node v4. * fix: Bump inquirer to v3.0.1. Fixes #33 to improve Windows support. * refactor: Promisify everything as inquirer uses Promises from 1.0.0 onwards
48 lines
1.5 KiB
JavaScript
48 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
var _ = require('lodash/fp');
|
|
|
|
function uniqueTypes(contribution) {
|
|
return contribution.type || contribution;
|
|
}
|
|
|
|
function formatContributions(options, existing, types) {
|
|
if (options.url) {
|
|
return (existing || []).concat(types.map(function (type) {
|
|
return {type: type, url: options.url};
|
|
}));
|
|
}
|
|
return _.uniqBy(uniqueTypes, (existing || []).concat(types));
|
|
}
|
|
|
|
function updateContributor(options, contributor, contributions) {
|
|
return _.assign(contributor, {
|
|
contributions: formatContributions(options, contributor.contributions, contributions)
|
|
});
|
|
}
|
|
|
|
function updateExistingContributor(options, username, contributions) {
|
|
return options.contributors.map(function (contributor) {
|
|
if (username !== contributor.login) {
|
|
return contributor;
|
|
}
|
|
return updateContributor(options, contributor, contributions);
|
|
});
|
|
}
|
|
|
|
function addNewContributor(options, username, contributions, infoFetcher) {
|
|
return infoFetcher(username)
|
|
.then(userData => {
|
|
var contributor = _.assign(userData, {
|
|
contributions: formatContributions(options, [], contributions)
|
|
});
|
|
return options.contributors.concat(contributor);
|
|
});
|
|
}
|
|
|
|
module.exports = function addContributor(options, username, contributions, infoFetcher) {
|
|
if (_.find({login: username}, options.contributors)) {
|
|
return Promise.resolve(updateExistingContributor(options, username, contributions));
|
|
}
|
|
return addNewContributor(options, username, contributions, infoFetcher);
|
|
};
|