add default handlers

This commit is contained in:
AJ ONeal 2015-12-15 03:51:41 -08:00
parent d03c6ac577
commit d4a44f893c
3 changed files with 36 additions and 0 deletions

5
lib/default-handlers.js Normal file
View File

@ -0,0 +1,5 @@
'use strict';
module.exports.agreeToTerms = function (args, agree) {
agree(args.agreeTos || args.agree);
};

View File

@ -0,0 +1,10 @@
'use strict';
var path = require('path');
var fs = require('fs');
module.exports = function (args, key, done) {
//var hostname = args.domains[0];
fs.unlinkSync(path.join(args.webroot, key), done);
};

View File

@ -0,0 +1,21 @@
'use strict';
var fs = require('fs');
var path = require('path');
module.exports = function (args, challengePath, keyAuthorization, done) {
//var hostname = args.domains[0];
var mkdirp = require('mkdirp');
// TODO should be args.webrootPath
mkdirp(path.join(args.webrootPath, challengePath), function (err) {
if (err) {
done(err);
return;
}
fs.writeFile(path.join(args.webrootPath, challengePath), keyAuthorization, 'utf8', function (err) {
done(err);
});
});
};