refactor
This commit is contained in:
parent
fd18ecd777
commit
1c02ff5ad0
239
lib/core.js
239
lib/core.js
|
@ -31,13 +31,132 @@ function getAcmeUrls(args) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function writeCertificateAsync(result, args, defaults, handlers) {
|
||||||
|
if (args.debug) {
|
||||||
|
console.log("got certificate!");
|
||||||
|
}
|
||||||
|
|
||||||
|
result.fullchain = result.cert + '\n' + result.ca;
|
||||||
|
|
||||||
|
var pyconf = PromiseA.promisifyAll(require('pyconf'));
|
||||||
|
|
||||||
|
return pyconf.readFileAsync(args.renewalPath).then(function (obj) {
|
||||||
|
return obj;
|
||||||
|
}, function () {
|
||||||
|
return pyconf.readFileAsync(path.join(__dirname, 'renewal.conf.tpl')).then(function (obj) {
|
||||||
|
return obj;
|
||||||
|
});
|
||||||
|
}).then(function (obj) {
|
||||||
|
obj.checkpoint = parseInt(obj.checkpoint, 10) || 0;
|
||||||
|
|
||||||
|
var liveDir = args.liveDir || path.join(args.configDir, 'live', args.domains[0]);
|
||||||
|
|
||||||
|
var certPath = args.certPath || obj.cert || path.join(liveDir, 'cert.pem');
|
||||||
|
var fullchainPath = args.fullchainPath || obj.fullchain || path.join(liveDir, 'fullchain.pem');
|
||||||
|
var chainPath = args.chainPath || obj.chain || path.join(liveDir, 'chain.pem');
|
||||||
|
var privkeyPath = args.domainPrivateKeyPath || args.domainKeyPath
|
||||||
|
|| obj.privkey || obj.keyPath
|
||||||
|
|| path.join(liveDir, 'privkey.pem');
|
||||||
|
|
||||||
|
var archiveDir = args.archiveDir || path.join(args.configDir, 'archive', args.domains[0]);
|
||||||
|
|
||||||
|
var checkpoint = obj.checkpoint.toString();
|
||||||
|
var certArchive = path.join(archiveDir, 'cert' + checkpoint + '.pem');
|
||||||
|
var fullchainArchive = path.join(archiveDir, 'fullchain' + checkpoint + '.pem');
|
||||||
|
var chainArchive = path.join(archiveDir, 'chain'+ checkpoint + '.pem');
|
||||||
|
var privkeyArchive = path.join(archiveDir, 'privkey' + checkpoint + '.pem');
|
||||||
|
|
||||||
|
return mkdirpAsync(archiveDir).then(function () {
|
||||||
|
return PromiseA.all([
|
||||||
|
sfs.writeFileAsync(certArchive, result.cert, 'ascii')
|
||||||
|
, sfs.writeFileAsync(chainArchive, result.ca || result.chain, 'ascii')
|
||||||
|
, sfs.writeFileAsync(fullchainArchive, result.fullchain, 'ascii')
|
||||||
|
, sfs.writeFileAsync(privkeyArchive, result.key || result.privkey || args.domainPrivateKeyPem, 'ascii')
|
||||||
|
]);
|
||||||
|
}).then(function () {
|
||||||
|
return mkdirpAsync(liveDir);
|
||||||
|
}).then(function () {
|
||||||
|
return PromiseA.all([
|
||||||
|
sfs.writeFileAsync(certPath, result.cert, 'ascii')
|
||||||
|
, sfs.writeFileAsync(chainPath, result.ca || result.chain, 'ascii')
|
||||||
|
, sfs.writeFileAsync(fullchainPath, result.fullchain, 'ascii')
|
||||||
|
, sfs.writeFileAsync(privkeyPath, result.key || result.privkey || args.domainPrivateKeyPem, 'ascii')
|
||||||
|
]);
|
||||||
|
}).then(function () {
|
||||||
|
obj.checkpoint += 1;
|
||||||
|
|
||||||
|
var updates = {
|
||||||
|
cert: certPath
|
||||||
|
, privkey: privkeyPath
|
||||||
|
, chain: chainPath
|
||||||
|
, fullchain: fullchainPath
|
||||||
|
, configDir: args.configDir
|
||||||
|
, workDir: args.workDir
|
||||||
|
, tos: args.agreeTos && true
|
||||||
|
, http01Port: args.http01Port
|
||||||
|
, keyPath: args.domainPrivateKeyPath || args.privkeyPath
|
||||||
|
, email: args.email
|
||||||
|
, domains: args.domains
|
||||||
|
, rsaKeySize: args.rsaKeySize
|
||||||
|
, checkpoints: obj.checkpoint
|
||||||
|
// TODO XXX what's the deal with these? they don't make sense
|
||||||
|
// are they just old junk? or do they have a meaning that I don't know about?
|
||||||
|
, fullchainPath: path.join(args.configDir, 'chain.pem')
|
||||||
|
, certPath: path.join(args.configDir, 'cert.pem')
|
||||||
|
, chainPath: path.join(args.configDir, 'chain.pem')
|
||||||
|
// TODO XXX end
|
||||||
|
// yes, it's an array. weird, right?
|
||||||
|
, webrootPath: args.webrootPath && [args.webrootPath] || []
|
||||||
|
, account: account.accountId
|
||||||
|
, server: args.server || args.acmeDiscoveryUrl
|
||||||
|
, logsDir: args.logsDir
|
||||||
|
};
|
||||||
|
|
||||||
|
// final section is completely dynamic
|
||||||
|
// :hostname = :webroot_path
|
||||||
|
args.domains.forEach(function (hostname) {
|
||||||
|
updates[hostname] = args.webrootPath;
|
||||||
|
});
|
||||||
|
|
||||||
|
// must write back to the original object or
|
||||||
|
// annotations will be lost
|
||||||
|
Object.keys(updates).forEach(function (key) {
|
||||||
|
obj[key] = updates[key];
|
||||||
|
});
|
||||||
|
|
||||||
|
return mkdirpAsync(path.dirname(args.renewalPath)).then(function () {
|
||||||
|
return pyconf.writeFileAsync(args.renewalPath, obj);
|
||||||
|
});
|
||||||
|
}).then(function () {
|
||||||
|
|
||||||
|
return {
|
||||||
|
certPath: certPath
|
||||||
|
, chainPath: chainPath
|
||||||
|
, fullchainPath: fullchainPath
|
||||||
|
, privkeyPath: privkeyPath
|
||||||
|
|
||||||
|
// some ambiguity here...
|
||||||
|
, privkey: result.key || result.privkey
|
||||||
|
, fullchain: result.fullchain || result.cert
|
||||||
|
, chain: result.ca || result.chain
|
||||||
|
// especially this one... might be cert only, might be fullchain
|
||||||
|
, cert: result.cert
|
||||||
|
|
||||||
|
, issuedAt: Date.now()
|
||||||
|
, lifetime: defaults.lifetime || handlers.lifetime
|
||||||
|
};
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function getCertificateAsync(account, args, defaults, handlers) {
|
function getCertificateAsync(account, args, defaults, handlers) {
|
||||||
return leCrypto.generateRsaKeypairAsync(args.rsaKeySize, 65537).then(function (domainKey) {
|
return leCrypto.generateRsaKeypairAsync(args.rsaKeySize, 65537).then(function (domainKey) {
|
||||||
if (args.debug) {
|
if (args.debug) {
|
||||||
console.log("get certificate");
|
console.log("get certificate");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
args.domainPrivateKeyPem = domainKey.privateKeyPem;
|
||||||
|
|
||||||
return LeCore.getCertificateAsync({
|
return LeCore.getCertificateAsync({
|
||||||
debug: args.debug
|
debug: args.debug
|
||||||
|
|
||||||
|
@ -86,121 +205,9 @@ function getCertificateAsync(account, args, defaults, handlers) {
|
||||||
done(new Error("handlers.removeChallenge receives the wrong number of arguments"));
|
done(new Error("handlers.removeChallenge receives the wrong number of arguments"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}).then(function (result) {
|
|
||||||
if (args.debug) {
|
|
||||||
console.log("got certificate!");
|
|
||||||
}
|
|
||||||
|
|
||||||
result.fullchain = result.cert + '\n' + result.ca;
|
|
||||||
|
|
||||||
var pyconf = PromiseA.promisifyAll(require('pyconf'));
|
|
||||||
|
|
||||||
return pyconf.readFileAsync(args.renewalPath).then(function (obj) {
|
|
||||||
return obj;
|
|
||||||
}, function () {
|
|
||||||
return pyconf.readFileAsync(path.join(__dirname, 'lib', 'renewal.conf.tpl')).then(function (obj) {
|
|
||||||
return obj;
|
|
||||||
});
|
|
||||||
}).then(function (obj) {
|
|
||||||
obj.checkpoint = parseInt(obj.checkpoint, 10) || 0;
|
|
||||||
|
|
||||||
var liveDir = args.liveDir || path.join(args.configDir, 'live', args.domains[0]);
|
|
||||||
|
|
||||||
var certPath = args.certPath || obj.cert || path.join(liveDir, 'cert.pem');
|
|
||||||
var fullchainPath = args.fullchainPath || obj.fullchain || path.join(liveDir, 'fullchain.pem');
|
|
||||||
var chainPath = args.chainPath || obj.chain || path.join(liveDir, 'chain.pem');
|
|
||||||
var privkeyPath = args.domainPrivateKeyPath || args.domainKeyPath
|
|
||||||
|| obj.privkey || obj.keyPath
|
|
||||||
|| path.join(liveDir, 'privkey.pem');
|
|
||||||
|
|
||||||
var archiveDir = args.archiveDir || path.join(args.configDir, 'archive', args.domains[0]);
|
|
||||||
|
|
||||||
var checkpoint = obj.checkpoint.toString();
|
|
||||||
var certArchive = path.join(archiveDir, 'cert' + checkpoint + '.pem');
|
|
||||||
var fullchainArchive = path.join(archiveDir, 'fullchain' + checkpoint + '.pem');
|
|
||||||
var chainArchive = path.join(archiveDir, 'chain'+ checkpoint + '.pem');
|
|
||||||
var privkeyArchive = path.join(archiveDir, 'privkey' + checkpoint + '.pem');
|
|
||||||
|
|
||||||
return mkdirpAsync(archiveDir).then(function () {
|
|
||||||
return PromiseA.all([
|
|
||||||
sfs.writeFileAsync(certArchive, result.cert, 'ascii')
|
|
||||||
, sfs.writeFileAsync(chainArchive, result.ca || result.chain, 'ascii')
|
|
||||||
, sfs.writeFileAsync(fullchainArchive, result.fullchain, 'ascii')
|
|
||||||
, sfs.writeFileAsync(privkeyArchive, result.key || result.privkey, 'ascii')
|
|
||||||
]);
|
|
||||||
}).then(function () {
|
|
||||||
return mkdirpAsync(liveDir);
|
|
||||||
}).then(function () {
|
|
||||||
return PromiseA.all([
|
|
||||||
sfs.writeFileAsync(certPath, result.cert, 'ascii')
|
|
||||||
, sfs.writeFileAsync(chainPath, result.ca || result.chain, 'ascii')
|
|
||||||
, sfs.writeFileAsync(fullchainPath, result.fullchain, 'ascii')
|
|
||||||
, sfs.writeFileAsync(privkeyPath, result.key || result.privkey, 'ascii')
|
|
||||||
]);
|
|
||||||
}).then(function () {
|
|
||||||
obj.checkpoint += 1;
|
|
||||||
|
|
||||||
var updates = {
|
|
||||||
cert: certPath
|
|
||||||
, privkey: privkeyPath
|
|
||||||
, chain: chainPath
|
|
||||||
, fullchain: fullchainPath
|
|
||||||
, configDir: args.configDir
|
|
||||||
, workDir: args.workDir
|
|
||||||
, tos: args.agreeTos && true
|
|
||||||
, http01Port: args.http01Port
|
|
||||||
, keyPath: args.domainPrivateKeyPath || args.privkeyPath
|
|
||||||
, email: args.email
|
|
||||||
, domains: args.domains
|
|
||||||
, rsaKeySize: args.rsaKeySize
|
|
||||||
, checkpoints: obj.checkpoint
|
|
||||||
// TODO XXX what's the deal with these? they don't make sense
|
|
||||||
// are they just old junk? or do they have a meaning that I don't know about?
|
|
||||||
, fullchainPath: path.join(args.configDir, 'chain.pem')
|
|
||||||
, certPath: path.join(args.configDir, 'cert.pem')
|
|
||||||
, chainPath: path.join(args.configDir, 'chain.pem')
|
|
||||||
// TODO XXX end
|
|
||||||
// yes, it's an array. weird, right?
|
|
||||||
, webrootPath: args.webrootPath && [args.webrootPath] || []
|
|
||||||
, account: account.accountId
|
|
||||||
, server: args.server || args.acmeDiscoveryUrl
|
|
||||||
, logsDir: args.logsDir
|
|
||||||
};
|
|
||||||
|
|
||||||
// final section is completely dynamic
|
|
||||||
// :hostname = :webroot_path
|
|
||||||
args.domains.forEach(function (hostname) {
|
|
||||||
updates[hostname] = args.webrootPath;
|
|
||||||
});
|
|
||||||
|
|
||||||
// must write back to the original object or
|
|
||||||
// annotations will be lost
|
|
||||||
Object.keys(updates).forEach(function (key) {
|
|
||||||
obj[key] = updates[key];
|
|
||||||
});
|
|
||||||
|
|
||||||
return pyconf.writeFile(args.renewalPath, obj);
|
|
||||||
}).then(function () {
|
|
||||||
|
|
||||||
return {
|
|
||||||
certPath: certPath
|
|
||||||
, chainPath: chainPath
|
|
||||||
, fullchainPath: fullchainPath
|
|
||||||
, privkeyPath: privkeyPath
|
|
||||||
|
|
||||||
// some ambiguity here...
|
|
||||||
, privkey: result.key || result.privkey
|
|
||||||
, fullchain: result.fullchain || result.cert
|
|
||||||
, chain: result.ca || result.chain
|
|
||||||
// especially this one... might be cert only, might be fullchain
|
|
||||||
, cert: result.cert
|
|
||||||
|
|
||||||
, issuedAt: Date.now()
|
|
||||||
, lifetime: defaults.lifetime || handlers.lifetime
|
|
||||||
};
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
}).then(function (results) {
|
||||||
|
writeCertificateAsync(results, args, defaults, handlers);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -280,6 +287,7 @@ function getOrCreateAcmeAccount(args, defaults, handlers) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
return account;
|
||||||
});
|
});
|
||||||
/*
|
/*
|
||||||
return fs.readdirAsync(accountsDir, function (nodes) {
|
return fs.readdirAsync(accountsDir, function (nodes) {
|
||||||
|
@ -299,6 +307,7 @@ module.exports.create = function (defaults, handlers) {
|
||||||
registerAsync: function (args) {
|
registerAsync: function (args) {
|
||||||
var copy;
|
var copy;
|
||||||
// TODO move these defaults elsewhere?
|
// TODO move these defaults elsewhere?
|
||||||
|
//args.renewalDir = args.renewalDir || ':config/renewal/';
|
||||||
args.renewalPath = args.renewalPath || ':config/renewal/:hostname.conf';
|
args.renewalPath = args.renewalPath || ':config/renewal/:hostname.conf';
|
||||||
// Note: the /directory is part of the server url and, as such, bleeds into the pathname
|
// Note: the /directory is part of the server url and, as such, bleeds into the pathname
|
||||||
// So :config/accounts/:server/directory is *incorrect*, but the following *is* correct:
|
// So :config/accounts/:server/directory is *incorrect*, but the following *is* correct:
|
||||||
|
@ -310,6 +319,8 @@ module.exports.create = function (defaults, handlers) {
|
||||||
console.log('[LE DEBUG] reg domains', args.domains);
|
console.log('[LE DEBUG] reg domains', args.domains);
|
||||||
}
|
}
|
||||||
return getOrCreateAcmeAccount(copy, defaults, handlers).then(function (account) {
|
return getOrCreateAcmeAccount(copy, defaults, handlers).then(function (account) {
|
||||||
|
console.log('AAAAAAAAAACCCCCCCCCCCCCCCCOOOOOOOOOOOOOOUUUUUUUUUUUUUUUNNNNNNNNNNNNNNNNTTTTTTTTTTTT');
|
||||||
|
console.log(account);
|
||||||
return getOrCreateDomainCertificate(account, copy, defaults, handlers);
|
return getOrCreateDomainCertificate(account, copy, defaults, handlers);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue