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