Implements pools_rest_utils.lua with common RESTful API functions

This commit is contained in:
Simone Mainardi 2020-07-08 16:34:09 +02:00
parent 53e440c0f7
commit 83e2b10953
7 changed files with 188 additions and 159 deletions

View file

@ -6,48 +6,7 @@ local dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
package.path = dirs.installdir .. "/scripts/lua/modules/pools/?.lua;" .. package.path
require "lua_utils"
local json = require "dkjson"
local rest_utils = require "rest_utils"
local interface_pools = require "interface_pools"
local pools_rest_utils = require "pools_rest_utils"
--
-- Add a new pool
--
local name = _POST["pool_name"]
local members = _POST["pool_members"]
local confset_id = _POST["confset_id"]
sendHTTPHeader('application/json')
if not isAdministrator() then
print(rest_utils.rc(rest_utils.consts_not_granted))
return
end
if not name or not members or not confset_id then
print(rest_utils.rc(rest_utils.consts_invalid_args))
return
end
local s = interface_pools:create()
members = s:parse_members(members)
-- confset_id as number
confset_id = tonumber(confset_id)
local new_pool_id = s:add_pool(name, members --[[ an array of valid interface ids]], confset_id --[[ a valid configset_id --]])
if not new_pool_id then
print(rest_utils.rc(rest_utils.consts_add_pool_failed))
return
end
local rc = rest_utils.consts_ok
local res = {
pool_id = new_pool_id
}
print(rest_utils.rc(rc, res))
pools_rest_utils.add_pool(interface_pools)