Merge branch 'prod' of coolaj86/acme-dns-01-gandi.js into prettier
This commit is contained in:
commit
00569d63f3
|
@ -1,3 +1,5 @@
|
||||||
|
.env
|
||||||
|
|
||||||
# ---> Node
|
# ---> Node
|
||||||
# Logs
|
# Logs
|
||||||
logs
|
logs
|
||||||
|
|
23
README.md
23
README.md
|
@ -1,8 +1,8 @@
|
||||||
# [acme-dns-01-gandi.js](https://git.rootprojects.org/root/acme-dns-01-gandi.js) | a [Root](https://rootprojects.org/) project
|
# [acme-dns-01-gandi.js](https://git.rootprojects.org/root/acme-dns-01-gandi.js) | a [Root](https://rootprojects.org/) project
|
||||||
|
|
||||||
###### Gandi LiveDNS + Let's Encrypt for Node.js - ACME dns-01 challenges w/ ACME.js and Greenlock.js
|
Gandi LiveDNS + Let's Encrypt for Node.js - ACME dns-01 challenges w/ ACME.js and Greenlock.js
|
||||||
|
|
||||||
###### This handles ACME dns-01 challenges, compatible with ACME.js and Greenlock.js. Passes acme-dns-01-test.
|
This handles ACME dns-01 challenges, compatible with ACME.js and Greenlock.js. Passes acme-dns-01-test.
|
||||||
|
|
||||||
# Features
|
# Features
|
||||||
|
|
||||||
|
@ -17,7 +17,9 @@
|
||||||
|
|
||||||
# Install
|
# Install
|
||||||
|
|
||||||
`npm install --save acme-dns-01-gandi`
|
```js
|
||||||
|
npm install --save acme-dns-01-gandi
|
||||||
|
```
|
||||||
|
|
||||||
Generate Gandi LiveDNS API Token:
|
Generate Gandi LiveDNS API Token:
|
||||||
|
|
||||||
|
@ -28,7 +30,7 @@ Generate Gandi LiveDNS API Token:
|
||||||
|
|
||||||
First you create an instance with your credentials:
|
First you create an instance with your credentials:
|
||||||
|
|
||||||
```
|
```js
|
||||||
var dns01 = require('acme-dns-01-gandi').create({
|
var dns01 = require('acme-dns-01-gandi').create({
|
||||||
baseUrl: 'https://dns.api.gandi.net/api/v5/', // default
|
baseUrl: 'https://dns.api.gandi.net/api/v5/', // default
|
||||||
token: 'xxxx'
|
token: 'xxxx'
|
||||||
|
@ -39,7 +41,7 @@ Then you can use it with any compatible ACME library, such as Greenlock.js or AC
|
||||||
|
|
||||||
## Greenlock.js
|
## Greenlock.js
|
||||||
|
|
||||||
```
|
```js
|
||||||
var Greenlock = require('greenlock-express');
|
var Greenlock = require('greenlock-express');
|
||||||
var greenlock = Greenlock.create({
|
var greenlock = Greenlock.create({
|
||||||
challenges: {
|
challenges: {
|
||||||
|
@ -53,10 +55,8 @@ See [Greenlock Express](https://git.rootprojects.org/root/greenlock-express.js)
|
||||||
|
|
||||||
## ACME.js
|
## ACME.js
|
||||||
|
|
||||||
```
|
```js
|
||||||
|
|
||||||
// TODO
|
// TODO
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
See the [ACME.js](https://git.rootprojects.org/root/acme-v2.js) for more details.
|
See the [ACME.js](https://git.rootprojects.org/root/acme-v2.js) for more details.
|
||||||
|
@ -71,7 +71,7 @@ There are only 5 methods:
|
||||||
- `get(opts)`
|
- `get(opts)`
|
||||||
- `remove(opts)`
|
- `remove(opts)`
|
||||||
|
|
||||||
```
|
```js
|
||||||
dns01
|
dns01
|
||||||
.set({
|
.set({
|
||||||
identifier: { value: 'foo.example.co.uk' },
|
identifier: { value: 'foo.example.co.uk' },
|
||||||
|
@ -92,7 +92,7 @@ See acme-dns-01-test for more implementation details.
|
||||||
|
|
||||||
# Tests
|
# Tests
|
||||||
|
|
||||||
```
|
```bash
|
||||||
# node ./test.js domain-zone api-token
|
# node ./test.js domain-zone api-token
|
||||||
node ./test.js example.com xxxxxx
|
node ./test.js example.com xxxxxx
|
||||||
```
|
```
|
||||||
|
@ -101,10 +101,13 @@ node ./test.js example.com xxxxxx
|
||||||
|
|
||||||
- Jarom Bridges
|
- Jarom Bridges
|
||||||
- AJ ONeal
|
- AJ ONeal
|
||||||
|
|
||||||
See AUTHORS for contact info.
|
See AUTHORS for contact info.
|
||||||
|
|
||||||
# Legal
|
# Legal
|
||||||
|
|
||||||
[acme-dns-01-gandi.js](https://git.coolaj86.com/coolaj86/acme-dns-01-gandi.js) | MPL-2.0 | [Terms of Use](https://therootcompany.com/legal/#terms) | [Privacy Policy](https://therootcompany.com/legal/#privacy)
|
[acme-dns-01-gandi.js](https://git.coolaj86.com/coolaj86/acme-dns-01-gandi.js) | MPL-2.0 | [Terms of Use](https://therootcompany.com/legal/#terms) | [Privacy Policy](https://therootcompany.com/legal/#privacy)
|
||||||
|
|
||||||
|
Copyright 2019 Jarom Bridges
|
||||||
|
Copyright 2019 AJ ONeal
|
||||||
Copyright 2019 The Root Group LLC
|
Copyright 2019 The Root Group LLC
|
||||||
|
|
65
lib/index.js
65
lib/index.js
|
@ -16,8 +16,7 @@ module.exports.create = function(config) {
|
||||||
},
|
},
|
||||||
|
|
||||||
zones: function(opts) {
|
zones: function(opts) {
|
||||||
console.log(opts);
|
//console.log(opts);
|
||||||
|
|
||||||
return request({
|
return request({
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
url: baseUrl + '/zones',
|
url: baseUrl + '/zones',
|
||||||
|
@ -33,8 +32,7 @@ module.exports.create = function(config) {
|
||||||
},
|
},
|
||||||
|
|
||||||
set: function(opts) {
|
set: function(opts) {
|
||||||
console.log(opts);
|
//console.log(opts);
|
||||||
|
|
||||||
return request({
|
return request({
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
url:
|
url:
|
||||||
|
@ -49,7 +47,7 @@ module.exports.create = function(config) {
|
||||||
},
|
},
|
||||||
json: true
|
json: true
|
||||||
}).then(function(resp) {
|
}).then(function(resp) {
|
||||||
if (resp.body.cause === 'Not Found') {
|
function create() {
|
||||||
return request({
|
return request({
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
url:
|
url:
|
||||||
|
@ -67,11 +65,18 @@ module.exports.create = function(config) {
|
||||||
rrset_values: [opts.challenge.dnsAuthorization]
|
rrset_values: [opts.challenge.dnsAuthorization]
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
}
|
||||||
const body = resp.body;
|
|
||||||
let value = body.rrset_values.map(x => JSON.parse(x));
|
function replace() {
|
||||||
|
var body = resp.body;
|
||||||
|
var value = body.rrset_values.map(function(x) {
|
||||||
|
return JSON.parse(x);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!body.rrset_values) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
if (body.rrset_values) {
|
|
||||||
return request({
|
return request({
|
||||||
method: 'PUT',
|
method: 'PUT',
|
||||||
url:
|
url:
|
||||||
|
@ -92,13 +97,17 @@ module.exports.create = function(config) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (resp.body.cause === 'Not Found') {
|
||||||
|
return create();
|
||||||
|
} else {
|
||||||
|
return replace();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
remove: function(opts) {
|
remove: function(opts) {
|
||||||
console.log(opts);
|
//console.log(opts);
|
||||||
|
|
||||||
return request({
|
return request({
|
||||||
method: 'DELETE',
|
method: 'DELETE',
|
||||||
url:
|
url:
|
||||||
|
@ -116,8 +125,7 @@ module.exports.create = function(config) {
|
||||||
},
|
},
|
||||||
|
|
||||||
get: function(opts) {
|
get: function(opts) {
|
||||||
console.log(opts);
|
//console.log(opts);
|
||||||
|
|
||||||
return request({
|
return request({
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
url:
|
url:
|
||||||
|
@ -131,23 +139,24 @@ module.exports.create = function(config) {
|
||||||
},
|
},
|
||||||
json: true
|
json: true
|
||||||
}).then(function(resp) {
|
}).then(function(resp) {
|
||||||
const body = resp.body;
|
var body = resp.body;
|
||||||
if (body.length > 0) {
|
if (!(body.length > 0)) {
|
||||||
let value = body[0].rrset_values
|
return null;
|
||||||
.map(x => JSON.parse(x))
|
}
|
||||||
.filter(
|
|
||||||
field => field === opts.challenge.dnsAuthorization
|
var value = body[0].rrset_values
|
||||||
);
|
.map(function(x) {
|
||||||
if (value !== []) {
|
return JSON.parse(x);
|
||||||
|
})
|
||||||
|
.filter(function(field) {
|
||||||
|
return field === opts.challenge.dnsAuthorization;
|
||||||
|
})[0];
|
||||||
|
if (!value) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
return {
|
return {
|
||||||
dnsAuthorization: value[0]
|
dnsAuthorization: value
|
||||||
};
|
};
|
||||||
} else {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"name": "acme-dns-01-gandi",
|
||||||
|
"version": "3.0.0",
|
||||||
|
"lockfileVersion": 1,
|
||||||
|
"requires": true,
|
||||||
|
"dependencies": {
|
||||||
|
"@root/request": {
|
||||||
|
"version": "1.3.11",
|
||||||
|
"resolved": "https://registry.npmjs.org/@root/request/-/request-1.3.11.tgz",
|
||||||
|
"integrity": "sha512-3a4Eeghcjsfe6zh7EJ+ni1l8OK9Fz2wL1OjP4UCa0YdvtH39kdXB9RGWuzyNv7dZi0+Ffkc83KfH0WbPMiuJFw==",
|
||||||
|
"dev": true
|
||||||
|
},
|
||||||
|
"acme-challenge-test": {
|
||||||
|
"version": "3.3.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/acme-challenge-test/-/acme-challenge-test-3.3.2.tgz",
|
||||||
|
"integrity": "sha512-0AbMcaON20wpI5vzFDAqwcv2VerY4xIlNCqX0w1xEJUIu/EQtQNmkje+rKNuy2TUl2KBMdIaR6YBbJUdaEiC4w==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"@root/request": "^1.3.11"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"dotenv": {
|
||||||
|
"version": "8.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.0.0.tgz",
|
||||||
|
"integrity": "sha512-30xVGqjLjiUOArT4+M5q9sYdvuR4riM6yK9wMcas9Vbp6zZa+ocC9dp6QoftuhTPhFAiLK/0C5Ni2nou/Bk8lg==",
|
||||||
|
"dev": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "acme-dns-01-gandi",
|
"name": "acme-dns-01-gandi",
|
||||||
"version": "0.0.1",
|
"version": "3.0.0",
|
||||||
"description": "Gandi + Let's Encrypt for Node.js - ACME dns-01 challenges w/ ACME.js and Greenlock.js",
|
"description": "Gandi + Let's Encrypt for Node.js - ACME dns-01 challenges w/ ACME.js and Greenlock.js",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -22,6 +22,7 @@
|
||||||
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
|
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
|
||||||
"license": "MPL-2.0",
|
"license": "MPL-2.0",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"acme-challenge-test": "^3.3.2",
|
||||||
"dotenv": "^8.0.0"
|
"dotenv": "^8.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
1
test.js
1
test.js
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
// See https://git.coolaj86.com/coolaj86/acme-challenge-test.js
|
// See https://git.coolaj86.com/coolaj86/acme-challenge-test.js
|
||||||
var tester = require('acme-challenge-test');
|
var tester = require('acme-challenge-test');
|
||||||
|
require('dotenv').config();
|
||||||
|
|
||||||
// Usage: node ./test.js example.com xxxxxxxxx
|
// Usage: node ./test.js example.com xxxxxxxxx
|
||||||
var zone = process.argv[2] || process.env.ZONE;
|
var zone = process.argv[2] || process.env.ZONE;
|
||||||
|
|
Loading…
Reference in New Issue