add .prettierrc, and make prettier
This commit is contained in:
parent
3cd68f93e8
commit
1afddd9aae
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"bracketSpacing": true,
|
||||
"printWidth": 80,
|
||||
"singleQuote": true,
|
||||
"tabWidth": 2,
|
||||
"trailingComma": "none",
|
||||
"useTabs": true
|
||||
}
|
25
lib/index.js
25
lib/index.js
|
@ -59,18 +59,20 @@ module.exports.create = function(config) {
|
|||
headers: {
|
||||
'API-Key': apiKey
|
||||
}
|
||||
}).then(function(resp) {
|
||||
})
|
||||
.then(function(resp) {
|
||||
if (resp.statusCode == 200) {
|
||||
resp = resp.body;
|
||||
console.log(resp);
|
||||
var entries =
|
||||
resp.filter(function(x) {
|
||||
var entries = resp.filter(function(x) {
|
||||
return x.type === 'TXT';
|
||||
});
|
||||
|
||||
var entry = entries.filter(function(x) {
|
||||
// vultr wraps the TXT record in double quotes
|
||||
return x.data.substring(1, x.data.length - 1) === ch.dnsAuthorization;
|
||||
return (
|
||||
x.data.substring(1, x.data.length - 1) === ch.dnsAuthorization
|
||||
);
|
||||
})[0];
|
||||
|
||||
if (entry) {
|
||||
|
@ -81,9 +83,10 @@ module.exports.create = function(config) {
|
|||
);
|
||||
}
|
||||
} else {
|
||||
throw new Error("record did not set. check subdomain, api key, etc");
|
||||
throw new Error(
|
||||
'record did not set. check subdomain, api key, etc'
|
||||
);
|
||||
}
|
||||
|
||||
})
|
||||
.then(function(recordId) {
|
||||
var domainname = data.challenge.altname;
|
||||
|
@ -98,7 +101,7 @@ module.exports.create = function(config) {
|
|||
},
|
||||
form: {
|
||||
domain: config.domain,
|
||||
'RECORDID': recordId
|
||||
RECORDID: recordId
|
||||
}
|
||||
}).then(function(resp) {
|
||||
if (resp.statusCode == 200) {
|
||||
|
@ -106,7 +109,9 @@ module.exports.create = function(config) {
|
|||
} else {
|
||||
console.log(resp.statusCode);
|
||||
console.log(resp.body);
|
||||
throw new Error("record did not remove. check subdomain, api key, etc");
|
||||
throw new Error(
|
||||
'record did not remove. check subdomain, api key, etc'
|
||||
);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
@ -140,7 +145,9 @@ module.exports.create = function(config) {
|
|||
})[0];
|
||||
|
||||
if (entry) {
|
||||
return { dnsAuthorization: entry.data.substring(1, entry.data.length - 1)};
|
||||
return {
|
||||
dnsAuthorization: entry.data.substring(1, entry.data.length - 1)
|
||||
};
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue