-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
109 lines (95 loc) · 3.35 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/usr/bin/env node
const meta = require('./package');
const program = require('commander');
const fs = require('fs');
const path = require('path');
const request = require('request');
class Application
{
constructor()
{
const configFile = path.join(__dirname, 'config.json');
if (!fs.existsSync(configFile))
{
console.error(`config.json is not found in ${__dirname}`);
process.exit(1);
}
else
{
this.config = require('./config');
}
}
run()
{
program
.version(`${meta.version}`, '-v, --version')
.usage('-hostname')
.option('-host, --hostname <hostname>', 'hostname')
.parse(process.argv);
if (!program.hostname)
{
console.log('Missing hostname');
return;
}
const url = 'https://' + this.config.username + ':' + this.config.token + '@api.name.com/v4/domains/' + this.config.domain;
request.get('https://api.ipify.org/', (e, r, b) =>
{
let res = JSON.parse(b);
let ip = res.result;
console.log(`Setting ${program.hostname}.${this.config.domain} to ${ip}...`);
request.get(url + '/records', (error, response, body) =>
{
let doc = JSON.parse(body);
if (!doc.records.some(element => element.host === program.hostname))
{
//create hostname
request.post(url + '/records', {
json: {
host: program.hostname,
type: 'A',
answer: ip,
ttl: 300
}
}, (e, r, b) =>
{
if (b.answer === ip)
{
console.log('Host has been updated');
}
else
{
console.log('Failed to update host');
}
});
}
else
{
//update hostname by id
let id = doc.records.find(element => element.host === program.hostname).id;
request.put(url + '/records/' + id, {
json: {
host: program.hostname,
type: 'A',
answer: ip,
ttl: 300
}
}, (e, r, b) =>
{
if (b.answer === ip)
{
console.log('Host has been updated');
}
else
{
console.log('Failed to update host');
}
});
}
}
);
});
}
}
console.log(`${meta.name}, v.${meta.version} (${meta.description})`);
const app = new Application();
app.run();