| 
									
										
										
										
											2015-12-11 06:22:46 -08:00
										 |  |  | 'use strict'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-08 15:17:09 -04:00
										 |  |  | var ACME = require('le-acme-core').ACME; | 
					
						
							| 
									
										
										
										
											2015-12-12 15:05:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-13 01:04:12 +00:00
										 |  |  | var LE = module.exports; | 
					
						
							| 
									
										
										
										
											2016-08-08 15:17:09 -04:00
										 |  |  | LE.LE = LE; | 
					
						
							| 
									
										
										
										
											2016-08-05 18:50:42 -04:00
										 |  |  | // in-process cache, shared between all instances
 | 
					
						
							|  |  |  | var ipc = {}; | 
					
						
							| 
									
										
										
										
											2016-08-04 18:49:35 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-12 21:33:50 -05:00
										 |  |  | LE.defaults = { | 
					
						
							| 
									
										
										
										
											2016-08-08 15:17:09 -04:00
										 |  |  |   productionServerUrl: ACME.productionServerUrl | 
					
						
							|  |  |  | , stagingServerUrl: ACME.stagingServerUrl | 
					
						
							| 
									
										
										
										
											2016-08-04 18:49:35 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-08 15:17:09 -04:00
										 |  |  | , rsaKeySize: ACME.rsaKeySize || 2048 | 
					
						
							|  |  |  | , challengeType: ACME.challengeType || 'http-01' | 
					
						
							| 
									
										
										
										
											2016-08-05 18:21:10 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-08 15:17:09 -04:00
										 |  |  | , acmeChallengePrefix: ACME.acmeChallengePrefix | 
					
						
							| 
									
										
										
										
											2016-02-12 21:33:50 -05:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2015-12-20 02:41:17 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-16 01:11:31 -08:00
										 |  |  | // backwards compat
 | 
					
						
							| 
									
										
										
										
											2016-08-04 18:49:35 -04:00
										 |  |  | Object.keys(LE.defaults).forEach(function (key) { | 
					
						
							|  |  |  |   LE[key] = LE.defaults[key]; | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2015-12-13 01:04:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-05 18:21:10 -04:00
										 |  |  | // show all possible options
 | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  | var u; // undefined
 | 
					
						
							|  |  |  | LE._undefined = { | 
					
						
							| 
									
										
										
										
											2016-08-08 11:21:33 -04:00
										 |  |  |   acme: u | 
					
						
							|  |  |  | , store: u | 
					
						
							| 
									
										
										
										
											2016-08-09 14:05:47 -04:00
										 |  |  | , challenge: u | 
					
						
							| 
									
										
										
										
											2016-08-08 19:14:53 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  | , register: u | 
					
						
							|  |  |  | , check: u | 
					
						
							| 
									
										
										
										
											2016-08-08 19:14:53 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  | , renewWithin: u | 
					
						
							|  |  |  | , memorizeFor: u | 
					
						
							|  |  |  | , acmeChallengePrefix: u | 
					
						
							| 
									
										
										
										
											2016-08-05 18:21:10 -04:00
										 |  |  | , rsaKeySize: u | 
					
						
							|  |  |  | , challengeType: u | 
					
						
							|  |  |  | , server: u | 
					
						
							| 
									
										
										
										
											2016-08-06 01:33:19 -04:00
										 |  |  | , agreeToTerms: u | 
					
						
							| 
									
										
										
										
											2016-08-05 18:50:42 -04:00
										 |  |  | , _ipc: u | 
					
						
							| 
									
										
										
										
											2016-08-09 14:05:47 -04:00
										 |  |  | , duplicate: u | 
					
						
							|  |  |  | , _acmeUrls: u | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  | }; | 
					
						
							|  |  |  | LE._undefine = function (le) { | 
					
						
							|  |  |  |   Object.keys(LE._undefined).forEach(function (key) { | 
					
						
							|  |  |  |     if (!(key in le)) { | 
					
						
							|  |  |  |       le[key] = u; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return le; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | LE.create = function (le) { | 
					
						
							| 
									
										
										
										
											2016-08-05 18:50:42 -04:00
										 |  |  |   var PromiseA = require('bluebird'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-08 15:17:09 -04:00
										 |  |  |   le.acme = le.acme || ACME.create({ debug: le.debug }); | 
					
						
							| 
									
										
										
										
											2016-08-05 18:50:42 -04:00
										 |  |  |   le.store = le.store || require('le-store-certbot').create({ debug: le.debug }); | 
					
						
							| 
									
										
										
										
											2016-08-10 20:40:35 -06:00
										 |  |  |   le.challenge = le.challenge || require('le-challenge-fs').create({ debug: le.debug }); | 
					
						
							| 
									
										
										
										
											2016-08-05 18:50:42 -04:00
										 |  |  |   le.core = require('./lib/core'); | 
					
						
							| 
									
										
										
										
											2016-08-10 20:40:35 -06:00
										 |  |  |   // le.sni = require('le-sni-auto')
 | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-05 18:50:42 -04:00
										 |  |  |   le = LE._undefine(le); | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  |   le.acmeChallengePrefix = LE.acmeChallengePrefix; | 
					
						
							| 
									
										
										
										
											2016-08-05 18:21:10 -04:00
										 |  |  |   le.rsaKeySize = le.rsaKeySize || LE.rsaKeySize; | 
					
						
							|  |  |  |   le.challengeType = le.challengeType || LE.challengeType; | 
					
						
							| 
									
										
										
										
											2016-08-05 18:50:42 -04:00
										 |  |  |   le._ipc = ipc; | 
					
						
							| 
									
										
										
										
											2016-08-08 19:14:53 -04:00
										 |  |  |   le.agreeToTerms = le.agreeToTerms || function (args, agreeCb) { | 
					
						
							|  |  |  |     agreeCb(new Error("'agreeToTerms' was not supplied to LE and 'agreeTos' was not supplied to LE.register")); | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   if (!le.renewWithin) { le.renewWithin = 3 * 24 * 60 * 60 * 1000; } | 
					
						
							|  |  |  |   if (!le.memorizeFor) { le.memorizeFor = 1 * 24 * 60 * 60 * 1000; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (!le.server) { | 
					
						
							|  |  |  |     throw new Error("opts.server must be set to 'staging' or a production url, such as LE.productionServerUrl'"); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   if ('staging' === le.server) { | 
					
						
							|  |  |  |     le.server = LE.stagingServerUrl; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   else if ('production' === le.server) { | 
					
						
							|  |  |  |     le.server = LE.productionServerUrl; | 
					
						
							| 
									
										
										
										
											2015-12-13 05:03:48 +00:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2015-12-17 08:46:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-08 11:21:33 -04:00
										 |  |  |   if (le.acme.create) { | 
					
						
							|  |  |  |     le.acme = le.acme.create(le); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   le.acme = PromiseA.promisifyAll(le.acme); | 
					
						
							|  |  |  |   le._acmeOpts = le.acme.getOptions(); | 
					
						
							|  |  |  |   Object.keys(le._acmeOpts).forEach(function (key) { | 
					
						
							|  |  |  |     if (!(key in le)) { | 
					
						
							|  |  |  |       le[key] = le._acmeOpts[key]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-05 18:50:42 -04:00
										 |  |  |   if (le.store.create) { | 
					
						
							|  |  |  |     le.store = le.store.create(le); | 
					
						
							| 
									
										
										
										
											2015-12-15 15:40:44 +00:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-08-05 18:50:42 -04:00
										 |  |  |   le.store = PromiseA.promisifyAll(le.store); | 
					
						
							|  |  |  |   le._storeOpts = le.store.getOptions(); | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  |   Object.keys(le._storeOpts).forEach(function (key) { | 
					
						
							| 
									
										
										
										
											2016-08-08 11:21:33 -04:00
										 |  |  |     if (!(key in le)) { | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  |       le[key] = le._storeOpts[key]; | 
					
						
							| 
									
										
										
										
											2015-12-12 14:20:12 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-09 14:05:47 -04:00
										 |  |  |   if (le.challenge.create) { | 
					
						
							|  |  |  |     le.challenge = le.challenge.create(le); | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-08-09 14:05:47 -04:00
										 |  |  |   le.challenge = PromiseA.promisifyAll(le.challenge); | 
					
						
							|  |  |  |   le._challengeOpts = le.challenge.getOptions(); | 
					
						
							|  |  |  |   Object.keys(le._challengeOpts).forEach(function (key) { | 
					
						
							| 
									
										
										
										
											2016-08-08 11:21:33 -04:00
										 |  |  |     if (!(key in le)) { | 
					
						
							| 
									
										
										
										
											2016-08-09 14:05:47 -04:00
										 |  |  |       le[key] = le._challengeOpts[key]; | 
					
						
							| 
									
										
										
										
											2015-12-20 02:41:17 -08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-08-09 15:02:10 -04:00
										 |  |  |   // TODO wrap these here and now with tplCopy?
 | 
					
						
							|  |  |  |   if (5 !== le.challenge.set.length) { | 
					
						
							|  |  |  |     throw new Error("le.challenge.set receives the wrong number of arguments." | 
					
						
							|  |  |  |       + " You must define setChallenge as function (opts, domain, key, val, cb) { }"); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   if (4 !== le.challenge.get.length) { | 
					
						
							|  |  |  |     throw new Error("le.challenge.get receives the wrong number of arguments." | 
					
						
							|  |  |  |       + " You must define getChallenge as function (opts, domain, key, cb) { }"); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   if (4 !== le.challenge.remove.length) { | 
					
						
							|  |  |  |     throw new Error("le.challenge.remove receives the wrong number of arguments." | 
					
						
							|  |  |  |       + " You must define removeChallenge as function (opts, domain, key, cb) { }"); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-05 18:50:42 -04:00
										 |  |  |   if (le.core.create) { | 
					
						
							|  |  |  |     le.core = le.core.create(le); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   le.register = function (args) { | 
					
						
							| 
									
										
										
										
											2016-08-07 02:02:02 -04:00
										 |  |  |     return le.core.certificates.getAsync(args); | 
					
						
							| 
									
										
										
										
											2015-12-12 14:20:12 +00:00
										 |  |  |   }; | 
					
						
							| 
									
										
										
										
											2015-12-11 06:22:46 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  |   le.check = function (args) { | 
					
						
							|  |  |  |     // TODO must return email, domains, tos, pems
 | 
					
						
							| 
									
										
										
										
											2016-08-07 02:02:02 -04:00
										 |  |  |     return le.core.certificates.checkAsync(args); | 
					
						
							| 
									
										
										
										
											2016-08-05 18:16:29 -04:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-09 14:05:47 -04:00
										 |  |  |   le.middleware = le.middleware || require('./lib/middleware'); | 
					
						
							|  |  |  |   if (le.middleware.create) { | 
					
						
							|  |  |  |     le.middleware = le.middleware.create(le); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-08-05 04:14:40 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-12 14:20:12 +00:00
										 |  |  |   return le; | 
					
						
							| 
									
										
										
										
											2015-12-11 06:22:46 -08:00
										 |  |  | }; |