passing more tests
This commit is contained in:
parent
d69bcd7e58
commit
448b8492c0
303
index.js
303
index.js
|
@ -6,76 +6,16 @@ var path = require('path');
|
||||||
var fs = PromiseA.promisifyAll(require('fs'));
|
var fs = PromiseA.promisifyAll(require('fs'));
|
||||||
var sfs = require('safe-replace');
|
var sfs = require('safe-replace');
|
||||||
|
|
||||||
function getAccountIdByEmail(args) {
|
function log(debug) {
|
||||||
// If we read 10,000 account directories looking for
|
if (debug) {
|
||||||
// just one email address, that could get crazy.
|
var args = Array.prototype.slice.call(arguments);
|
||||||
// We should have a folder per email and list
|
args.shift();
|
||||||
// each account as a file in the folder
|
args.unshift("[le-store-certbot]");
|
||||||
// TODO
|
console.log.apply(console, args);
|
||||||
var email = args.email;
|
|
||||||
if ('string' !== typeof email) {
|
|
||||||
if (args.debug) {
|
|
||||||
console.log("[LE] No email given");
|
|
||||||
}
|
}
|
||||||
return PromiseA.resolve(null);
|
|
||||||
}
|
|
||||||
return fs.readdirAsync(args.accountsDir).then(function (nodes) {
|
|
||||||
if (args.debug) {
|
|
||||||
console.log("[LE] arg.accountsDir success");
|
|
||||||
}
|
|
||||||
|
|
||||||
return PromiseA.all(nodes.map(function (node) {
|
|
||||||
return fs.readFileAsync(path.join(args.accountsDir, node, 'regr.json'), 'utf8').then(function (text) {
|
|
||||||
var regr = JSON.parse(text);
|
|
||||||
regr.__accountId = node;
|
|
||||||
|
|
||||||
return regr;
|
|
||||||
});
|
|
||||||
})).then(function (regrs) {
|
|
||||||
var accountId;
|
|
||||||
|
|
||||||
/*
|
|
||||||
if (args.debug) {
|
|
||||||
console.log('read many regrs');
|
|
||||||
console.log('regrs', regrs);
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
regrs.some(function (regr) {
|
|
||||||
return regr.body.contact.some(function (contact) {
|
|
||||||
var match = contact.toLowerCase() === 'mailto:' + email.toLowerCase();
|
|
||||||
if (match) {
|
|
||||||
accountId = regr.__accountId;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!accountId) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return accountId;
|
|
||||||
});
|
|
||||||
}).then(function (accountId) {
|
|
||||||
return accountId;
|
|
||||||
}, function (err) {
|
|
||||||
if ('ENOENT' === err.code) {
|
|
||||||
// ignore error
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return PromiseA.reject(err);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function writeRenewalConfig(args) {
|
function writeRenewalConfig(args) {
|
||||||
function log() {
|
|
||||||
if (args.debug) {
|
|
||||||
console.log.apply(console, arguments);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var pyobj = args.pyobj;
|
var pyobj = args.pyobj;
|
||||||
pyobj.checkpoints = parseInt(pyobj.checkpoints, 10) || 0;
|
pyobj.checkpoints = parseInt(pyobj.checkpoints, 10) || 0;
|
||||||
|
|
||||||
|
@ -90,7 +30,7 @@ function writeRenewalConfig(args) {
|
||||||
//|| args.domainPrivateKeyPath || args.domainKeyPath || pyobj.keyPath
|
//|| args.domainPrivateKeyPath || args.domainKeyPath || pyobj.keyPath
|
||||||
|| path.join(liveDir, 'privkey.pem');
|
|| path.join(liveDir, 'privkey.pem');
|
||||||
|
|
||||||
log('[le/core.js] privkeyPath', privkeyPath);
|
log(args.debug, 'writeRenewalConfig privkeyPath', privkeyPath);
|
||||||
|
|
||||||
var updates = {
|
var updates = {
|
||||||
account: args.account.id
|
account: args.account.id
|
||||||
|
@ -160,28 +100,31 @@ function pyToJson(pyobj) {
|
||||||
}
|
}
|
||||||
|
|
||||||
var defaults = {
|
var defaults = {
|
||||||
configDir: '~/letsencrypt/etc' // /etc/letsencrypt/
|
configDir: [ '~', 'letsencrypt', 'etc' ].join(path.sep) // /etc/letsencrypt/
|
||||||
, logsDir: '~/letsencrypt/var/log' // /var/log/letsencrypt/
|
, logsDir: [ '~', 'letsencrypt', 'var', 'log' ].join(path.sep) // /var/log/letsencrypt/
|
||||||
, workDir: '~/letsencrypt/var/lib' // /var/lib/letsencrypt/
|
, workDir: [ '~', 'letsencrypt', 'var', 'lib' ].join(path.sep) // /var/lib/letsencrypt/
|
||||||
|
|
||||||
, accountsDir: ':config/accounts/:server'
|
, accountsDir: [ ':configDir', 'accounts', ':serverDir' ].join(path.sep)
|
||||||
, renewalPath: ':config/renewal/:hostname.conf'
|
, renewalPath: [ ':configDir', 'renewal', ':hostname.conf' ].join(path.sep)
|
||||||
, renewalDir: ':config/renewal/'
|
, renewalDir: [ ':configDir', 'renewal', '' ].join(path.sep)
|
||||||
|
, serverDirGet: function (copy) {
|
||||||
|
return (copy.server || '').replace('https://', '').replace(/(\/)$/, '').replace(/\//g, path.sep);
|
||||||
|
}
|
||||||
|
|
||||||
, privkeyPath: ':config/live/:hostname/privkey.pem'
|
, privkeyPath: [ ':configDir', 'live', ':hostname', 'privkey.pem' ].join(path.sep)
|
||||||
, fullchainPath: ':config/live/:hostname/fullchain.pem'
|
, fullchainPath: [ ':configDir', 'live', ':hostname', 'fullchain.pem' ].join(path.sep)
|
||||||
, certPath: ':config/live/:hostname/cert.pem'
|
, certPath: [ ':configDir', 'live', ':hostname', 'cert.pem' ].join(path.sep)
|
||||||
, chainPath: ':config/live/:hostname/chain.pem'
|
, chainPath: [ ':configDir', 'live', ':hostname', 'chain.pem' ].join(path.sep)
|
||||||
|
|
||||||
, rsaKeySize: 2048
|
, rsaKeySize: 2048
|
||||||
, webrootPath: '~/letsencrypt/srv/www/:hostname/.well-known/acme-challenge'
|
, webrootPath: [ '~', 'letsencrypt', 'srv', 'www', ':hostname', '.well-known', 'acme-challenge' ].join(path.sep)
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.create = function (configs) {
|
module.exports.create = function (configs) {
|
||||||
var mergedConfigs;
|
var mergedConfigs;
|
||||||
|
|
||||||
var store = {
|
var store = {
|
||||||
getDefaults: function () {
|
getOptions: function () {
|
||||||
if (mergedConfigs) {
|
if (mergedConfigs) {
|
||||||
return configs;
|
return configs;
|
||||||
}
|
}
|
||||||
|
@ -196,24 +139,52 @@ module.exports.create = function (configs) {
|
||||||
return configs;
|
return configs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
, keypairs: {
|
||||||
|
checkAsync: function (keypath, format) {
|
||||||
|
return fs.readFileAsync(keypath, 'ascii').then(function (key) {
|
||||||
|
if ('jwk' === format) {
|
||||||
|
return { privateKeyJwk: JSON.parse(key) };
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return { privateKeyPem: key };
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
, setAsync: function (keypath, keypair, format) {
|
||||||
|
return mkdirpAsync(path.dirname(keypath)).then(function () {
|
||||||
|
var key;
|
||||||
|
|
||||||
|
if ('jwk' === format) {
|
||||||
|
key = JSON.stringify(keypair.privateKeyJwk, null, ' ');
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
key = keypair.privateKeyPem;
|
||||||
|
}
|
||||||
|
|
||||||
|
return fs.writeFileAsync(keypath, key, 'ascii').then(function () {
|
||||||
|
return keypair;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Certificates
|
// Certificates
|
||||||
//
|
//
|
||||||
, certificates: {
|
, certificates: {
|
||||||
|
// Certificates
|
||||||
checkKeypairAsync: function (args) {
|
checkKeypairAsync: function (args) {
|
||||||
if (!args.domainKeyPath) {
|
if (!args.domainKeyPath) {
|
||||||
return PromiseA.reject(new Error("missing options.domainKeyPath"));
|
return PromiseA.reject(new Error("missing options.domainKeyPath"));
|
||||||
}
|
}
|
||||||
|
|
||||||
return fs.readFileAsync(args.domainKeyPath, 'ascii');
|
return store.keypairs.checkAsync(args.domainKeyPath);
|
||||||
}
|
}
|
||||||
|
// Certificates
|
||||||
, setKeypairAsync: function (args, keypair) {
|
, setKeypairAsync: function (args, keypair) {
|
||||||
return mkdirpAsync(path.dirname(args.domainKeyPath)).then(function () {
|
return store.keypairs.setAsync(args.domainKeyPath, keypair);
|
||||||
return fs.writeFileAsync(args.domainKeyPath, keypair.privateKeyPem, 'ascii').then(function () {
|
|
||||||
return keypair;
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
// Certificates
|
||||||
, checkAsync: function (args) {
|
, checkAsync: function (args) {
|
||||||
if (!args.fullchainPath || !args.privkeyPath || !args.certPath || !args.chainPath) {
|
if (!args.fullchainPath || !args.privkeyPath || !args.certPath || !args.chainPath) {
|
||||||
return PromiseA.reject(new Error("missing one or more of privkeyPath, fullchainPath, certPath, chainPath from options"));
|
return PromiseA.reject(new Error("missing one or more of privkeyPath, fullchainPath, certPath, chainPath from options"));
|
||||||
|
@ -247,6 +218,7 @@ module.exports.create = function (configs) {
|
||||||
return null;
|
return null;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
// Certificates
|
||||||
, setAsync: function (args) {
|
, setAsync: function (args) {
|
||||||
// TODO get config
|
// TODO get config
|
||||||
var pyobj = args.pyobj;
|
var pyobj = args.pyobj;
|
||||||
|
@ -278,8 +250,7 @@ module.exports.create = function (configs) {
|
||||||
, sfs.writeFileAsync(fullchainArchive, pems.cert + pems.chain, 'ascii')
|
, sfs.writeFileAsync(fullchainArchive, pems.cert + pems.chain, 'ascii')
|
||||||
, sfs.writeFileAsync(
|
, sfs.writeFileAsync(
|
||||||
privkeyArchive
|
privkeyArchive
|
||||||
// TODO nix args.key, args.domainPrivateKeyPem ??
|
, pems.privkey
|
||||||
, (pems.privkey || pems.key) // || RSA.exportPrivatePem(args.domainKeypair)
|
|
||||||
, 'ascii'
|
, 'ascii'
|
||||||
)
|
)
|
||||||
]);
|
]);
|
||||||
|
@ -293,7 +264,7 @@ module.exports.create = function (configs) {
|
||||||
, sfs.writeFileAsync(
|
, sfs.writeFileAsync(
|
||||||
privkeyPath
|
privkeyPath
|
||||||
// TODO nix args.key, args.domainPrivateKeyPem ??
|
// TODO nix args.key, args.domainPrivateKeyPem ??
|
||||||
, (pems.privkey || pems.key) // || RSA.exportPrivatePem(args.domainKeypair)
|
, pems.privkey
|
||||||
, 'ascii'
|
, 'ascii'
|
||||||
)
|
)
|
||||||
]);
|
]);
|
||||||
|
@ -323,7 +294,104 @@ module.exports.create = function (configs) {
|
||||||
// Accounts
|
// Accounts
|
||||||
//
|
//
|
||||||
, accounts: {
|
, accounts: {
|
||||||
checkAsync: function (args) {
|
// Accounts
|
||||||
|
_getAccountKeyPath: function (args) {
|
||||||
|
var promise = PromiseA.resolve(args.accountId);
|
||||||
|
|
||||||
|
if (args.email && !args.accountKeyPath && !args.accountId) {
|
||||||
|
promise = store.accounts._getAccountIdByEmail(args);
|
||||||
|
}
|
||||||
|
|
||||||
|
return promise.then(function (accountId) {
|
||||||
|
if (!accountId) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return args.accountKeyPath || path.join(args.accountsDir, accountId, 'private_key.json');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// Accounts
|
||||||
|
, _getAccountIdByEmail: function (args) {
|
||||||
|
// If we read 10,000 account directories looking for
|
||||||
|
// just one email address, that could get crazy.
|
||||||
|
// We should have a folder per email and list
|
||||||
|
// each account as a file in the folder
|
||||||
|
// TODO
|
||||||
|
var email = args.email;
|
||||||
|
if ('string' !== typeof email) {
|
||||||
|
log(args.debug, "No email given");
|
||||||
|
return PromiseA.resolve(null);
|
||||||
|
}
|
||||||
|
return fs.readdirAsync(args.accountsDir).then(function (nodes) {
|
||||||
|
log(args.debug, "success reading arg.accountsDir");
|
||||||
|
|
||||||
|
return PromiseA.all(nodes.map(function (node) {
|
||||||
|
return fs.readFileAsync(path.join(args.accountsDir, node, 'regr.json'), 'utf8').then(function (text) {
|
||||||
|
var regr = JSON.parse(text);
|
||||||
|
regr.__accountId = node;
|
||||||
|
|
||||||
|
return regr;
|
||||||
|
});
|
||||||
|
})).then(function (regrs) {
|
||||||
|
var accountId;
|
||||||
|
|
||||||
|
log(args.debug, "regrs.length", regrs.length);
|
||||||
|
|
||||||
|
regrs.some(function (regr) {
|
||||||
|
return regr.body.contact.some(function (contact) {
|
||||||
|
var match = contact.toLowerCase() === 'mailto:' + email.toLowerCase();
|
||||||
|
if (match) {
|
||||||
|
accountId = regr.__accountId;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!accountId) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return accountId;
|
||||||
|
});
|
||||||
|
}).then(function (accountId) {
|
||||||
|
return accountId;
|
||||||
|
}, function (err) {
|
||||||
|
if ('ENOENT' === err.code) {
|
||||||
|
// ignore error
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return PromiseA.reject(err);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// Accounts
|
||||||
|
, checkKeypairAsync: function (args) {
|
||||||
|
if (!(args.accountKeyPath || args.accountsDir)) {
|
||||||
|
return PromiseA.reject(new Error("must provide one of options.accountKeyPath or options.accountsDir"));
|
||||||
|
}
|
||||||
|
|
||||||
|
return store.accounts._getAccountKeyPath(args).then(function (keypath) {
|
||||||
|
return store.keypairs.checkAsync(keypath, 'jwk');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// Accounts
|
||||||
|
, setKeypairAsync: function (args, keypair) {
|
||||||
|
var accountId;
|
||||||
|
|
||||||
|
if (args.email) {
|
||||||
|
// we use insecure md5 - even though we know it's bad - because that's how the python client did
|
||||||
|
accountId = require('crypto').createHash('md5').update(keypair.privateKeyPem).digest('hex');
|
||||||
|
}
|
||||||
|
|
||||||
|
return store.accounts._getAccountKeyPath({
|
||||||
|
accountsDir: args.accountsDir
|
||||||
|
, email: args.email
|
||||||
|
, accountId: args.accountId || accountId
|
||||||
|
}).then(function (keypath) {
|
||||||
|
return store.keypairs.setAsync(keypath, keypair, 'jwk');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// Accounts
|
||||||
|
, checkAsync: function (args) {
|
||||||
var promise;
|
var promise;
|
||||||
var files = {};
|
var files = {};
|
||||||
var accountId;
|
var accountId;
|
||||||
|
@ -332,13 +400,17 @@ module.exports.create = function (configs) {
|
||||||
promise = PromiseA.resolve(args.accountId);
|
promise = PromiseA.resolve(args.accountId);
|
||||||
}
|
}
|
||||||
else if (args.email) {
|
else if (args.email) {
|
||||||
promise = getAccountIdByEmail(args);
|
promise = store.accounts._getAccountIdByEmail(args);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
promise = PromiseA.reject(new Error("must provide accountId or email"));
|
promise = PromiseA.reject(new Error("must provide accountId or email"));
|
||||||
}
|
}
|
||||||
|
|
||||||
promise.then(function (_accountId) {
|
return promise.then(function (_accountId) {
|
||||||
|
log(args.debug, 'accountId:', _accountId);
|
||||||
|
if (!_accountId) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
accountId = _accountId;
|
accountId = _accountId;
|
||||||
var accountDir = path.join(args.accountsDir, accountId);
|
var accountDir = path.join(args.accountsDir, accountId);
|
||||||
var configs = [ 'meta.json', 'private_key.json', 'regr.json' ];
|
var configs = [ 'meta.json', 'private_key.json', 'regr.json' ];
|
||||||
|
@ -357,17 +429,23 @@ module.exports.create = function (configs) {
|
||||||
}
|
}
|
||||||
|
|
||||||
files[keyname] = data;
|
files[keyname] = data;
|
||||||
|
|
||||||
|
return true;
|
||||||
}, function (err) {
|
}, function (err) {
|
||||||
|
log(args.debug, 'Error reading account files:', err);
|
||||||
files[keyname] = { error: err };
|
files[keyname] = { error: err };
|
||||||
});
|
});
|
||||||
}));
|
}));
|
||||||
}).then(function () {
|
}).then(function (hasAccount) {
|
||||||
|
if (!hasAccount) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
var err;
|
var err;
|
||||||
|
|
||||||
if (!Object.keys(files).every(function (key) {
|
if (!Object.keys(files).every(function (key) {
|
||||||
return !files[key].error;
|
return !files[key].error;
|
||||||
}) || !files.private_key || !files.private_key.n) {
|
}) || !files.private_key || !files.private_key.n) {
|
||||||
err = new Error("Account '" + accountId + "' was corrupt. No big deal (I think?). Creating a new one...");
|
err = new Error("Account '" + accountId + "' was corrupt (had id, but was missing files).");
|
||||||
err.code = 'E_ACCOUNT_CORRUPT';
|
err.code = 'E_ACCOUNT_CORRUPT';
|
||||||
err.data = files;
|
err.data = files;
|
||||||
return PromiseA.reject(err);
|
return PromiseA.reject(err);
|
||||||
|
@ -383,15 +461,7 @@ module.exports.create = function (configs) {
|
||||||
return files;
|
return files;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
, registerAsync: function (args) {
|
// Accounts
|
||||||
// save to renewal / account dir ???
|
|
||||||
return getOrCreateRenewal(copy).then(function (pyobj) {
|
|
||||||
|
|
||||||
copy.pyobj = pyobj;
|
|
||||||
return files;
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
|
||||||
, getAsync: function (args) {
|
, getAsync: function (args) {
|
||||||
return store.accounts.checkAsync(args).then(function (account) {
|
return store.accounts.checkAsync(args).then(function (account) {
|
||||||
if (!args.account) {
|
if (!args.account) {
|
||||||
|
@ -402,26 +472,24 @@ module.exports.create = function (configs) {
|
||||||
return account;
|
return account;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
, setAsync: function (args, account) {
|
// Accounts
|
||||||
var isoDate = new Date().toISOString();
|
, setAsync: function (args, reg) {
|
||||||
var os = require("os");
|
var os = require("os");
|
||||||
var localname = os.hostname();
|
var accountId = require('crypto').createHash('md5').update(reg.keypair.privateKeyPem).digest('hex');
|
||||||
var accountDir = path.join(args.accountsDir, account.accountId);
|
var accountDir = path.join(args.accountsDir, accountId);
|
||||||
|
var accountMeta = {
|
||||||
account.meta = account.meta || {
|
creation_host: os.hostname()
|
||||||
creation_host: localname
|
, creation_dt: new Date().toISOString()
|
||||||
, creation_dt: isoDate
|
|
||||||
};
|
};
|
||||||
|
|
||||||
return mkdirpAsync(accountDir).then(function () {
|
return mkdirpAsync(accountDir).then(function () {
|
||||||
var RSA = require('rsa-compat').RSA;
|
|
||||||
|
|
||||||
// TODO abstract file writing
|
// TODO abstract file writing
|
||||||
return PromiseA.all([
|
return PromiseA.all([
|
||||||
// meta.json {"creation_host": "ns1.redirect-www.org", "creation_dt": "2015-12-11T04:14:38Z"}
|
// meta.json {"creation_host": "ns1.redirect-www.org", "creation_dt": "2015-12-11T04:14:38Z"}
|
||||||
fs.writeFileAsync(path.join(accountDir, 'meta.json'), JSON.stringify(account.meta), 'utf8')
|
fs.writeFileAsync(path.join(accountDir, 'meta.json'), JSON.stringify(accountMeta), 'utf8')
|
||||||
// private_key.json { "e", "d", "n", "q", "p", "kty", "qi", "dp", "dq" }
|
// private_key.json { "e", "d", "n", "q", "p", "kty", "qi", "dp", "dq" }
|
||||||
, fs.writeFileAsync(path.join(accountDir, 'private_key.json'), JSON.stringify(RSA.exportPrivateJwk(account.keypair)), 'utf8')
|
, fs.writeFileAsync(path.join(accountDir, 'private_key.json'), JSON.stringify(reg.keypair.privateKeyJwk), 'utf8')
|
||||||
// regr.json:
|
// regr.json:
|
||||||
/*
|
/*
|
||||||
{ body: { contact: [ 'mailto:coolaj86@gmail.com' ],
|
{ body: { contact: [ 'mailto:coolaj86@gmail.com' ],
|
||||||
|
@ -431,10 +499,11 @@ module.exports.create = function (configs) {
|
||||||
new_authzr_uri: 'https://acme-v01.api.letsencrypt.org/acme/new-authz',
|
new_authzr_uri: 'https://acme-v01.api.letsencrypt.org/acme/new-authz',
|
||||||
terms_of_service: 'https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf' }
|
terms_of_service: 'https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf' }
|
||||||
*/
|
*/
|
||||||
, fs.writeFileAsync(path.join(accountDir, 'regr.json'), JSON.stringify(account.regr), 'utf8')
|
, fs.writeFileAsync(path.join(accountDir, 'regr.json'), JSON.stringify({ body: reg.receipt }), 'utf8')
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
// Accounts
|
||||||
, getAccountIdAsync: function (args) {
|
, getAccountIdAsync: function (args) {
|
||||||
var pyconf = PromiseA.promisifyAll(require('pyconf'));
|
var pyconf = PromiseA.promisifyAll(require('pyconf'));
|
||||||
|
|
||||||
|
@ -445,7 +514,7 @@ module.exports.create = function (configs) {
|
||||||
return accountId;
|
return accountId;
|
||||||
}, function (err) {
|
}, function (err) {
|
||||||
if ("ENOENT" === err.code) {
|
if ("ENOENT" === err.code) {
|
||||||
return getAccountIdByEmail(args);
|
return store.accounts._getAccountIdByEmail(args);
|
||||||
}
|
}
|
||||||
|
|
||||||
return PromiseA.reject(err);
|
return PromiseA.reject(err);
|
||||||
|
@ -457,6 +526,7 @@ module.exports.create = function (configs) {
|
||||||
// Configs
|
// Configs
|
||||||
//
|
//
|
||||||
, configs: {
|
, configs: {
|
||||||
|
// Configs
|
||||||
checkAsync: function (copy) {
|
checkAsync: function (copy) {
|
||||||
copy.domains = [];
|
copy.domains = [];
|
||||||
|
|
||||||
|
@ -469,6 +539,7 @@ module.exports.create = function (configs) {
|
||||||
return pyToJson(pyobj);
|
return pyToJson(pyobj);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
// Configs
|
||||||
, _checkHelperAsync: function (args) {
|
, _checkHelperAsync: function (args) {
|
||||||
var pyconf = PromiseA.promisifyAll(require('pyconf'));
|
var pyconf = PromiseA.promisifyAll(require('pyconf'));
|
||||||
|
|
||||||
|
@ -480,6 +551,7 @@ module.exports.create = function (configs) {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
// Configs
|
||||||
, getAsync: function (args) {
|
, getAsync: function (args) {
|
||||||
return store.configs._checkHelperAsync(args).then(function (pyobj) {
|
return store.configs._checkHelperAsync(args).then(function (pyobj) {
|
||||||
var minver = pyobj.checkpoints >= 0;
|
var minver = pyobj.checkpoints >= 0;
|
||||||
|
@ -519,6 +591,7 @@ module.exports.create = function (configs) {
|
||||||
return writeRenewalConfig(args);
|
return writeRenewalConfig(args);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
// Configs
|
||||||
, allAsync: function (copy) {
|
, allAsync: function (copy) {
|
||||||
copy.domains = [];
|
copy.domains = [];
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#cert = :config/live/:hostname/cert.pem
|
#cert = :configDir/live/:hostname/cert.pem
|
||||||
cert = :cert_path
|
cert = :cert_path
|
||||||
privkey = :privkey_path
|
privkey = :privkey_path
|
||||||
chain = :chain_path
|
chain = :chain_path
|
||||||
|
@ -13,7 +13,7 @@ apache_dismod = a2dismod
|
||||||
register_unsafely_without_email = False
|
register_unsafely_without_email = False
|
||||||
uir = None
|
uir = None
|
||||||
installer = none
|
installer = none
|
||||||
config_dir = :config
|
config_dir = :configDir
|
||||||
text_mode = True
|
text_mode = True
|
||||||
# junk?
|
# junk?
|
||||||
# https://github.com/letsencrypt/letsencrypt/issues/1955
|
# https://github.com/letsencrypt/letsencrypt/issues/1955
|
||||||
|
|
Loading…
Reference in New Issue