greenlock.js/lib/default-handlers.js

41 lines
1.1 KiB
JavaScript
Raw Normal View 히스토리

2015-12-15 11:51:41 +00:00
'use strict';
2015-12-15 12:01:05 +00:00
var fs = require('fs');
var path = require('path');
2016-08-04 22:49:35 +00:00
module.exports.agreeToTerms = function (args, agreeCb) {
agreeCb(null, args.agreeTos);
2015-12-15 12:01:05 +00:00
};
2016-08-04 22:49:35 +00:00
module.exports.setChallenge = function (args, domain, challengePath, keyAuthorization, done) {
2015-12-15 12:01:05 +00:00
//var hostname = args.domains[0];
var mkdirp = require('mkdirp');
// TODO should be args.webrootPath
2015-12-16 12:57:53 +00:00
//console.log('args.webrootPath, challengePath');
//console.log(args.webrootPath, challengePath);
2015-12-15 15:23:05 +00:00
mkdirp(args.webrootPath, function (err) {
2015-12-15 12:01:05 +00:00
if (err) {
done(err);
return;
}
fs.writeFile(path.join(args.webrootPath, challengePath), keyAuthorization, 'utf8', function (err) {
done(err);
});
});
};
2016-08-04 22:49:35 +00:00
module.exports.getChallenge = function (args, domain, key, done) {
2015-12-15 12:01:05 +00:00
//var hostname = args.domains[0];
2015-12-16 12:57:53 +00:00
//console.log("getting the challenge", args, key);
fs.readFile(path.join(args.webrootPath, key), 'utf8', done);
2015-12-15 12:01:05 +00:00
};
2016-08-04 22:49:35 +00:00
module.exports.removeChallenge = function (args, domain, key, done) {
2015-12-15 12:01:05 +00:00
//var hostname = args.domains[0];
2015-12-16 10:07:00 +00:00
fs.unlink(path.join(args.webrootPath, key), done);
2015-12-15 11:51:41 +00:00
};