-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
33 lines (28 loc) · 830 Bytes
/
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
require('dotenv').config()
let currentIP = null
if (!process.env.DDNS_URL) throw 'Error: No DDNS_URL was defined.'
const checkIP = async () => {
// console.log('Checking IP...')
try {
const ipRes = await (
await fetch('https://api.ipify.org?format=json')
).json()
if (currentIP && ipRes.ip === currentIP) return //console.log('IP has not changed.')
currentIP = ipRes.ip
sendReq()
} catch (err) {
console.log(Date(), 'Error fetching IP: ' + err)
}
}
const sendReq = async () => {
try {
const res = await fetch(process.env.DDNS_URL)
console.log(res.status)
console.log(res.statusText)
console.log(Date())
} catch (err) {
console.log(Date(), 'Error updating IP:' + err)
}
}
checkIP()
setInterval(() => checkIP(), 1000 * (process.env.DDNS_CHECKING_INTERVAL || 60))