mirror of
https://github.com/koreader/koreader
synced 2024-11-11 19:11:14 +00:00
a2dcfe9aec
This commit standardizes the various todos around the code a bit in a manner recognized by LDoc. Besides drawing more attention by being displayed in the developer docs, they're also extractable with LDoc on the command line: ```sh ldoc --tags todo,fixme *.lua ``` However, whether that particular usage offers any advantage over other search tools is questionable at best. * and some random beautification
78 lines
1.9 KiB
Lua
78 lines
1.9 KiB
Lua
local Device = require("device")
|
|
|
|
local command
|
|
--- @todo (hzj-jie): Does pocketbook provide ntpdate?
|
|
if Device:isKobo() then
|
|
command = "ntpd -q -n -p pool.ntp.org"
|
|
elseif Device:isCervantes() or Device:isKindle() or Device:isPocketBook() then
|
|
command = "ntpdate pool.ntp.org"
|
|
else
|
|
return { disabled = true, }
|
|
end
|
|
|
|
local InfoMessage = require("ui/widget/infomessage")
|
|
local UIManager = require("ui/uimanager")
|
|
local WidgetContainer = require("ui/widget/container/widgetcontainer")
|
|
local T = require("ffi/util").template
|
|
local _ = require("gettext")
|
|
local NetworkMgr = require("ui/network/manager")
|
|
|
|
local TimeSync = WidgetContainer:new{
|
|
name = "timesync",
|
|
}
|
|
|
|
local function currentTime()
|
|
local std_out = io.popen("date")
|
|
if std_out then
|
|
local result = std_out:read("*all")
|
|
std_out:close()
|
|
if result ~= nil then
|
|
result = result:gsub("\n", "")
|
|
return T(_("New time is %1."), result)
|
|
end
|
|
end
|
|
return _("Time synchronized.")
|
|
end
|
|
|
|
local function execute()
|
|
local info = InfoMessage:new{
|
|
text = _("Synchronizing time. This may take several seconds.")
|
|
}
|
|
UIManager:show(info)
|
|
UIManager:forceRePaint()
|
|
local txt
|
|
if os.execute(command) ~= 0 then
|
|
txt = _("Failed to retrieve time from server. Please check your network configuration.")
|
|
else
|
|
txt = currentTime()
|
|
end
|
|
os.execute("hwclock -u -w")
|
|
UIManager:close(info)
|
|
UIManager:show(InfoMessage:new{
|
|
text = txt,
|
|
timeout = 3,
|
|
})
|
|
end
|
|
|
|
local menuItem = {
|
|
text = _("Synchronize time"),
|
|
keep_menu_open = true,
|
|
callback = function()
|
|
if NetworkMgr:isOnline() then
|
|
execute()
|
|
else
|
|
NetworkMgr:promptWifiOn()
|
|
end
|
|
end
|
|
}
|
|
|
|
function TimeSync:init()
|
|
self.ui.menu:registerToMainMenu(self)
|
|
end
|
|
|
|
function TimeSync:addToMainMenu(menu_items)
|
|
menu_items.synchronize_time = menuItem
|
|
end
|
|
|
|
return TimeSync
|