mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
86 lines
2.5 KiB
Lua
86 lines
2.5 KiB
Lua
--
|
|
-- (C) 2013-18 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
require "lua_utils"
|
|
|
|
sendHTTPHeader('application/json')
|
|
|
|
local username = _POST["username"]
|
|
local host_role = _POST["user_role"]
|
|
local networks = _POST["allowed_networks"]
|
|
local allowed_interface = _POST["allowed_interface"]
|
|
local language = _POST["user_language"]
|
|
|
|
-- for captive portal users
|
|
local old_host_pool_id = _POST["old_host_pool_id"]
|
|
local new_host_pool_id = _POST["host_pool_id"]
|
|
local limited_lifetime = _POST["lifetime_limited"]
|
|
local unlimited_lifetime = _POST["lifetime_unlimited"]
|
|
local lifetime_secs = tonumber((_POST["lifetime_secs"] or -1))
|
|
|
|
if(false) then
|
|
io.write("\n")
|
|
for k,v in pairs(_POST) do
|
|
local s = k.."="..v.."\n"
|
|
io.write(s)
|
|
end
|
|
end
|
|
|
|
if(username == nil) then
|
|
print ("{ \"result\" : -1, \"message\" : \"Error in username\" }")
|
|
return
|
|
end
|
|
|
|
username = string.lower(username)
|
|
|
|
if(host_role ~= nil) then
|
|
if(not ntop.changeUserRole(username, host_role)) then
|
|
print ("{ \"result\" : -1, \"message\" : \"Error in changing host type\" }")
|
|
return
|
|
end
|
|
end
|
|
|
|
if(networks ~= nil) then
|
|
if(not ntop.changeAllowedNets(username, networks)) then
|
|
print ("{ \"result\" : -1, \"message\" : \"Error in changing allowed networks\" }")
|
|
return
|
|
end
|
|
end
|
|
|
|
if(allowed_interface ~= nil) then
|
|
if(not ntop.changeAllowedIfname(username, getInterfaceName(allowed_interface))) then
|
|
print ("{ \"result\" : -1, \"message\" : \"Error in changing the allowed interface\" }")
|
|
return
|
|
end
|
|
end
|
|
|
|
if(language ~= nil) then
|
|
if(not ntop.changeUserLanguage(username, language)) then
|
|
print ("{ \"result\" : -1, \"message\" : \"Error in changing the user language\" }")
|
|
return
|
|
end
|
|
end
|
|
|
|
if(limited_lifetime ~= nil) then
|
|
if not ntop.addUserLifetime(username, lifetime_secs) then
|
|
print ("{ \"result\" : -1, \"message\" : \"Error in changing the host lifetime\" }")
|
|
return
|
|
end
|
|
elseif(unlimited_lifetime ~= nil) then
|
|
if not ntop.clearUserLifetime(username) then
|
|
print ("{ \"result\" : -1, \"message\" : \"Error in clearing the host lifetime\" }")
|
|
return
|
|
end
|
|
end
|
|
|
|
if(new_host_pool_id ~= nil and old_host_pool_id ~= nil and new_host_pool_id ~= old_host_pool_id) then
|
|
if(not ntop.changeUserHostPool(username, new_host_pool_id)) then
|
|
print ("{ \"result\" : -1, \"message\" : \"Error in changing the host pool id\" }")
|
|
return
|
|
end
|
|
end
|
|
|
|
print ("{ \"result\" : 0, \"message\" : \"Parameters Updated\" }")
|