forked from root/acme.js
58 lines
2.0 KiB
JavaScript
58 lines
2.0 KiB
JavaScript
|
'use strict';
|
||
|
|
||
|
var RSA = require('rsa-compat').RSA;
|
||
|
|
||
|
module.exports.run = function (web, chType, email) {
|
||
|
console.log('[DEBUG] run', web, chType, email);
|
||
|
|
||
|
var acme2 = require('./compat.js').ACME.create({ RSA: RSA });
|
||
|
acme2.getAcmeUrls(acme2.stagingServerUrl, function (err, body) {
|
||
|
if (err) { console.log('err 1'); throw err; }
|
||
|
console.log(body);
|
||
|
|
||
|
var options = {
|
||
|
agreeToTerms: function (tosUrl, agree) {
|
||
|
agree(null, tosUrl);
|
||
|
}
|
||
|
, setChallenge: function (hostname, token, val, cb) {
|
||
|
console.log("Put the string '" + val + "' into a file at '" + hostname + "/" + acme2.acmeChallengePrefix + "/" + token + "'");
|
||
|
console.log("echo '" + val + "' > '" + hostname + "/" + acme2.acmeChallengePrefix + "/" + token + "'");
|
||
|
console.log("\nThen hit the 'any' key to continue (must be specifically the 'any' key)...");
|
||
|
|
||
|
function onAny() {
|
||
|
console.log("'any' key was hit");
|
||
|
process.stdin.pause();
|
||
|
process.stdin.removeListener('data', onAny);
|
||
|
process.stdin.setRawMode(false);
|
||
|
cb();
|
||
|
}
|
||
|
|
||
|
process.stdin.setRawMode(true);
|
||
|
process.stdin.resume();
|
||
|
process.stdin.on('data', onAny);
|
||
|
}
|
||
|
, removeChallenge: function (hostname, key, cb) {
|
||
|
console.log('[DEBUG] remove challenge', hostname, key);
|
||
|
setTimeout(cb, 1 * 1000);
|
||
|
}
|
||
|
, challengeType: chType
|
||
|
, email: email
|
||
|
, accountKeypair: RSA.import({ privateKeyPem: require('fs').readFileSync(__dirname + '/account.privkey.pem') })
|
||
|
, domainKeypair: RSA.import({ privateKeyPem: require('fs').readFileSync(__dirname + '/privkey.pem') })
|
||
|
, domains: web
|
||
|
};
|
||
|
|
||
|
acme2.registerNewAccount(options, function (err, account) {
|
||
|
if (err) { console.log('err 2'); throw err; }
|
||
|
console.log('account:');
|
||
|
console.log(account);
|
||
|
|
||
|
acme2.getCertificate(options, function (err, fullchainPem) {
|
||
|
if (err) { console.log('err 3'); throw err; }
|
||
|
console.log('[acme-v2] A fullchain.pem:');
|
||
|
console.log(fullchainPem);
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
};
|