mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 10:41:34 +00:00
Implements pools_rest_utils.lua with common RESTful API functions
This commit is contained in:
parent
53e440c0f7
commit
83e2b10953
7 changed files with 188 additions and 159 deletions
|
|
@ -6,43 +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"
|
||||
|
||||
--
|
||||
-- Delete an existing pool
|
||||
|
||||
local pool_id = _POST["pool"]
|
||||
|
||||
sendHTTPHeader('application/json')
|
||||
|
||||
if not isAdministrator() then
|
||||
print(rest_utils.rc(rest_utils.consts_not_granted))
|
||||
return
|
||||
end
|
||||
|
||||
if not pool_id then
|
||||
print(rest_utils.rc(rest_utils.consts_invalid_args))
|
||||
return
|
||||
end
|
||||
|
||||
-- pool_id as number
|
||||
pool_id = tonumber(pool_id)
|
||||
|
||||
local s = interface_pools:create()
|
||||
local res = s:delete_pool(pool_id)
|
||||
|
||||
if not res then
|
||||
print(rest_utils.rc(rest_utils.consts_pool_not_found))
|
||||
return
|
||||
end
|
||||
|
||||
local rc = rest_utils.consts_ok
|
||||
local res = {
|
||||
pool_id = new_pool_id
|
||||
}
|
||||
|
||||
print(rest_utils.rc(rc, res))
|
||||
|
||||
pools_rest_utils.delete_pool(interface_pools)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue