make prettier
This commit is contained in:
		
							parent
							
								
									a6a7f6b95e
								
							
						
					
					
						commit
						ff8c41b994
					
				
							
								
								
									
										113
									
								
								lib/index.js
									
									
									
									
									
								
							
							
						
						
									
										113
									
								
								lib/index.js
									
									
									
									
									
								
							@ -5,11 +5,9 @@ var request; // = require('@root/request');
 | 
			
		||||
var parseString = require('xml2js').parseString;
 | 
			
		||||
parseString = util.promisify(parseString);
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
const SANDBOX_URL = 'https://api.sandbox.namecheap.com/xml.response';
 | 
			
		||||
const PRODUCTION_URL = 'https://api.namecheap.com/xml.response';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
var defaults = {
 | 
			
		||||
	baseUrl: PRODUCTION_URL
 | 
			
		||||
};
 | 
			
		||||
@ -25,13 +23,19 @@ function extend(obj) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function assign(obj1, obj2) {
 | 
			
		||||
    for (var attrname in obj2) { obj1[attrname] = obj2[attrname]; }
 | 
			
		||||
	for (var attrname in obj2) {
 | 
			
		||||
		obj1[attrname] = obj2[attrname];
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function requestUrl(baseUrl, params) {
 | 
			
		||||
    var queryString = Object.keys(params).map(function (key) {
 | 
			
		||||
        return encodeURIComponent(key) + '=' + encodeURIComponent(params[key]);
 | 
			
		||||
    }).join('&');
 | 
			
		||||
	var queryString = Object.keys(params)
 | 
			
		||||
		.map(function(key) {
 | 
			
		||||
			return (
 | 
			
		||||
				encodeURIComponent(key) + '=' + encodeURIComponent(params[key])
 | 
			
		||||
			);
 | 
			
		||||
		})
 | 
			
		||||
		.join('&');
 | 
			
		||||
	// console.debug(queryString);
 | 
			
		||||
	return baseUrl + '?' + queryString;
 | 
			
		||||
}
 | 
			
		||||
@ -56,19 +60,24 @@ module.exports.create = function (config) {
 | 
			
		||||
		// console.log(url);
 | 
			
		||||
		return request({
 | 
			
		||||
			method: 'POST',
 | 
			
		||||
            url: url,
 | 
			
		||||
			url: url
 | 
			
		||||
		}).then(function(response) {
 | 
			
		||||
			var responseBody = response.body;
 | 
			
		||||
			// console.log(responseBody);
 | 
			
		||||
			return parseString(responseBody).then(function(result) {
 | 
			
		||||
				// check response status
 | 
			
		||||
				if (result['ApiResponse']['$']['Status'] === 'ERROR') {
 | 
			
		||||
                    for (let i = 0; i < result['ApiResponse']['Errors'].length; i++) {
 | 
			
		||||
                        console.log(result['ApiResponse']['Errors'][i])
 | 
			
		||||
					for (
 | 
			
		||||
						let i = 0;
 | 
			
		||||
						i < result['ApiResponse']['Errors'].length;
 | 
			
		||||
						i++
 | 
			
		||||
					) {
 | 
			
		||||
						console.log(result['ApiResponse']['Errors'][i]);
 | 
			
		||||
					}
 | 
			
		||||
					throw new Error('API Error');
 | 
			
		||||
                } else { // Status="OK"
 | 
			
		||||
                    return result['ApiResponse']['CommandResponse'][0]
 | 
			
		||||
				} else {
 | 
			
		||||
					// Status="OK"
 | 
			
		||||
					return result['ApiResponse']['CommandResponse'][0];
 | 
			
		||||
				}
 | 
			
		||||
			});
 | 
			
		||||
		});
 | 
			
		||||
@ -81,13 +90,14 @@ module.exports.create = function (config) {
 | 
			
		||||
		},
 | 
			
		||||
 | 
			
		||||
		zones: function(data) {
 | 
			
		||||
            return api('namecheap.domains.getList',{}).then(function (zonesResponse) {
 | 
			
		||||
			return api('namecheap.domains.getList', {}).then(function(
 | 
			
		||||
				zonesResponse
 | 
			
		||||
			) {
 | 
			
		||||
				// console.log('zones');
 | 
			
		||||
				// console.log(zonesResponse);
 | 
			
		||||
				return zonesResponse['DomainGetListResult'].map(function(x) {
 | 
			
		||||
					return x['Domain'][0]['$']['Name'];
 | 
			
		||||
				});
 | 
			
		||||
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
 | 
			
		||||
@ -100,17 +110,26 @@ module.exports.create = function (config) {
 | 
			
		||||
			// the domain is the first part
 | 
			
		||||
			params['SLD'] = zone.split('.')[0];
 | 
			
		||||
			// the rest of the components are the TLD
 | 
			
		||||
            params['TLD'] = zone.split('.').splice(1).join('.');
 | 
			
		||||
			params['TLD'] = zone
 | 
			
		||||
				.split('.')
 | 
			
		||||
				.splice(1)
 | 
			
		||||
				.join('.');
 | 
			
		||||
 | 
			
		||||
			// setting a host record overwrites all existing,
 | 
			
		||||
			// adding a new records means you've have to send back all previous records too
 | 
			
		||||
 | 
			
		||||
            return api('namecheap.domains.dns.getHosts',params).then(function (hostsResponse) {
 | 
			
		||||
                var currentHostRecordsCount = hostsResponse['DomainDNSGetHostsResult'][0]['host'].length;
 | 
			
		||||
			return api('namecheap.domains.dns.getHosts', params).then(function(
 | 
			
		||||
				hostsResponse
 | 
			
		||||
			) {
 | 
			
		||||
				var currentHostRecordsCount =
 | 
			
		||||
					hostsResponse['DomainDNSGetHostsResult'][0]['host'].length;
 | 
			
		||||
 | 
			
		||||
				for (var i = 0; i < currentHostRecordsCount; i++) {
 | 
			
		||||
					// console.log(hostsResponse['DomainDNSGetHostsResult'][i]['host'][0]);
 | 
			
		||||
                    var currentEntry =  hostsResponse['DomainDNSGetHostsResult'][0]['host'][i]['$'];
 | 
			
		||||
					var currentEntry =
 | 
			
		||||
						hostsResponse['DomainDNSGetHostsResult'][0]['host'][i][
 | 
			
		||||
							'$'
 | 
			
		||||
						];
 | 
			
		||||
 | 
			
		||||
					params['HostName' + (i + 1)] = currentEntry['Name'];
 | 
			
		||||
					params['RecordType' + (i + 1)] = currentEntry['Type'];
 | 
			
		||||
@ -118,22 +137,26 @@ module.exports.create = function (config) {
 | 
			
		||||
					params['TTL' + (i + 1)] = currentEntry['TTL'];
 | 
			
		||||
				}
 | 
			
		||||
 | 
			
		||||
                params['HostName'+(currentHostRecordsCount+1)] = ch.dnsPrefix;
 | 
			
		||||
				params['HostName' + (currentHostRecordsCount + 1)] =
 | 
			
		||||
					ch.dnsPrefix;
 | 
			
		||||
				params['RecordType' + (currentHostRecordsCount + 1)] = 'TXT';
 | 
			
		||||
				params['Address' + (currentHostRecordsCount + 1)] = txt;
 | 
			
		||||
				params['TTL' + (currentHostRecordsCount + 1)] = 100; // in minutes
 | 
			
		||||
 | 
			
		||||
				// console.log(params);
 | 
			
		||||
 | 
			
		||||
                return api('namecheap.domains.dns.setHosts',params).then(function (setHostResponse) {
 | 
			
		||||
				return api('namecheap.domains.dns.setHosts', params)
 | 
			
		||||
					.then(function(setHostResponse) {
 | 
			
		||||
						// console.log('setHost');
 | 
			
		||||
						// console.log(setHostResponse);
 | 
			
		||||
                    return true
 | 
			
		||||
                }).catch(function (err) {
 | 
			
		||||
                    throw new Error('record did not set. check subdomain, api key, etc');
 | 
			
		||||
						return true;
 | 
			
		||||
					})
 | 
			
		||||
					.catch(function(err) {
 | 
			
		||||
						throw new Error(
 | 
			
		||||
							'record did not set. check subdomain, api key, etc'
 | 
			
		||||
						);
 | 
			
		||||
					});
 | 
			
		||||
			});
 | 
			
		||||
 | 
			
		||||
		},
 | 
			
		||||
		remove: function(data) {
 | 
			
		||||
			var ch = data.challenge;
 | 
			
		||||
@ -143,17 +166,26 @@ module.exports.create = function (config) {
 | 
			
		||||
			// the domain is the first part
 | 
			
		||||
			params['SLD'] = zone.split('.')[0];
 | 
			
		||||
			// the rest of the components are the TLD
 | 
			
		||||
            params['TLD'] = zone.split('.').splice(1).join('.');
 | 
			
		||||
			params['TLD'] = zone
 | 
			
		||||
				.split('.')
 | 
			
		||||
				.splice(1)
 | 
			
		||||
				.join('.');
 | 
			
		||||
 | 
			
		||||
			// setting a host record overwrites all existing,
 | 
			
		||||
			// removing a new records means you've have to send back all previous records without removed
 | 
			
		||||
 | 
			
		||||
            return api('namecheap.domains.dns.getHosts',params).then(function (hostsResponse) {
 | 
			
		||||
                var currentHostRecordsCount = hostsResponse['DomainDNSGetHostsResult'][0]['host'].length;
 | 
			
		||||
			return api('namecheap.domains.dns.getHosts', params).then(function(
 | 
			
		||||
				hostsResponse
 | 
			
		||||
			) {
 | 
			
		||||
				var currentHostRecordsCount =
 | 
			
		||||
					hostsResponse['DomainDNSGetHostsResult'][0]['host'].length;
 | 
			
		||||
 | 
			
		||||
				for (var i = 0; i < currentHostRecordsCount; i++) {
 | 
			
		||||
					// console.log(hostsResponse['DomainDNSGetHostsResult'][i]['host'][0]);
 | 
			
		||||
                    var currentEntry =  hostsResponse['DomainDNSGetHostsResult'][0]['host'][i]['$'];
 | 
			
		||||
					var currentEntry =
 | 
			
		||||
						hostsResponse['DomainDNSGetHostsResult'][0]['host'][i][
 | 
			
		||||
							'$'
 | 
			
		||||
						];
 | 
			
		||||
					if (currentEntry['Address'] != ch.dnsAuthorization) {
 | 
			
		||||
						params['HostName' + (i + 1)] = currentEntry['Name'];
 | 
			
		||||
						params['RecordType' + (i + 1)] = currentEntry['Type'];
 | 
			
		||||
@ -162,15 +194,18 @@ module.exports.create = function (config) {
 | 
			
		||||
					}
 | 
			
		||||
				}
 | 
			
		||||
 | 
			
		||||
                return api('namecheap.domains.dns.setHosts',params).then(function (setHostResponse) {
 | 
			
		||||
				return api('namecheap.domains.dns.setHosts', params)
 | 
			
		||||
					.then(function(setHostResponse) {
 | 
			
		||||
						// console.log('setHost');
 | 
			
		||||
						// console.log(setHostResponse);
 | 
			
		||||
                    return true
 | 
			
		||||
                }).catch(function (err) {
 | 
			
		||||
                    throw new Error('record did not remove. check subdomain, api key, etc');
 | 
			
		||||
						return true;
 | 
			
		||||
					})
 | 
			
		||||
					.catch(function(err) {
 | 
			
		||||
						throw new Error(
 | 
			
		||||
							'record did not remove. check subdomain, api key, etc'
 | 
			
		||||
						);
 | 
			
		||||
					});
 | 
			
		||||
			});
 | 
			
		||||
 | 
			
		||||
		},
 | 
			
		||||
		get: function(data) {
 | 
			
		||||
			var ch = data.challenge;
 | 
			
		||||
@ -181,12 +216,18 @@ module.exports.create = function (config) {
 | 
			
		||||
			// the domain is the first part
 | 
			
		||||
			params['SLD'] = zone.split('.')[0];
 | 
			
		||||
			// the rest of the components are the TLD
 | 
			
		||||
            params['TLD'] = zone.split('.').splice(1).join('.');
 | 
			
		||||
			params['TLD'] = zone
 | 
			
		||||
				.split('.')
 | 
			
		||||
				.splice(1)
 | 
			
		||||
				.join('.');
 | 
			
		||||
 | 
			
		||||
            return api('namecheap.domains.dns.getHosts',params).then(function (hostsResponse) {
 | 
			
		||||
			return api('namecheap.domains.dns.getHosts', params).then(function(
 | 
			
		||||
				hostsResponse
 | 
			
		||||
			) {
 | 
			
		||||
				// console.log('hosts');
 | 
			
		||||
				// console.log(hostsResponse);
 | 
			
		||||
                var currentHostRecords = hostsResponse['DomainDNSGetHostsResult'][0]['host'];
 | 
			
		||||
				var currentHostRecords =
 | 
			
		||||
					hostsResponse['DomainDNSGetHostsResult'][0]['host'];
 | 
			
		||||
 | 
			
		||||
				var entries = currentHostRecords.filter(function(x) {
 | 
			
		||||
					return x['$']['Type'] === 'TXT';
 | 
			
		||||
@ -203,9 +244,7 @@ module.exports.create = function (config) {
 | 
			
		||||
				} else {
 | 
			
		||||
					return null;
 | 
			
		||||
				}
 | 
			
		||||
 | 
			
		||||
			});
 | 
			
		||||
 | 
			
		||||
		}
 | 
			
		||||
	};
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user