mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
41 lines
987 B
Lua
41 lines
987 B
Lua
--
|
|
-- (C) 2013-21 - ntop.org
|
|
--
|
|
|
|
dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
local json = require ("dkjson")
|
|
local rest_utils = require("rest_utils")
|
|
|
|
--
|
|
-- Resolve a name
|
|
-- Example: curl -u admin:admin -H "Content-Type: application/json" -d '{"hostname" : "www.google.com"}' http://localhost:3000/lua/rest/v1/get/dns/resolve.lua
|
|
--
|
|
-- NOTE: in case of invalid login, no error is returned but redirected to login
|
|
--
|
|
|
|
local rc = rest_utils.consts.success.ok
|
|
local res = {}
|
|
|
|
local hostname = _GET["hostname"]
|
|
|
|
if isEmptyString(hostname) then
|
|
rest_utils.answer(rest_utils.consts.err.invalid_args)
|
|
return
|
|
end
|
|
|
|
local resolved = ntop.resolveHost(hostname, true --[[ IPv4 --]])
|
|
if not resolved then
|
|
resolved = ntop.resolveHost(hostname, false --[[ IPv6 --]])
|
|
end
|
|
|
|
if not resolved then
|
|
rest_utils.answer(rest_utils.consts.err.resolution_failed)
|
|
return
|
|
end
|
|
|
|
res = resolved
|
|
|
|
rest_utils.answer(rc, res)
|