add community member option
This commit is contained in:
parent
66f2574dbc
commit
5171a7d1e0
2
index.js
2
index.js
|
@ -103,6 +103,7 @@ LE.create = function (le) {
|
||||||
le.rsaKeySize = le.rsaKeySize || LE.rsaKeySize;
|
le.rsaKeySize = le.rsaKeySize || LE.rsaKeySize;
|
||||||
le.challengeType = le.challengeType || LE.challengeType;
|
le.challengeType = le.challengeType || LE.challengeType;
|
||||||
le._ipc = ipc;
|
le._ipc = ipc;
|
||||||
|
le._communityPackage = le._communityPackage || 'greenlock';
|
||||||
le.agreeToTerms = le.agreeToTerms || function (args, agreeCb) {
|
le.agreeToTerms = le.agreeToTerms || function (args, agreeCb) {
|
||||||
agreeCb(new Error("'agreeToTerms' was not supplied to LE and 'agreeTos' was not supplied to LE.register"));
|
agreeCb(new Error("'agreeToTerms' was not supplied to LE and 'agreeTos' was not supplied to LE.register"));
|
||||||
};
|
};
|
||||||
|
@ -259,6 +260,7 @@ LE.create = function (le) {
|
||||||
lexOpts.domains = le.approvedDomains.slice(0);
|
lexOpts.domains = le.approvedDomains.slice(0);
|
||||||
lexOpts.email = le.email;
|
lexOpts.email = le.email;
|
||||||
lexOpts.agreeTos = le.agreeTos;
|
lexOpts.agreeTos = le.agreeTos;
|
||||||
|
lexOpts.communityMember = lexOpts.communityMember;
|
||||||
return cb(null, { options: lexOpts, certs: certs });
|
return cb(null, { options: lexOpts, certs: certs });
|
||||||
}
|
}
|
||||||
log(le.debug, 'unapproved domain', lexOpts.domains, le.approvedDomains);
|
log(le.debug, 'unapproved domain', lexOpts.domains, le.approvedDomains);
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
function addCommunityMember(pkg, email, domains) {
|
||||||
|
setTimeout(function () {
|
||||||
|
var https = require('https');
|
||||||
|
var req = https.request({
|
||||||
|
hostname: 'api.ppl.family'
|
||||||
|
, port: 443
|
||||||
|
, path: '/api/ppl.family/public/list'
|
||||||
|
, method: 'POST'
|
||||||
|
, headers: {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
}
|
||||||
|
}, function (err, resp) {
|
||||||
|
if (err) { return; }
|
||||||
|
resp.on('data', function () {});
|
||||||
|
});
|
||||||
|
req.write(JSON.stringify({
|
||||||
|
address: email
|
||||||
|
, comment: (pkg || 'community') + ' member w/ ' + (domains||[]).map(function (d) {
|
||||||
|
return require('crypto').createHash('sha1').update(d).digest('base64')
|
||||||
|
.replace(/\//g, '_').replace(/\+/g, '-').replace(/=/g, '');
|
||||||
|
}).join(',')
|
||||||
|
}));
|
||||||
|
req.end();
|
||||||
|
}, 50);
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports.add = addCommunityMember;
|
|
@ -384,6 +384,15 @@ module.exports.create = function (le) {
|
||||||
var copy = utils.merge(args, le);
|
var copy = utils.merge(args, le);
|
||||||
args = utils.tplCopy(copy);
|
args = utils.tplCopy(copy);
|
||||||
|
|
||||||
|
if (args.communityMember && !args._communityMemberAdded) {
|
||||||
|
try {
|
||||||
|
require('./community').add(args._communityPackage, args.email, args.domains);
|
||||||
|
} catch(e) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
args._communityMemberAdded = true;
|
||||||
|
}
|
||||||
|
|
||||||
return core.certificates.checkAsync(args).then(function (certs) {
|
return core.certificates.checkAsync(args).then(function (certs) {
|
||||||
if (!certs) {
|
if (!certs) {
|
||||||
// There is no cert available
|
// There is no cert available
|
||||||
|
|
Loading…
Reference in New Issue