ntopng/scripts/lua/admin/add_user.lua
2017-01-19 15:25:01 +01:00

47 lines
1.4 KiB
Lua

--
-- (C) 2013-17 - ntop.org
--
dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
require "lua_utils"
sendHTTPHeader('text/html; charset=iso-8859-1')
if(haveAdminPrivileges()) then
username = _POST["username"]
full_name = _POST["full_name"]
password = _POST["password"]
confirm_password = _POST["confirm_password"]
host_role = _POST["host_role"]
networks = _POST["allowed_networks"]
allowed_interface = _POST["allowed_interface"]
host_pool_id = _POST["host_pool_id"]
limited_lifetime = _POST["lifetime_limited"]
if(username == nil or full_name == nil or password == nil or confirm_password == nil or host_role == nil or networks == nil or allowed_interface == nil) then
print ("{ \"result\" : -1, \"message\" : \"Invalid parameters\" }")
return
end
if(password ~= confirm_password) then
print ("{ \"result\" : -1, \"message\" : \"Passwords do not match: typo?\" }")
return
end
local ret = false
if(ntop.addUser(username, full_name, password, host_role, networks, getInterfaceName(allowed_interface), host_pool_id)) then
ret = true
if limited_lifetime and not ntop.addUserLifetime(username) then
ret = false
end
end
if ret then
print ("{ \"result\" : 0, \"message\" : \"User added successfully\" }")
else
print ("{ \"result\" : -1, \"message\" : \"Error while adding new user\" }")
end
end