gluon-core: check-site: support checking "custom" values

The new "value" helper can be used to turn a Lua value into a path that
can be passed to need_*() etc.
This commit is contained in:
Matthias Schiffer 2022-05-15 15:29:30 +02:00
parent 674ec7b64a
commit d24ae56378
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C
2 changed files with 21 additions and 0 deletions

View File

@ -25,6 +25,7 @@ files["package/**/check_site.lua"] = {
"extend",
"in_domain",
"in_site",
"value",
"need",
"need_alphanumeric_key",
"need_array",

View File

@ -57,6 +57,10 @@ end
local function path_to_string(path)
if path.is_value then
return path.label
end
return table.concat(path, '.')
end
@ -96,6 +100,10 @@ local function domain_src()
end
local function conf_src(path)
if path.is_value then
return 'Configuration'
end
local src
if has_domains then
@ -138,6 +146,14 @@ function M.in_domain(path)
return path
end
function M.value(label, value)
return {
is_value = true,
label = label,
value = value,
}
end
function M.this_domain()
return domain_code
end
@ -171,6 +187,10 @@ function loadpath(path, base, c, ...)
end
local function loadvar(path)
if path.is_value then
return path.value
end
return loadpath({}, conf, unpack(path))
end