mirror of
				https://github.com/therootcompany/acme.js.git
				synced 2024-11-16 17:29:00 +00:00 
			
		
		
		
	Compare commits
	
		
			No commits in common. "45fd6962f259c6399de05589848d68be42894316" and "bef931f28f08e0d5337dfefca33d7f98eb6651ff" have entirely different histories.
		
	
	
		
			45fd6962f2
			...
			bef931f28f
		
	
		
							
								
								
									
										48
									
								
								acme.js
									
									
									
									
									
								
							
							
						
						
									
										48
									
								
								acme.js
									
									
									
									
									
								
							| @ -756,8 +756,12 @@ ACME._postChallenge = function (me, options, kid, auth) { | ||||
| 			altname: altname | ||||
| 		}); | ||||
| 
 | ||||
| 		// State can be pending while waiting ACME server to transition to
 | ||||
| 		// processing
 | ||||
| 		if ('processing' === resp.body.status) { | ||||
| 			//#console.debug('poll: again', auth.url);
 | ||||
| 			return ACME._wait(RETRY_INTERVAL).then(pollStatus); | ||||
| 		} | ||||
| 
 | ||||
| 		// This state should never occur
 | ||||
| 		if ('pending' === resp.body.status) { | ||||
| 			if (count >= MAX_PEND) { | ||||
| 				return ACME._wait(RETRY_INTERVAL) | ||||
| @ -765,12 +769,7 @@ ACME._postChallenge = function (me, options, kid, auth) { | ||||
| 					.then(respondToChallenge); | ||||
| 			} | ||||
| 			//#console.debug('poll: again', auth.url);
 | ||||
| 			return ACME._wait(RETRY_INTERVAL).then(pollStatus); | ||||
| 		} | ||||
| 
 | ||||
| 		if ('processing' === resp.body.status) { | ||||
| 			//#console.debug('poll: again', auth.url);
 | ||||
| 			return ACME._wait(RETRY_INTERVAL).then(pollStatus); | ||||
| 			return ACME._wait(RETRY_INTERVAL).then(respondToChallenge); | ||||
| 		} | ||||
| 
 | ||||
| 		// REMOVE DNS records as soon as the state is non-processing
 | ||||
| @ -1013,7 +1012,14 @@ ACME._pollOrderStatus = function (me, options, kid, order, verifieds) { | ||||
| 	var body = { csr: csr64 }; | ||||
| 	var payload = JSON.stringify(body); | ||||
| 
 | ||||
| 	function processResponse(resp) { | ||||
| 	function pollCert() { | ||||
| 		//#console.debug('[ACME.js] pollCert:', order._finalizeUrl);
 | ||||
| 		return U._jwsRequest(me, { | ||||
| 			accountKey: options.accountKey, | ||||
| 			url: order._finalizeUrl, | ||||
| 			protected: { kid: kid }, | ||||
| 			payload: Enc.strToBuf(payload) | ||||
| 		}).then(function (resp) { | ||||
| 			ACME._notify(me, options, 'certificate_status', { | ||||
| 				subject: options.domains[0], | ||||
| 				status: resp.body.status | ||||
| @ -1029,7 +1035,7 @@ ACME._pollOrderStatus = function (me, options, kid, order, verifieds) { | ||||
| 			} | ||||
| 
 | ||||
| 			if ('processing' === resp.body.status) { | ||||
| 			return ACME._wait().then(pollStatus); | ||||
| 				return ACME._wait().then(pollCert); | ||||
| 			} | ||||
| 
 | ||||
| 			if (me.debug) { | ||||
| @ -1069,28 +1075,10 @@ ACME._pollOrderStatus = function (me, options, kid, order, verifieds) { | ||||
| 			return Promise.reject( | ||||
| 				E.UNHANDLED_ORDER_STATUS(options, verifieds, resp) | ||||
| 			); | ||||
| 		}); | ||||
| 	} | ||||
| 
 | ||||
| 	function pollStatus() { | ||||
| 		return U._jwsRequest(me, { | ||||
| 			accountKey: options.accountKey, | ||||
| 			url: order._orderUrl, | ||||
| 			protected: { kid: kid }, | ||||
| 			payload: Enc.binToBuf('') | ||||
| 		}).then(processResponse); | ||||
| 	} | ||||
| 
 | ||||
| 	function finalizeOrder() { | ||||
| 		//#console.debug('[ACME.js] pollCert:', order._finalizeUrl);
 | ||||
| 		return U._jwsRequest(me, { | ||||
| 			accountKey: options.accountKey, | ||||
| 			url: order._finalizeUrl, | ||||
| 			protected: { kid: kid }, | ||||
| 			payload: Enc.strToBuf(payload) | ||||
| 		}).then(processResponse); | ||||
| 	} | ||||
| 
 | ||||
| 	return finalizeOrder(); | ||||
| 	return pollCert(); | ||||
| }; | ||||
| 
 | ||||
| ACME._redeemCert = function (me, options, kid, voucher) { | ||||
|  | ||||
							
								
								
									
										2
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										2
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							| @ -1,6 +1,6 @@ | ||||
| { | ||||
| 	"name": "@root/acme", | ||||
| 	"version": "3.1.1", | ||||
| 	"version": "3.1.0", | ||||
| 	"lockfileVersion": 1, | ||||
| 	"requires": true, | ||||
| 	"dependencies": { | ||||
|  | ||||
| @ -1,6 +1,6 @@ | ||||
| { | ||||
| 	"name": "@root/acme", | ||||
| 	"version": "3.1.1", | ||||
| 	"version": "3.1.0", | ||||
| 	"description": "Free SSL certificates for Node.js and Browsers. Issued via Let's Encrypt", | ||||
| 	"homepage": "https://rootprojects.org/acme/", | ||||
| 	"main": "acme.js", | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user