mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-02 00:40:10 +00:00
Add rest/v1/set/pool/config rest/v1/set/scripts/config REST API
This commit is contained in:
parent
ac24563f15
commit
c24ea73dec
3 changed files with 146 additions and 0 deletions
72
scripts/lua/rest/v1/set/pool/config.lua
Normal file
72
scripts/lua/rest/v1/set/pool/config.lua
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
--
|
||||
-- (C) 2019-20 - 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_utils = require "host_pools_utils"
|
||||
local rest_utils = require("rest_utils")
|
||||
|
||||
--
|
||||
-- Import host pools configuration
|
||||
--
|
||||
-- NOTE: in case of invalid login, no error is returned but redirected to login
|
||||
--
|
||||
|
||||
sendHTTPHeader('application/json')
|
||||
|
||||
local ifid = _GET["ifid"]
|
||||
|
||||
if not haveAdminPrivileges() then
|
||||
print(rest_utils.rc(rest_utils.consts_not_granted))
|
||||
return
|
||||
end
|
||||
|
||||
if isEmptyString(ifid) then
|
||||
ifid = interface.name2id(ifname)
|
||||
end
|
||||
|
||||
if isEmptyString(ifid) then
|
||||
print(rest_utils.rc(rest_utils.consts_invalid_interface))
|
||||
return
|
||||
end
|
||||
|
||||
if(_POST["JSON"] == nil) then
|
||||
print(rest_utils.rc(rest_utils.consts_invalid_args))
|
||||
return
|
||||
end
|
||||
|
||||
local data = json.decode(_POST["JSON"])
|
||||
|
||||
if(table.empty(data)) then
|
||||
print(rest_utils.rc(rest_utils.consts_bad_format))
|
||||
return
|
||||
end
|
||||
|
||||
if data["0"] == nil then
|
||||
print(rest_utils.rc(rest_utils.consts_bad_content))
|
||||
return
|
||||
end
|
||||
|
||||
-- ################################################
|
||||
|
||||
local success = host_pools_utils.import(data, ifid)
|
||||
|
||||
interface.reloadHostPools()
|
||||
|
||||
if not success then
|
||||
print(rest_utils.rc(rest_utils.consts_internal_error))
|
||||
return
|
||||
end
|
||||
|
||||
-- ################################################
|
||||
|
||||
print(rest_utils.rc(rest_utils.consts_ok))
|
||||
70
scripts/lua/rest/v1/set/scripts/config.lua
Normal file
70
scripts/lua/rest/v1/set/scripts/config.lua
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
--
|
||||
-- (C) 2019-20 - 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 user_scripts = require "user_scripts"
|
||||
local rest_utils = require("rest_utils")
|
||||
|
||||
--
|
||||
-- Import scripts configuration
|
||||
--
|
||||
-- NOTE: in case of invalid login, no error is returned but redirected to login
|
||||
--
|
||||
|
||||
sendHTTPHeader('application/json')
|
||||
|
||||
if not haveAdminPrivileges() then
|
||||
print(rest_utils.rc(rest_utils.consts_not_granted))
|
||||
return
|
||||
end
|
||||
|
||||
-- ################################################
|
||||
|
||||
if(_POST["JSON"] == nil) then
|
||||
print(rest_utils.rc(rest_utils.consts_invalid_args))
|
||||
return
|
||||
end
|
||||
|
||||
local data = json.decode(_POST["JSON"])
|
||||
|
||||
if(table.empty(data)) then
|
||||
print(rest_utils.rc(rest_utils.consts_bad_format))
|
||||
return
|
||||
end
|
||||
|
||||
if data["0"] == nil then
|
||||
print(rest_utils.rc(rest_utils.consts_bad_content))
|
||||
return
|
||||
end
|
||||
|
||||
-- ################################################
|
||||
|
||||
local failure = false
|
||||
|
||||
for config_id, configset in pairs(data) do
|
||||
if configset.name ~= nil then
|
||||
local success, err = user_scripts.createOrReplaceConfigset(configset)
|
||||
if not success then
|
||||
failure = true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
if failure then
|
||||
print(rest_utils.rc(rest_utils.consts_internal_error))
|
||||
return
|
||||
end
|
||||
|
||||
-- ################################################
|
||||
|
||||
print(rest_utils.rc(rest_utils.consts_ok))
|
||||
Loading…
Add table
Add a link
Reference in a new issue