-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
489 lines (423 loc) · 11.6 KB
/
index.ts
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
require('dotenv').config();
import express from 'express';
import cors from 'cors';
import path from 'path';
import sequelize from './database/db';
import Domains from './database/models/Domains';
import axios from 'axios';
import IpMonitor from 'ip-monitor';
import DDNSs from './database/models/DDNSs';
import { DDNS, DDNSSchedule, DDNSTrigger } from './web-app/src/types';
import Settings from './database/models/Settings';
import cron from 'node-cron';
const app = express();
const port = process.env.PORT || 8080;
let settings: Settings;
let ddnsCron: cron.ScheduledTask;
app.use(
cors({
origin: '*',
optionsSuccessStatus: 200, // some legacy browsers (IE11, various SmartTVs) choke on 204
})
);
app.use(express.json({ limit: '50mb' }));
app.use(express.static(path.join(__dirname, '/dist')));
let publicIpPollRate: number = 90 * 1000;
try {
var pollRate = parseInt(process.env.PUBLIC_IP_POLL_RATE_SEC) * 1000;
if (pollRate) publicIpPollRate = pollRate;
} catch (err) {}
const ipMonitor = new IpMonitor({ pollingInterval: publicIpPollRate }); // poll public IP every 90 sec
var publicIP;
ipMonitor.on('change', async (prevIp, newIp) => {
publicIP = newIp;
if (settings.ddnsTrigger === DDNSTrigger.PublicIP) {
console.log(`IP changed from ${prevIp} to ${newIp}`);
updateAllDDNS(newIp);
}
});
ipMonitor.on('error', (error) => {
console.error(error);
});
//Setting up server and SQL Connection
(async function () {
await sequelize
.sync({ alter: true })
.then(() => {
console.log('Database schema verified.');
})
.catch(async (err) => {
console.log('Unabled to verify database:', err);
// reset DB if failure syncing
await sequelize.sync({ force: true }).then(() => {
console.log('Database schema verified.');
});
});
settings = (await Settings.findOrCreate({ where: { id: 1 }, defaults: { id: 1, ddnsTrigger: DDNSTrigger.PublicIP, ddnsSchedule: DDNSSchedule.HOURLY } }))[0];
startDDNS();
ipMonitor.start();
app.listen(port, async () => {
return console.log(`Server is listening on port ${port}`);
});
})();
const startDDNS = () => {
ddnsCron?.stop();
if (settings.ddnsTrigger === DDNSTrigger.Schedule) {
ddnsCron = cron.schedule(settings.ddnsSchedule, () => {
updateAllDDNS(publicIP);
});
}
};
const updateAllDDNS = async (newIP: string) => {
console.log('Running DDNS:', newIP);
const ddnss = await DDNSs.findAll();
for (const ddns of ddnss) {
updateDDNS(ddns, newIP);
}
};
const updateDDNS = async (ddns: DDNS, newIP: string) => {
const domain = await Domains.findOne({
where: {
zoneID: ddns.zoneID,
},
});
if (!domain) {
console.log('DDNS Domain not found!');
return;
}
try {
const recordRes = await axios.get(`https://api.cloudflare.com/client/v4/zones/${ddns.zoneID}/dns_records/${ddns.recordID}`, {
headers: {
Authorization: `Bearer ${domain.apiToken}`,
},
});
if (recordRes.data.result.content !== newIP) {
await axios.put(
`https://api.cloudflare.com/client/v4/zones/${domain.zoneID}/dns_records/${ddns.recordID}`,
{
type: recordRes.data.result.type,
name: recordRes.data.result.name,
content: newIP,
},
{
headers: {
Authorization: `Bearer ${domain.apiToken}`,
},
}
);
console.log('Updated DDNS for:', recordRes.data.result.name);
}
} catch (error) {
console.log('Unable to update DDNS A record:', error?.response?.data ?? error);
}
};
// get settings
app.get('/api/settings', async (req, res) => {
try {
const data = await Settings.findOrCreate({ where: { id: 1 }, defaults: { id: 1, ddnsTrigger: 'PIP' } });
res.send(data[0]);
} catch (error) {
console.log(error);
res.status(500);
res.send(String(error));
}
});
// update settings
app.post('/api/settings', async (req, res) => {
try {
const settingsData = (await Settings.upsert({ id: 1, ...req.body }))[0];
settings = settingsData;
startDDNS();
res.send(settings);
} catch (error) {
console.log(error);
res.status(500);
res.send(String(error));
}
});
// get domains
app.get('/api/zones', async (req, res) => {
try {
const data = await Domains.findAll();
res.send(data);
} catch (error) {
console.log(error);
res.status(500);
res.send(String(error));
}
});
// upsert domain
app.post('/api/zones', async (req, res) => {
try {
const recordRes = await axios.get(`https://api.cloudflare.com/client/v4/zones/${req.body.zoneID}`, {
headers: {
Authorization: `Bearer ${req.body.apiToken}`,
},
});
const data = await Domains.upsert({ ...req.body, name: recordRes.data.result.name });
res.send(data[0]);
} catch (error) {
console.log(error?.response?.data ?? error);
res.status(error.response.status);
res.send(error?.response?.data ?? error);
}
});
// import domains
app.post('/api/zones/import', async (req, res) => {
try {
const recordRes = await axios.get(`https://api.cloudflare.com/client/v4/zones`, {
headers: {
Authorization: `Bearer ${req.body.apiToken}`,
},
});
var domains = [];
for (const key in recordRes.data.result) {
if (Object.prototype.hasOwnProperty.call(recordRes.data.result, key)) {
const zone = recordRes.data.result[key];
const data = await Domains.upsert({
zoneID: zone.id,
name: zone.name,
apiToken: req.body.apiToken,
});
domains.push(data[0]);
}
}
res.send(domains);
} catch (error) {
console.log(error?.response?.data ?? error);
res.status(error.response.status);
res.send(error?.response?.data ?? error);
}
});
// delete domain
app.delete('/api/zones/:zoneID', async (req, res) => {
try {
const domain = await Domains.findOne({ where: { zoneID: req.params.zoneID } });
if (!domain) {
res.status(404);
res.send('Domain not found.');
return;
}
await DDNSs.destroy({
where: {
zoneID: req.params.zoneID,
},
});
await Domains.destroy({
where: {
zoneID: req.params.zoneID,
},
})
.then(() => {
res.send('ok');
})
.catch((error) => {
res.status(500);
res.send(String(error));
});
} catch (error) {
console.log(error);
res.status(500);
res.send(String(error));
}
});
// get records
app.get('/api/zones/:zoneID/dns_records', async (req, res) => {
try {
const domain = await Domains.findOne({ where: { zoneID: req.params.zoneID } });
if (!domain) {
res.status(404);
res.send('Domain not found.');
return;
}
const recordRes = await axios.get(`https://api.cloudflare.com/client/v4/zones/${domain.zoneID}/dns_records`, {
headers: {
Authorization: `Bearer ${domain.apiToken}`,
},
});
res.send(recordRes.data.result);
} catch (error) {
console.log(error?.response?.data ?? error);
res.status(error.response.status);
res.send(error?.response?.data ?? error);
}
});
// create record
app.post('/api/zones/:zoneID/dns_records', async (req, res) => {
try {
const domain = await Domains.findOne({ where: { zoneID: req.params.zoneID } });
if (!domain) {
res.status(404);
res.send('Domain not found.');
return;
}
const recordRes = await axios.post(`https://api.cloudflare.com/client/v4/zones/${domain.zoneID}/dns_records`, req.body, {
headers: {
Authorization: `Bearer ${domain.apiToken}`,
},
});
res.send(recordRes.data.result);
} catch (error) {
console.log(error?.response?.data ?? error);
res.status(error.response.status);
res.send(error?.response?.data ?? error);
}
});
// update record
app.put('/api/zones/:zoneID/dns_records/:recordID', async (req, res) => {
try {
const domain = await Domains.findOne({ where: { zoneID: req.params.zoneID } });
if (!domain) {
res.status(404);
res.send('Domain not found.');
return;
}
const recordRes = await axios.put(`https://api.cloudflare.com/client/v4/zones/${domain.zoneID}/dns_records/${req.params.recordID}`, req.body, {
headers: {
Authorization: `Bearer ${domain.apiToken}`,
},
});
res.send(recordRes.data.result);
} catch (error) {
console.log(error?.response?.data ?? error);
res.status(error.response.status);
res.send(error?.response?.data ?? error);
}
});
// delete record
app.delete('/api/zones/:zoneID/dns_records/:recordID', async (req, res) => {
try {
const domain = await Domains.findOne({ where: { zoneID: req.params.zoneID } });
if (!domain) {
res.status(404);
res.send('Domain not found.');
return;
}
await DDNSs.destroy({
where: {
zoneID: domain.zoneID,
recordID: req.params.recordID,
},
});
const recordRes = await axios.delete(`https://api.cloudflare.com/client/v4/zones/${domain.zoneID}/dns_records/${req.params.recordID}`, {
headers: {
Authorization: `Bearer ${domain.apiToken}`,
},
});
res.send(recordRes.data.result);
} catch (error) {
console.log(error?.response?.data ?? error);
res.status(error.response.status);
res.send(error?.response?.data ?? error);
}
});
app.get('/api/ddns', async (req, res) => {
try {
const ddnss = await DDNSs.findAll();
let error = false;
const records = await Promise.all(
ddnss.map(async (ddns) => {
const domain = await Domains.findOne({ where: { zoneID: ddns.zoneID } });
if (!domain) {
error = true;
res.status(404);
res.send('Domain not found.');
return;
}
const recordRes = await axios.get(`https://api.cloudflare.com/client/v4/zones/${ddns.zoneID}/dns_records/${ddns.recordID}`, {
headers: {
Authorization: `Bearer ${domain.apiToken}`,
},
});
const dnsResult = recordRes.data.result;
return {
id: ddns.id,
domain: domain,
recordID: dnsResult.id,
name: dnsResult.name,
content: dnsResult.content,
modified_on: dnsResult.modified_on,
};
})
);
if (!error) res.send(records);
} catch (error) {
console.log(error?.response?.data ?? error);
res.status(error.response.status);
res.send(error?.response?.data ?? error);
}
});
// upsert ddns
app.post('/api/ddns', async (req, res) => {
try {
const domain = await Domains.findOne({ where: { zoneID: req.body.domain.zoneID } });
if (!domain) {
res.status(404);
res.send('Domain not found.');
return;
}
const recordRes = await axios.get(`https://api.cloudflare.com/client/v4/zones/${domain.zoneID}/dns_records/${req.body.recordID}`, {
headers: {
Authorization: `Bearer ${domain.apiToken}`,
},
});
const ddnsRes = await axios.put(
`https://api.cloudflare.com/client/v4/zones/${domain.zoneID}/dns_records/${req.body.recordID}`,
{
type: recordRes.data.result.type,
name: recordRes.data.result.name,
content: publicIP,
},
{
headers: {
Authorization: `Bearer ${domain.apiToken}`,
},
}
);
const dnsResult = ddnsRes.data.result;
console.log('Updated DDNS for:', dnsResult.name);
const data = await DDNSs.upsert({ zoneID: domain.zoneID, recordID: req.body.recordID });
res.send({
id: data[0].id,
domain: domain,
recordID: dnsResult.id,
name: dnsResult.name,
content: dnsResult.content,
modified_on: dnsResult.modified_on,
});
} catch (error) {
console.log(error?.response?.data ?? error);
res.status(error.response.status);
res.send(error?.response?.data ?? error);
}
});
// delete ddns
app.delete('/api/ddns/:id', async (req, res) => {
try {
const domain = await DDNSs.findOne({ where: { id: req.params.id } });
if (!domain) {
res.status(404);
res.send('Domain not found.');
return;
}
await DDNSs.destroy({
where: {
id: req.params.id,
},
})
.then(() => {
res.send('ok');
})
.catch((error) => {
res.status(500);
res.send(String(error));
});
} catch (error) {
console.log(error);
res.status(500);
res.send(String(error));
}
});
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname + '/dist/index.html'));
});