mirror of
https://github.com/koreader/koreader
synced 2024-11-04 12:00:25 +00:00
62 lines
1.8 KiB
Lua
62 lines
1.8 KiB
Lua
local Device = require("device")
|
|
local util = require("ffi/util")
|
|
local T = util.template
|
|
local _ = require("gettext")
|
|
|
|
-- text exporter
|
|
local TextExporter = require("base"):new {
|
|
name = "text",
|
|
extension = "txt",
|
|
shareable = Device:canShareText(),
|
|
}
|
|
|
|
local function format(booknotes)
|
|
local wide_space = "\227\128\128"
|
|
local content = ""
|
|
if booknotes.title then
|
|
content = content .. wide_space .. booknotes.title .. "\n" .. wide_space .. "\n"
|
|
end
|
|
for ___, entry in ipairs(booknotes) do
|
|
for ____, clipping in ipairs(entry) do
|
|
if clipping.chapter then
|
|
content = content .. wide_space .. clipping.chapter .. "\n" .. wide_space .. "\n"
|
|
end
|
|
local text = T(_("-- Page: %1, added on %2\n"), clipping.page, os.date("%c", clipping.time))
|
|
content = content .. wide_space .. wide_space .. text
|
|
if clipping.text then
|
|
content = content .. clipping.text
|
|
end
|
|
if clipping.note then
|
|
content = content .. "\n---\n" .. clipping.note
|
|
end
|
|
if clipping.image then
|
|
content = content .. _("<An image>")
|
|
end
|
|
content = content .. "\n-=-=-=-=-=-\n"
|
|
end
|
|
end
|
|
content = content .. "\n"
|
|
return content
|
|
end
|
|
|
|
function TextExporter:export(t)
|
|
-- Use wide_space to avoid crengine to treat it specially.
|
|
|
|
local path = self:getFilePath(t)
|
|
local file = io.open(path, "a")
|
|
if not file then return false end
|
|
for __, booknotes in ipairs(t) do
|
|
local content = format(booknotes)
|
|
file:write(content)
|
|
end
|
|
file:close()
|
|
return true
|
|
end
|
|
|
|
function TextExporter:share(t)
|
|
local content = format(t)
|
|
Device:doShareText(content)
|
|
end
|
|
|
|
return TextExporter
|