You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koreader/frontend/apps/filemanager/filemanagerconverter.lua

109 lines
3.6 KiB
Lua

--[[--
This module is responsible for converting files.
]]
local ButtonDialogTitle = require("ui/widget/buttondialogtitle")
local ConfirmBox = require("ui/widget/confirmbox")
local UIManager = require("ui/uimanager")
local lfs = require("libs/libkoreader-lfs")
local logger = require("logger")
local util = require("util")
local gettext = require("gettext")
local T = require("ffi/util").template
local FileConverter = {
formats_from = {
md = {
name = gettext("Markdown"),
from = "markdown",
},
},
formats_to = {
epub = {
to = "epub",
},
html = {
to = "html",
},
pdf = {
to = "pdf",
},
},
--curl --form input_files[]=@README.md --form from=markdown --form to=pdf http://c.docverter.com/convert
docverter_url = "http://c.docverter.com/convert",
}
--- Converts a markdown fragment to a full HTML document.
---- @string markdown the markdown fragment
---- @string title an optional title for the HTML document
---- @treturn string an HTML document
function FileConverter:mdToHtml(markdown, title)
local MD = require("apps/filemanager/lib/md")
local md_options = {
prependHead = "<!DOCTYPE html>\n<html>\n<head>\n",
insertHead = string.format("<title>%s</title>\n</head>\n<body>\n", title),
appendTail = "\n</body>\n</html>",
}
local html, err = MD(markdown, md_options)
if err then
logger.warn("FileManagerConverter: could not generate HTML", err)
end
return html
end
function FileConverter:_mdFileToHtml(file, title)
local f = io.open(file, "rb")
local content = f:read("*all")
f:close()
local html = self:mdToHtml(content, title)
return html
end
function FileConverter:writeStringToFile(content, file)
local f = io.open(file, "w")
f:write(content)
f:close()
end
function FileConverter:isSupported(file)
return FileConverter.formats_from[util.getFileNameSuffix(file)] and true or false
end
function FileConverter:showConvertButtons(file, ui)
local _, filename_pure = util.splitFilePathName(file)
local filename_suffix = util.getFileNameSuffix(file)
local filetype_name = self.formats_from[filename_suffix].name
self.convert_dialog = ButtonDialogTitle:new{
title = T(gettext("Convert %1 to:"), filetype_name),
buttons = {
{
{
text = gettext("HTML"),
callback = function()
local html = FileConverter:_mdFileToHtml(file, filename_pure)
if not html then return end
local filename_html = file..".html"
if lfs.attributes(filename_html, "mode") == "file" then
UIManager:show(ConfirmBox:new{
text = gettext("Overwrite existing HTML file?"),
ok_text = gettext("Overwrite"),
ok_callback = function()
FileConverter:writeStringToFile(html, filename_html)
UIManager:close(self.convert_dialog)
end,
})
else
FileConverter:writeStringToFile(html, filename_html)
ui:refreshPath()
UIManager:close(self.convert_dialog)
end
end,
},
},
},
}
UIManager:show(self.convert_dialog)
end
return FileConverter