manman-sync fix storing data

This commit is contained in:
Maciej Krüger 2021-12-16 04:08:01 +01:00 committed by Alexander List
parent 503893fdf7
commit 436f3eaff5
4 changed files with 25 additions and 12 deletions

View File

@ -12,18 +12,18 @@ return function(form, uci)
local o
local manman = s:option(Flag, "manman_sync", pkg_i18n.translate("Enable ManMan sync"))
manman.default = uci:get_bool("gluon", "manman_sync", "enabled")
local manman = s:option(Flag, 'manman_sync', pkg_i18n.translate('Enable ManMan sync'))
manman.default = uci:get_bool('gluon-manman-sync', 'sync', 'enabled')
function manman:write(data)
uci:set("gluon", "manman_sync", "enabled", data)
uci:set('gluon-manman-sync', 'sync', 'enabled', data)
end
local id = s:option(Value, "manman_id", pkg_i18n.translate("ManMan location ID"))
local id = s:option(Value, 'manman_id', pkg_i18n.translate('ManMan location ID'))
id:depends(manman, true)
id.default = uci:get("gluon", "manman_sync", "node_id")
id.datatype = "uinteger"
id.default = uci:get('gluon-manman-sync', 'sync', 'node_id')
id.datatype = 'uinteger'
function id:write(data)
uci:set("gluon", "manman_sync", "node_id", data)
uci:set('gluon-manman-sync', 'sync', 'node_id', data)
end
function s:write()

View File

@ -0,0 +1,13 @@
package gluon-manman-sync
config sync 'sync'
option enabled '0'
option node_id ''
option last_data_hash ''
option last_data ''
config rollback 'rollback'
option success '1'
option checked_at ''
option previous_hash ''
option new_hash ''

View File

@ -11,8 +11,8 @@ local mappings = {
tunnel = 'vpn'
}
if uci:get_bool('gluon', 'manman_sync', 'enabled') then
local location_id = uci:get('gluon', 'manman_sync', 'location_id')
if uci:get_bool('gluon-manman-sync', 'sync', 'enabled') then
local location_id = uci:get('gluon-manman-sync', 'sync', 'location_id')
if not location_id then
print('E: manman location_id missing')

View File

@ -41,16 +41,16 @@ static struct json_object * get_autoupdater(void) {
ctx->flags &= ~UCI_FLAG_STRICT;
struct uci_package *p;
if (uci_load(ctx, "gluon", &p))
if (uci_load(ctx, "gluon-manman-sync", &p))
goto error;
struct uci_section *s = uci_lookup_section(ctx, p, "manman_sync");
struct uci_section *s = uci_lookup_section(ctx, p, "sync");
if (!s)
goto error;
struct json_object *ret = json_object_new_object();
json_object_object_add(ret, "nodeid", gluonutil_wrap_string(uci_lookup_option_string(ctx, s, "nodeid")));
json_object_object_add(ret, "node_id", gluonutil_wrap_string(uci_lookup_option_string(ctx, s, "node_id")));
const char *enabled = uci_lookup_option_string(ctx, s, "enabled");
json_object_object_add(ret, "enabled", json_object_new_boolean(enabled && !strcmp(enabled, "1")));