Update 'lib/index.js'

'Prettified' code
This commit is contained in:
jarombridges 2019-07-12 01:32:43 +00:00
parent 7223ce6667
commit 8e309ba5d3
1 changed files with 77 additions and 65 deletions

View File

@ -1,6 +1,5 @@
'use strict'; 'use strict';
var request;
var defaults = { var defaults = {
baseUrl: 'https://dns.api.gandi.net/api/v5/' baseUrl: 'https://dns.api.gandi.net/api/v5/'
}; };
@ -22,10 +21,14 @@ module.exports.create = function(config) {
return request({ return request({
method: 'GET', method: 'GET',
url: baseUrl + '/zones', url: baseUrl + '/zones',
headers: { 'X-Api-Key': authtoken }, headers: {
'X-Api-Key': authtoken
},
json: true json: true
}).then(function (resp) { }).then(function (resp) {
return resp.body.map(function (zone) { return zone.name; });; return resp.body.map(function (zone) {
return zone.name;
});;
});; });;
}, },
@ -35,21 +38,26 @@ module.exports.create = function(config) {
return request({ return request({
method: 'GET', method: 'GET',
url: baseUrl + '/domains/' + opts.challenge.dnsZone + '/records/' + opts.challenge.dnsPrefix + '/TXT', url: baseUrl + '/domains/' + opts.challenge.dnsZone + '/records/' + opts.challenge.dnsPrefix + '/TXT',
headers: { 'X-Api-Key': authtoken}, headers: {
'X-Api-Key': authtoken
},
json: true json: true
}).then(function (resp) { }).then(function (resp) {
if (resp.body.cause === 'Not Found') { if (resp.body.cause === 'Not Found') {
return request({ return request({
method: 'POST', method: 'POST',
url: baseUrl + '/domains/' + opts.challenge.dnsZone + '/records', url: baseUrl + '/domains/' + opts.challenge.dnsZone + '/records',
headers: { 'X-Api-Key': authtoken }, headers: {
json: {'rrset_name': opts.challenge.dnsPrefix, 'X-Api-Key': authtoken
},
json: {
'rrset_name': opts.challenge.dnsPrefix,
'rrset_type': 'TXT', 'rrset_type': 'TXT',
'rrset_ttl': 300, 'rrset_ttl': 300,
'rrset_values': [opts.challenge.dnsAuthorization] } 'rrset_values': [opts.challenge.dnsAuthorization]
})
} }
else { })
} else {
const body = resp.body const body = resp.body
let value = body.rrset_values.map(x => JSON.parse(x)) let value = body.rrset_values.map(x => JSON.parse(x))
@ -57,15 +65,17 @@ module.exports.create = function(config) {
return request({ return request({
method: 'PUT', method: 'PUT',
url: baseUrl + '/domains/' + opts.challenge.dnsZone + '/records/' + opts.challenge.dnsPrefix + '/TXT', url: baseUrl + '/domains/' + opts.challenge.dnsZone + '/records/' + opts.challenge.dnsPrefix + '/TXT',
headers: { 'X-Api-Key': authtoken}, headers: {
json: {'rrset_ttl': 300, 'X-Api-Key': authtoken
},
json: {
'rrset_ttl': 300,
'rrset_values': value.concat([opts.challenge.dnsAuthorization]) 'rrset_values': value.concat([opts.challenge.dnsAuthorization])
} }
}) })
} }
} }
}) });;
;;
}, },
remove: function (opts) { remove: function (opts) {
@ -74,11 +84,12 @@ module.exports.create = function(config) {
return request({ return request({
method: 'DELETE', method: 'DELETE',
url: baseUrl + '/domains/' + opts.challenge.dnsZone + '/records/' + opts.challenge.dnsPrefix + '/TXT', url: baseUrl + '/domains/' + opts.challenge.dnsZone + '/records/' + opts.challenge.dnsPrefix + '/TXT',
headers: { 'X-Api-Key': authtoken }, headers: {
'X-Api-Key': authtoken
},
json: true json: true
}) })
} },
,
get: function (opts) { get: function (opts) {
console.log(opts); console.log(opts);
@ -86,24 +97,25 @@ module.exports.create = function(config) {
return request({ return request({
method: 'GET', method: 'GET',
url: baseUrl + '/domains/' + opts.challenge.dnsZone + '/records/' + opts.challenge.dnsPrefix, url: baseUrl + '/domains/' + opts.challenge.dnsZone + '/records/' + opts.challenge.dnsPrefix,
headers: { 'X-Api-Key': authtoken}, headers: {
'X-Api-Key': authtoken
},
json: true json: true
}).then(function (resp) { }).then(function (resp) {
const body = resp.body const body = resp.body
if (body.length > 0) { if (body.length > 0) {
let value = body[0].rrset_values.map(x => JSON.parse(x)).filter(field => field === opts.challenge.dnsAuthorization) let value = body[0].rrset_values.map(x => JSON.parse(x)).filter(field => field === opts.challenge.dnsAuthorization)
if (value !== []) { if (value !== []) {
return { dnsAuthorization: value[0]} return {
dnsAuthorization: value[0]
} }
else { } else {
return null return null
} }
} } else {
else {
return null return null
} }
}) })
} }
} }
}; };