1
0
鏡像自 https://github.com/therootcompany/greenlock.js.git synced 2024-11-16 17:29:00 +00:00

add default handlers

This commit is contained in:
AJ ONeal 2015-12-15 03:51:41 -08:00
父節點 d03c6ac577
當前提交 d4a44f893c
共有 3 個檔案被更改,包括 36 行新增0 行删除

5
lib/default-handlers.js Normal file
查看文件

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

查看文件

@ -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);
};

查看文件

@ -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);
});
});
};