2013-11-04 22:34:09 +01:00
---
-- The settings interface reads and writes configuration keys using [UCI](http://wiki.openwrt.org/doc/uci).
-- All keys have pre-defined defaults in @{conf_defaults} which will be used
-- if no value is stored in the UCI config. The UCI config file is `/etc/config/wifibox`.
-- The default values guarantee there will always be a set of reasonable settings
-- to use and provide a clear overview of all existing configuration keys as well.
2013-07-28 05:01:58 +02:00
local uci = require ( ' uci ' ) . cursor ( )
2013-07-26 02:17:05 +02:00
local utils = require ( ' util.utils ' )
2013-07-17 17:43:33 +02:00
local baseconfig = require ( ' conf_defaults ' )
2013-11-28 17:48:00 +01:00
local subconfig = require ( ' subconf_defaults ' )
2013-10-17 14:04:13 +02:00
local utils = require ( ' util.utils ' )
local log = require ( ' util.logger ' )
2013-07-17 17:43:33 +02:00
local M = { }
2013-11-04 22:34:09 +01:00
--- UCI config name (i.e., file under `/etc/config`)
2013-07-28 05:01:58 +02:00
local UCI_CONFIG_NAME = ' wifibox '
--- Absolute path to the UCI config file
2013-07-17 17:43:33 +02:00
local UCI_CONFIG_FILE = ' /etc/config/ ' .. UCI_CONFIG_NAME
2013-07-28 05:01:58 +02:00
2013-11-04 22:34:09 +01:00
--- [Section type](http://wiki.openwrt.org/doc/techref/uci#about.uci.structure) that will be used in @{UCI_CONFIG_FILE}
2013-07-28 05:01:58 +02:00
local UCI_CONFIG_TYPE = ' settings '
2013-11-04 22:34:09 +01:00
--- [Section name](http://wiki.openwrt.org/doc/techref/uci#about.uci.structure) that will be used for 'public' settings (as predefined in conf_defaults.lua) in @{UCI_CONFIG_FILE}
2013-07-28 05:01:58 +02:00
local UCI_CONFIG_SECTION = ' general '
2013-11-04 22:34:09 +01:00
--- [Section name](http://wiki.openwrt.org/doc/techref/uci#about.uci.structure) that will be used for 'firmware-local' settings in @{UCI_CONFIG_FILE}
2013-08-22 18:34:45 +02:00
local UCI_CONFIG_SYSTEM_SECTION = ' system '
2013-07-17 17:43:33 +02:00
local ERR_NO_SUCH_KEY = " key does not exist "
2013-07-28 05:01:58 +02:00
--- Returns a key with all periods ('.') replaced by underscores ('_').
2013-11-04 22:34:09 +01:00
-- @string key The key for which to substitute dots.
2013-07-26 02:17:05 +02:00
-- @return The substituted key, or the key parameter itself if it is not of type 'string'.
local function replaceDots ( key )
if type ( key ) ~= ' string ' then return key end
2013-07-27 00:25:43 +02:00
local r = key : gsub ( ' %. ' , ' _ ' )
return r
end
2013-07-28 05:01:58 +02:00
--- Returns a key with all underscores ('_') replaced by periods ('.').
2013-11-04 22:34:09 +01:00
-- @string key The key for which to substitute underscores.
2013-07-28 05:01:58 +02:00
-- @return The substituted key, or the key parameter itself if it is not of type 'string'.
2013-07-27 00:25:43 +02:00
local function replaceUnderscores ( key )
if type ( key ) ~= ' string ' then return key end
local r = key : gsub ( ' _ ' , ' %. ' )
return r
2013-07-26 02:17:05 +02:00
end
2013-07-28 05:01:58 +02:00
--- Converts a lua value to equivalent representation for UCI.
-- Boolean values are converted to '1' and '0', everything else is converted to a string.
--
2013-11-04 22:34:09 +01:00
-- @p v The value to convert.
-- @p vType The type of the given value.
2013-07-28 05:01:58 +02:00
-- @return A value usable to write to UCI.
2013-07-26 02:17:05 +02:00
local function toUciValue ( v , vType )
if vType == ' bool ' then return v and ' 1 ' or ' 0 ' end
2013-11-04 22:34:09 +01:00
if ( vType == ' string ' ) then
v = v : gsub ( ' [ \n \r ] ' , ' \\ n ' )
2013-08-28 17:12:41 +02:00
end
2013-07-17 17:43:33 +02:00
return tostring ( v )
end
2013-07-28 05:01:58 +02:00
--- Converts a value read from UCI to a correctly typed lua value.
-- For boolean, '1' is converted to true and everything else to false. Floats
-- and ints are converted to numbers and everything else will be returned as is.
--
2013-11-04 22:34:09 +01:00
-- @p v The value to convert.
-- @p vType The type of the given value.
2013-07-28 05:01:58 +02:00
-- @return A lua value typed correctly with regard to the vType parameter.
2013-07-26 02:17:05 +02:00
local function fromUciValue ( v , vType )
if v == nil then return nil end
2013-11-04 22:34:09 +01:00
2013-07-26 02:17:05 +02:00
if vType == ' bool ' then
2013-07-17 17:43:33 +02:00
return ( v == ' 1 ' ) and true or false
2013-07-26 02:17:05 +02:00
elseif vType == ' float ' or vType == ' int ' then
2013-07-17 17:43:33 +02:00
return tonumber ( v )
2013-08-28 17:12:41 +02:00
elseif vType == ' string ' then
2013-11-04 22:34:09 +01:00
v = v : gsub ( ' \\ n ' , ' \n ' )
2013-08-28 17:12:41 +02:00
return v
2013-07-17 17:43:33 +02:00
else
return v
end
2013-11-04 22:34:09 +01:00
2013-07-17 17:43:33 +02:00
end
2013-07-28 05:01:58 +02:00
--- Reports whether a value is valid given the constraints specified in a base table.
2013-11-04 22:34:09 +01:00
-- @p value The value to test.
-- @tab baseTable The base table to use constraint data from (min,max,regex).
2013-07-28 05:01:58 +02:00
-- @treturn bool Returns true if the value is valid, false if it is not.
2013-07-17 17:43:33 +02:00
local function isValid ( value , baseTable )
2013-08-29 01:40:51 +02:00
local varType , min , max , regex , isValid = baseTable.type , baseTable.min , baseTable.max , baseTable.regex , baseTable.isValid
2013-11-04 22:34:09 +01:00
if isValid then
2013-10-17 15:28:57 +02:00
local ok , msg = isValid ( value )
if msg == nil then msg = " invalid value " end
return ok or nil , msg
2013-08-29 01:40:51 +02:00
end
2013-07-26 02:17:05 +02:00
if varType == ' bool ' then
return type ( value ) == ' boolean ' or nil , " invalid bool value "
2013-11-04 22:34:09 +01:00
2013-07-26 02:17:05 +02:00
elseif varType == ' int ' or varType == ' float ' then
2013-07-17 22:55:27 +02:00
local numValue = tonumber ( value )
2013-10-17 14:04:13 +02:00
if numValue == nil then
return nil , " invalid number "
elseif varType == ' int ' and math.floor ( numValue ) ~= numValue then
return nil , " invalid int "
elseif min and numValue < min then
2013-10-18 16:16:05 +02:00
return nil , " too low "
2013-10-17 14:04:13 +02:00
elseif max and numValue > max then
2013-10-18 16:16:05 +02:00
return nil , " too high "
2013-10-17 14:04:13 +02:00
end
2013-11-04 22:34:09 +01:00
2013-07-26 02:17:05 +02:00
elseif varType == ' string ' then
2013-07-17 17:43:33 +02:00
local ok = true
2013-10-17 14:04:13 +02:00
if min and value : len ( ) < min then
2013-10-18 16:16:05 +02:00
return nil , " too short "
2013-10-17 14:04:13 +02:00
elseif max and value : len ( ) > max then
2013-10-18 16:16:05 +02:00
return nil , " too long "
2013-10-17 14:04:13 +02:00
elseif regex and value : match ( regex ) == nil then
return nil , " invalid value "
2013-11-04 22:34:09 +01:00
end
2013-07-17 17:43:33 +02:00
end
2013-08-29 01:40:51 +02:00
2013-07-17 17:43:33 +02:00
return true
end
2013-11-04 22:34:09 +01:00
--- Looks up the table in @{conf_defaults}.lua corresponding to a key.
-- @string key The key for which to return the base table.
2013-07-28 05:01:58 +02:00
-- @treturn table The base table for key, or nil if it does not exist.
2013-07-17 17:43:33 +02:00
local function getBaseKeyTable ( key )
local base = baseconfig [ key ]
return type ( base ) == ' table ' and base.default ~= nil and base or nil
end
2013-11-28 17:48:00 +01:00
--- Looks up the table in @{subconf_defaults}.lua corresponding to a key.
-- @string key The key for which to return the base table.
-- @treturn table The base table for key, or nil if it does not exist.
2013-11-29 11:03:27 +01:00
--[[local function getSubBaseKeyTable(key)
2013-11-28 17:48:00 +01:00
local base = subconfig [ key ]
return type ( base ) == ' table ' and base.default ~= nil and base or nil
2013-11-29 11:03:27 +01:00
end ] ] --
2013-11-28 17:48:00 +01:00
2013-07-17 17:43:33 +02:00
2013-07-26 02:17:05 +02:00
--- Returns the value of the requested key if it exists.
2013-11-04 22:34:09 +01:00
-- @p key The key to return the associated value for.
2013-07-26 02:17:05 +02:00
-- @return The associated value, beware (!) that this may be boolean false for keys of 'bool' type.
2013-07-17 17:43:33 +02:00
function M . get ( key )
2013-11-28 17:48:00 +01:00
log : info ( " settings:get: " .. utils.dump ( key ) )
2013-07-26 02:17:05 +02:00
key = replaceDots ( key )
2013-07-17 17:43:33 +02:00
local base = getBaseKeyTable ( key )
2013-11-04 22:34:09 +01:00
2013-07-17 17:43:33 +02:00
if not base then return nil , ERR_NO_SUCH_KEY end
2013-11-28 17:48:00 +01:00
local section = UCI_CONFIG_SECTION ;
if base.subSection ~= nil then
log : info ( " base.subSection: " .. utils.dump ( base.subSection ) )
section = M.get ( base.subSection )
end
log : info ( " section: " .. utils.dump ( section ) )
local uciV = fromUciValue ( uci : get ( UCI_CONFIG_NAME , section , key ) , base.type )
log : info ( " uciV: " .. utils.dump ( uciV ) )
if uciV ~= nil then
log : info ( " returning uciV: " .. utils.dump ( uciV ) )
return uciV
elseif base.subSection ~= nil then
log : info ( " base.subSection: " .. utils.dump ( base.subSection ) )
log : info ( " section: " .. utils.dump ( section ) )
log : info ( " key: " .. utils.dump ( key ) )
2013-11-29 11:03:27 +01:00
log : info ( " subDefault key: " .. utils.dump ( " default_ " .. section ) )
local subDefault = base [ " default_ " .. section ]
if subDefault ~= nil then
log : info ( " returning subsection default: " .. utils.dump ( subDefault ) )
return subDefault
2013-11-28 17:48:00 +01:00
end
end
log : info ( " returning default: " .. utils.dump ( base.default ) )
return base.default
2013-07-17 17:43:33 +02:00
end
2013-07-28 05:01:58 +02:00
--- Returns all configuration keys with their current values.
-- @treturn table A table containing a key/value pair for each configuration key.
2013-07-27 00:25:43 +02:00
function M . getAll ( )
local result = { }
for k , _ in pairs ( baseconfig ) do
if not k : match ( ' ^[A-Z_]*$ ' ) then --TEMP: skip 'constants', which should be moved anyway
local key = replaceUnderscores ( k )
result [ key ] = M.get ( key )
end
end
return result
end
2013-07-28 05:01:58 +02:00
--- Reports whether or not a key exists.
2013-11-04 22:34:09 +01:00
-- @string key The key to find.
2013-07-28 05:01:58 +02:00
-- @treturn bool True if the key exists, false if not.
2013-07-17 17:43:33 +02:00
function M . exists ( key )
2013-07-26 02:17:05 +02:00
key = replaceDots ( key )
2013-07-17 17:43:33 +02:00
return getBaseKeyTable ( key ) ~= nil
end
2013-07-28 05:01:58 +02:00
--- Reports whether or not a key is at its default value.
-- 'Default' in this regard means that no UCI value is defined. This means that
-- if for instance, the default is 'abc', and UCI contains a configured value of
-- 'abc' as well, that key is _not_ a default value.
--
2013-11-04 22:34:09 +01:00
-- @string key The key to report about.
2013-07-28 05:01:58 +02:00
-- @treturn bool True if the key is currently at its default value, false if not.
2013-07-17 17:43:33 +02:00
function M . isDefault ( key )
2013-07-26 02:17:05 +02:00
key = replaceDots ( key )
2013-07-17 17:43:33 +02:00
if not M.exists ( key ) then return nil , ERR_NO_SUCH_KEY end
return uci : get ( UCI_CONFIG_NAME , UCI_CONFIG_SECTION , key ) == nil
end
2013-07-28 05:01:58 +02:00
--- Sets a key to a new value or reverts it to the default value.
2013-11-04 22:34:09 +01:00
-- @string key The key to set.
-- @p[opt=nil] value The value or set, or nil to revert key to its default value.
2013-07-28 05:01:58 +02:00
-- @treturn bool|nil True if everything went well, nil in case of error.
-- @treturn ?string Error message in case first return value is nil (invalid key).
2013-07-17 17:43:33 +02:00
function M . set ( key , value )
2013-10-17 14:04:13 +02:00
--log:info("settings:set: "..utils.dump(key))
2013-07-26 02:17:05 +02:00
key = replaceDots ( key )
2013-08-29 01:40:51 +02:00
2013-07-26 02:17:05 +02:00
local r = utils.create ( UCI_CONFIG_FILE )
2013-07-17 17:43:33 +02:00
uci : set ( UCI_CONFIG_NAME , UCI_CONFIG_SECTION , UCI_CONFIG_TYPE )
2013-11-04 22:34:09 +01:00
2013-07-17 17:43:33 +02:00
local base = getBaseKeyTable ( key )
if not base then return nil , ERR_NO_SUCH_KEY end
2013-11-04 22:34:09 +01:00
2013-10-17 14:04:13 +02:00
if M.isDefault ( key ) and value == nil then return true end -- key is default already
--log:info(" not default")
2013-11-28 17:48:00 +01:00
2013-10-17 14:04:13 +02:00
--log:info(" base.type: "..utils.dump(base.type))
2013-07-29 13:48:56 +02:00
if base.type == ' bool ' then
if value ~= " " then
value = utils.toboolean ( value )
else
value = nil
end
elseif base.type == ' int ' or base.type == ' float ' then
value = tonumber ( value )
2013-11-04 22:34:09 +01:00
if ( value == nil ) then
2013-08-29 01:40:51 +02:00
return nil , " Value isn't a valid int or float "
end
2013-07-29 13:48:56 +02:00
end
2013-08-28 17:12:41 +02:00
2013-10-17 14:04:13 +02:00
local valid , m = isValid ( value , base )
if not valid then
return nil , m
end
2013-11-04 22:34:09 +01:00
2013-11-28 17:48:00 +01:00
--local current = uci:get(UCI_CONFIG_NAME, UCI_CONFIG_SECTION, key)
local current = M.get ( key )
--if fromUciValue(current, base.type) == value then return true end
if current == value then return true end
local section = UCI_CONFIG_SECTION ;
if base.subSection ~= nil then
log : info ( " base.subSection: " .. utils.dump ( base.subSection ) )
section = M.get ( base.subSection )
uci : set ( UCI_CONFIG_NAME , section , UCI_CONFIG_TYPE )
end
log : info ( " section: " .. utils.dump ( section ) )
2013-08-28 17:12:41 +02:00
2013-07-17 17:43:33 +02:00
if value ~= nil then
2013-11-28 17:48:00 +01:00
uci : set ( UCI_CONFIG_NAME , section , key , toUciValue ( value , base.type ) )
2013-07-17 17:43:33 +02:00
else
2013-11-28 17:48:00 +01:00
uci : delete ( UCI_CONFIG_NAME , section , key )
2013-07-17 17:43:33 +02:00
end
2013-11-04 22:34:09 +01:00
2013-07-17 17:43:33 +02:00
uci : commit ( UCI_CONFIG_NAME )
return true
end
2013-11-22 18:05:51 +01:00
--- Reset all settings to their default values
-- @string key The key to set.
-- @treturn bool|nil True if everything went well, nil in case of error.
function M . resetAll ( )
log : info ( " settings:resetAll " )
for k , _ in pairs ( baseconfig ) do
if not k : match ( ' ^[A-Z_]*$ ' ) then --TEMP: skip 'constants', which should be moved anyway
M.reset ( k )
end
end
return true
end
--- Reset setting to default value
-- @string key The key to reset.
-- @treturn bool|nil True if everything went well, nil in case of error.
function M . reset ( key )
log : info ( " settings:reset " )
--log:info(" key: "..utils.dump(key))
uci : delete ( UCI_CONFIG_NAME , UCI_CONFIG_SECTION , key )
uci : commit ( UCI_CONFIG_NAME )
return true
end
2013-08-22 18:34:45 +02:00
--- Returns a UCI configuration key from the system section.
2013-11-04 22:34:09 +01:00
-- @string key The key for which to return the value, must be non-empty.
2013-08-22 18:34:45 +02:00
-- @return Requested value or false if it does not exist or nil on invalid key.
function M . getSystemKey ( key )
if type ( key ) ~= ' string ' or key : len ( ) == 0 then return nil end
local v = uci : get ( UCI_CONFIG_NAME , UCI_CONFIG_SYSTEM_SECTION , key )
return v or false
end
2013-11-04 22:34:09 +01:00
--- Sets the value of a UCI key in the system section.
2013-08-22 18:34:45 +02:00
-- Note that unlike the public settings, system keys are untyped and value must
-- be of type string; UCI generally uses '1' and '0' for boolean values.
2013-11-04 22:34:09 +01:00
-- @string key The key to set, must be non-empty.
-- @string value The value to set key to.
-- @return True on success or nil if key or value arguments are invalid.
2013-08-22 18:34:45 +02:00
function M . setSystemKey ( key , value )
if type ( key ) ~= ' string ' or key : len ( ) == 0 then return nil end
if type ( value ) ~= ' string ' then return nil end
2013-11-04 22:34:09 +01:00
2013-08-22 18:34:45 +02:00
local r = utils.create ( UCI_CONFIG_FILE ) -- make sure the file exists for uci to write to
uci : set ( UCI_CONFIG_NAME , UCI_CONFIG_SYSTEM_SECTION , UCI_CONFIG_TYPE )
uci : set ( UCI_CONFIG_NAME , UCI_CONFIG_SYSTEM_SECTION , key , value )
uci : commit ( UCI_CONFIG_NAME )
2013-11-04 22:34:09 +01:00
2013-08-22 18:34:45 +02:00
return true
end
2013-07-17 17:43:33 +02:00
return M