mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
parent
1f24dec3e3
commit
b117e8a23a
178 changed files with 6639 additions and 124 deletions
53
scripts/lua/rest/v2/set/checks/config.lua
Normal file
53
scripts/lua/rest/v2/set/checks/config.lua
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
--
|
||||
-- (C) 2019-21 - ntop.org
|
||||
--
|
||||
dirs = ntop.getDirs()
|
||||
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
||||
package.path = dirs.installdir .. "/scripts/lua/modules/import_export/?.lua;" .. package.path
|
||||
|
||||
require "lua_utils"
|
||||
|
||||
local info = ntop.getInfo()
|
||||
|
||||
local checks_import_export = require "checks_import_export"
|
||||
local json = require ("dkjson")
|
||||
local page_utils = require("page_utils")
|
||||
local format_utils = require("format_utils")
|
||||
local os_utils = require "os_utils"
|
||||
local rest_utils = require("rest_utils")
|
||||
local tracker = require("tracker")
|
||||
|
||||
--
|
||||
-- Import scripts configuration
|
||||
--
|
||||
-- NOTE: in case of invalid login, no error is returned but redirected to login
|
||||
--
|
||||
|
||||
if not isAdministratorOrPrintErr() then
|
||||
rest_utils.answer(rest_utils.consts.err.not_granted)
|
||||
return
|
||||
end
|
||||
|
||||
-- ################################################
|
||||
|
||||
if(_POST["JSON"] == nil) then
|
||||
rest_utils.answer(rest_utils.consts.err.invalid_args)
|
||||
return
|
||||
end
|
||||
|
||||
local data = json.decode(_POST["JSON"])
|
||||
|
||||
local checks_import_export = checks_import_export:create()
|
||||
local res = checks_import_export:import(data)
|
||||
|
||||
if res.err then
|
||||
rest_utils.answer(res.err)
|
||||
return
|
||||
end
|
||||
|
||||
-- ################################################
|
||||
|
||||
-- TRACKER HOOK
|
||||
tracker.log('set_scripts_config', {})
|
||||
|
||||
rest_utils.answer(rest_utils.consts.success.ok)
|
||||
42
scripts/lua/rest/v2/set/host/alias.lua
Normal file
42
scripts/lua/rest/v2/set/host/alias.lua
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
--
|
||||
-- (C) 2013-21 - ntop.org
|
||||
--
|
||||
|
||||
local dirs = ntop.getDirs()
|
||||
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
||||
|
||||
require "lua_utils"
|
||||
local json = require ("dkjson")
|
||||
local tracker = require("tracker")
|
||||
local rest_utils = require("rest_utils")
|
||||
|
||||
--
|
||||
-- Set host alias
|
||||
-- Example: curl -u admin:admin -H "Content-Type: application/json" -d '{"host" : "192.168.1.1", "custom_name" : "Mario"}' http://localhost:3000/lua/rest/v2/set/host/alias.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 host_info = url2hostinfo(_POST)
|
||||
local custom_name = _POST["custom_name"]
|
||||
|
||||
if not isAdministratorOrPrintErr() then
|
||||
rest_utils.answer(rest_utils.consts.err.not_granted)
|
||||
return
|
||||
end
|
||||
|
||||
if host_info == nil or isEmptyString(host_info["host"]) or custom_name == nil then
|
||||
rest_utils.answer(rest_utils.consts.err.invalid_args)
|
||||
return
|
||||
end
|
||||
|
||||
setHostAltName(host_info["host"], custom_name)
|
||||
|
||||
-- TRACKER HOOK
|
||||
tracker.log('set_host_alias', { host = hostinfo2hostkey(host_info), custom_name = custom_name })
|
||||
|
||||
rest_utils.answer(rc, res)
|
||||
|
||||
75
scripts/lua/rest/v2/set/pool/config.lua
Normal file
75
scripts/lua/rest/v2/set/pool/config.lua
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
--
|
||||
-- (C) 2019-21 - ntop.org
|
||||
--
|
||||
dirs = ntop.getDirs()
|
||||
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
||||
|
||||
require "lua_utils"
|
||||
|
||||
local info = ntop.getInfo()
|
||||
|
||||
local json = require ("dkjson")
|
||||
local page_utils = require("page_utils")
|
||||
local format_utils = require("format_utils")
|
||||
local os_utils = require "os_utils"
|
||||
local host_pools_nedge = require "host_pools_nedge"
|
||||
local rest_utils = require("rest_utils")
|
||||
local tracker = require("tracker")
|
||||
local auth = require "auth"
|
||||
|
||||
--
|
||||
-- Import host pools configuration
|
||||
--
|
||||
-- NOTE: in case of invalid login, no error is returned but redirected to login
|
||||
--
|
||||
|
||||
local ifid = _GET["ifid"]
|
||||
|
||||
if not auth.has_capability(auth.capabilities.pools) then
|
||||
rest_utils.answer(rest_utils.consts.err.not_granted)
|
||||
return
|
||||
end
|
||||
|
||||
if isEmptyString(ifid) then
|
||||
ifid = interface.name2id(ifname)
|
||||
end
|
||||
|
||||
if isEmptyString(ifid) then
|
||||
rest_utils.answer(rest_utils.consts.err.invalid_interface)
|
||||
return
|
||||
end
|
||||
|
||||
if(_POST["JSON"] == nil) then
|
||||
rest_utils.answer(rest_utils.consts.err.invalid_args)
|
||||
return
|
||||
end
|
||||
|
||||
local data = json.decode(_POST["JSON"])
|
||||
|
||||
if(table.empty(data)) then
|
||||
rest_utils.answer(rest_utils.consts.err.bad_format)
|
||||
return
|
||||
end
|
||||
|
||||
if data["0"] == nil then
|
||||
rest_utils.answer(rest_utils.consts.err.bad_content)
|
||||
return
|
||||
end
|
||||
|
||||
-- ################################################
|
||||
|
||||
local success = host_pools_nedge.import(data)
|
||||
|
||||
ntop.reloadHostPools()
|
||||
|
||||
if not success then
|
||||
rest_utils.answer(rest_utils.consts.err.internal_error)
|
||||
return
|
||||
end
|
||||
|
||||
-- ################################################
|
||||
|
||||
-- TRACKER HOOK
|
||||
tracker.log('set_pool_config', {})
|
||||
|
||||
rest_utils.answer(rest_utils.consts.success.ok)
|
||||
Loading…
Add table
Add a link
Reference in a new issue