ntopng/scripts/lua/admin/validate_new_user.lua
Emanuele Faranda afdfac1c9c Lua scripts parameters validation (#970)
* partial work

* Migrate 'mode' parameters

* Migrate alerts types

* Fix some interface ids

* Partial work

* Partial work

* End of work for _GET parameters

* Work in progress

* Add support for special parameters

* Preferences validation

* Fixes and improvements

* Enforce interger validation
2017-02-08 12:25:35 +01:00

23 lines
578 B
Lua

--
-- (C) 2013 - ntop.org
--
dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
require "lua_utils"
sendHTTPHeader('application/json')
if(haveAdminPrivileges()) then
key = "ntopng.user.".. _GET["username"] ..".password"
existing = ntop.getCache(key)
if(string.len(existing) > 0) then
print('{ "valid" : 0, "user": "'.. _GET["username"]..'", "msg": "User already existing" }\n')
return
else
valid = 1
end
print('{ "valid" : 1, "user": "'.. _GET["username"]..'", "msg": "Ok" }\n')
end