61 lines
2.0 KiB
Lua
61 lines
2.0 KiB
Lua
local cbi = require "luci.cbi"
|
|
local i18n = require "luci.i18n"
|
|
local uci = luci.model.uci.cursor()
|
|
|
|
local M = {}
|
|
|
|
function M.section(form)
|
|
local s = form:section(cbi.SimpleSection, nil, i18n.translate(
|
|
'If you want the location of your node to be displayed on the map, '
|
|
.. 'you can enter its coordinates here. Specifying the altitude '
|
|
.. 'is optional and should only be done if a proper value is known.'))
|
|
|
|
|
|
local o
|
|
|
|
o = s:option(cbi.Flag, "_location", i18n.translate("Show node on the map"))
|
|
o.default = uci:get_first("gluon-node-info", "location", "share_location", o.disabled)
|
|
o.rmempty = false
|
|
|
|
o = s:option(cbi.Value, "_latitude", i18n.translate("Latitude"))
|
|
o.default = uci:get_first("gluon-node-info", "location", "latitude")
|
|
o:depends("_location", "1")
|
|
o.rmempty = false
|
|
o.datatype = "float"
|
|
o.description = i18n.translatef("e.g. %s", "53.873621")
|
|
|
|
o = s:option(cbi.Value, "_longitude", i18n.translate("Longitude"))
|
|
o.default = uci:get_first("gluon-node-info", "location", "longitude")
|
|
o:depends("_location", "1")
|
|
o.rmempty = false
|
|
o.datatype = "float"
|
|
o.description = i18n.translatef("e.g. %s", "10.689901")
|
|
|
|
o = s:option(cbi.Value, "_altitude", i18n.translate("Altitude"))
|
|
o.default = uci:get_first("gluon-node-info", "location", "altitude")
|
|
o:depends("_location", "1")
|
|
o.rmempty = true
|
|
o.datatype = "float"
|
|
o.description = i18n.translatef("e.g. %s", "11.51")
|
|
|
|
end
|
|
|
|
function M.handle(data)
|
|
local sname = uci:get_first("gluon-node-info", "location")
|
|
|
|
uci:set("gluon-node-info", sname, "share_location", data._location)
|
|
if data._location and data._latitude ~= nil and data._longitude ~= nil then
|
|
uci:set("gluon-node-info", sname, "latitude", data._latitude)
|
|
uci:set("gluon-node-info", sname, "longitude", data._longitude)
|
|
if data._altitude ~= nil then
|
|
uci:set("gluon-node-info", sname, "altitude", data._altitude)
|
|
else
|
|
uci:delete("gluon-node-info", sname, "altitude")
|
|
end
|
|
end
|
|
uci:save("gluon-node-info")
|
|
uci:commit("gluon-node-info")
|
|
end
|
|
|
|
return M
|