Comparing version 1.5.0 to 1.5.1
44
node.js
@@ -38,3 +38,3 @@ // Copyright 2018 AJ ONeal. All rights reserved | ||
err = new Error( | ||
"Error: Failed HTTP-01 Dry Run.\n" | ||
"Error: Failed HTTP-01 Pre-Flight / Dry Run.\n" | ||
+ "curl '" + url + "'\n" | ||
@@ -64,3 +64,3 @@ + "Expected: '" + auth.keyAuthorization + "'\n" | ||
err = new Error( | ||
"Error: Failed DNS-01 Dry Run.\n" | ||
"Error: Failed DNS-01 Pre-Flight Dry Run.\n" | ||
+ "dig TXT '" + hostname + "' does not return '" + auth.dnsAuthorization + "'\n" | ||
@@ -364,3 +364,5 @@ + "See https://git.coolaj86.com/coolaj86/acme-v2.js/issues/4" | ||
if (count >= MAX_POLL) { | ||
return Promise.reject(new Error("[acme-v2] stuck in bad pending/processing state")); | ||
return Promise.reject(new Error( | ||
"[acme-v2] stuck in bad pending/processing state for '" + identifier.value + "'" | ||
)); | ||
} | ||
@@ -401,13 +403,14 @@ | ||
var errmsg; | ||
if (!resp.body.status) { | ||
console.error("[acme-v2] (E_STATE_EMPTY) empty challenge state:"); | ||
errmsg = "[acme-v2] (E_STATE_EMPTY) empty challenge state for '" + identifier.value + "':"; | ||
} | ||
else if ('invalid' === resp.body.status) { | ||
console.error("[acme-v2] (E_STATE_INVALID) challenge state: '" + resp.body.status + "'"); | ||
errmsg = "[acme-v2] (E_STATE_INVALID) challenge state for '" + identifier.value + "': '" + resp.body.status + "'"; | ||
} | ||
else { | ||
console.error("[acme-v2] (E_STATE_UKN) challenge state: '" + resp.body.status + "'"); | ||
errmsg = "[acme-v2] (E_STATE_UKN) challenge state for '" + identifier.value + "': '" + resp.body.status + "'"; | ||
} | ||
return Promise.reject(new Error("[acme-v2] [error] unacceptable challenge state '" + resp.body.status + "'")); | ||
return Promise.reject(new Error(errmsg)); | ||
}); | ||
@@ -518,3 +521,5 @@ } | ||
"Did not finalize order: status 'pending'." | ||
+ " Best guess: You have not accepted at least one challenge for each domain." + "\n\n" | ||
+ " Best guess: You have not accepted at least one challenge for each domain:\n" | ||
+ "Requested: '" + options.domains.join(', ') + "'\n" | ||
+ "Validated: '" + validatedDomains.join(', ') + "'\n" | ||
+ JSON.stringify(resp.body, null, 2) | ||
@@ -528,3 +533,5 @@ )); | ||
+ " Best guess: One or more of the domain challenges could not be verified" | ||
+ " (or the order was canceled)." + "\n\n" | ||
+ " (or the order was canceled).\n" | ||
+ "Requested: '" + options.domains.join(', ') + "'\n" | ||
+ "Validated: '" + validatedDomains.join(', ') + "'\n" | ||
+ JSON.stringify(resp.body, null, 2) | ||
@@ -538,3 +545,5 @@ )); | ||
+ " Hmmm... this state shouldn't be possible here. That was the last state." | ||
+ " This one should at least be 'processing'." + "\n\n" | ||
+ " This one should at least be 'processing'.\n" | ||
+ "Requested: '" + options.domains.join(', ') + "'\n" | ||
+ "Validated: '" + validatedDomains.join(', ') + "'\n" | ||
+ JSON.stringify(resp.body, null, 2) + "\n\n" | ||
@@ -547,3 +556,5 @@ + "Please open an issue at https://git.coolaj86.com/coolaj86/acme-v2.js" | ||
"Didn't finalize order: Unhandled status '" + resp.body.status + "'." | ||
+ " This is not one of the known statuses...\n\n" | ||
+ " This is not one of the known statuses...\n" | ||
+ "Requested: '" + options.domains.join(', ') + "'\n" | ||
+ "Validated: '" + validatedDomains.join(', ') + "'\n" | ||
+ JSON.stringify(resp.body, null, 2) + "\n\n" | ||
@@ -616,5 +627,6 @@ + "Please open an issue at https://git.coolaj86.com/coolaj86/acme-v2.js" | ||
if (!me._authorizations) { | ||
console.error("[acme-v2.js] authorizations were not fetched:"); | ||
console.error(resp.body); | ||
return Promise.reject(new Error("authorizations were not fetched")); | ||
return Promise.reject(new Error( | ||
"[acme-v2.js] authorizations were not fetched for '" + options.domains.join() + "':\n" | ||
+ JSON.stringify(resp.body) | ||
)); | ||
} | ||
@@ -645,3 +657,5 @@ if (me.debug) { console.debug("[acme-v2] POST newOrder has authorizations"); } | ||
if (!challenge) { | ||
return Promise.reject(new Error("Server didn't offer any challenge we can handle.")); | ||
return Promise.reject(new Error( | ||
"Server didn't offer any challenge we can handle for '" + options.domains.join() + "'." | ||
)); | ||
} | ||
@@ -648,0 +662,0 @@ |
{ | ||
"name": "acme-v2", | ||
"version": "1.5.0", | ||
"version": "1.5.1", | ||
"description": "Free SSL. A framework for building Let's Encrypt v2 clients, and other ACME v2 (draft 11) clients. Successor to le-acme-core.js", | ||
@@ -5,0 +5,0 @@ "homepage": "https://git.coolaj86.com/coolaj86/acme-v2.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
70768
1154