diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2025-03-18 01:42:44 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2025-03-18 01:42:44 +0200 |
commit | 1b005d0345ec24709c7cd8915cdb30cb30f59c91 (patch) | |
tree | 86257ec2a882ee064c1bd91d5057a4ea2e9c9e5c /api/index.js | |
parent | 95b1364f4aa1bafdcfcbae99387555c9d06c8ce2 (diff) | |
download | arching-kaos-tools-1b005d0345ec24709c7cd8915cdb30cb30f59c91.tar.gz arching-kaos-tools-1b005d0345ec24709c7cd8915cdb30cb30f59c91.tar.bz2 arching-kaos-tools-1b005d0345ec24709c7cd8915cdb30cb30f59c91.zip |
[api] exported function checkIfAllowedIP
Diffstat (limited to 'api/index.js')
-rwxr-xr-x | api/index.js | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/api/index.js b/api/index.js index 91ae7be..3394a0d 100755 --- a/api/index.js +++ b/api/index.js @@ -14,6 +14,7 @@ const getRemoteNodeInfo = require('./routes/getRemoteNodeInfo/index.js'); const getRemotePeers = require('./routes/getRemotePeers/index.js'); const akLogMessage = require('./lib/akLogMessage'); +const checkIfAllowedIP = require('./lib/checkIfAllowedIP/index.js'); akLogMessage('INFO', 'akLogMessage loaded'); const serverOptions = { keepAliveTimeout: 60000 }; @@ -99,14 +100,6 @@ function processMethod(req, res) } } -function checkIfAllowedIP(address) -{ - var test_cjdns = /^fc[0-9a-z]{1,2}:([0-9a-z]{1,4}:){1,6}[0-9a-z]{1,4}/ - var test_yggdrasil = /^2[0-9a-z]{1,2}:([0-9a-z]{1,4}:){1,6}[0-9a-z]{1,4}/ - var test_yggdrasil_sub = /^3[0-9a-z]{1,2}:([0-9a-z]{1,4}:){1,6}[0-9a-z]{1,4}/ - return (test_cjdns.test(address) || test_yggdrasil.test(address) || test_yggdrasil_sub.test(address)) ? true : false; -} - function requestParser(req, res) { printRequest(req); |