mirror of
https://github.com/koreader/koreader
synced 2024-11-10 01:10:34 +00:00
incremental exporting of all notes
This commit is contained in:
parent
3b1e05bb7f
commit
6a9adbacca
@ -1,6 +1,7 @@
|
||||
local InputContainer = require("ui/widget/container/inputcontainer")
|
||||
local LoginDialog = require("ui/widget/logindialog")
|
||||
local InfoMessage = require("ui/widget/infomessage")
|
||||
local DocSettings = require("docsettings")
|
||||
local UIManager = require("ui/uimanager")
|
||||
local Screen = require("ui/screen")
|
||||
local Event = require("ui/event")
|
||||
@ -33,6 +34,7 @@ function EvernoteExporter:init()
|
||||
history_dir = "./history",
|
||||
}
|
||||
self.template = slt2.loadfile(self.path.."/note.tpl")
|
||||
self.config = DocSettings:open(self.path)
|
||||
end
|
||||
|
||||
function EvernoteExporter:addToMainMenu(tab_item_table)
|
||||
@ -230,6 +232,24 @@ function EvernoteExporter:exportCurrentNotes(view)
|
||||
self:exportClippings(client, clippings)
|
||||
end
|
||||
|
||||
function EvernoteExporter:updateClippings(clippings, new_clippings)
|
||||
for title, booknotes in pairs(new_clippings) do
|
||||
for chapter_index, chapternotes in ipairs(booknotes) do
|
||||
for note_index, note in ipairs(chapternotes) do
|
||||
if clippings[title] == nil or clippings[title][chapter_index] == nil
|
||||
or clippings[title][chapter_index][note_index] == nil
|
||||
or clippings[title][chapter_index][note_index].page ~= note.page
|
||||
or clippings[title][chapter_index][note_index].time ~= note.time
|
||||
or clippings[title][chapter_index][note_index].text ~= note.text
|
||||
or clippings[title][chapter_index][note_index].note ~= note.note then
|
||||
clippings[title] = booknotes
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
return clippings
|
||||
end
|
||||
|
||||
function EvernoteExporter:exportAllNotes()
|
||||
local EvernoteClient = require("EvernoteClient")
|
||||
local client = EvernoteClient:new{
|
||||
@ -237,10 +257,9 @@ function EvernoteExporter:exportAllNotes()
|
||||
authToken = self.evernote_token,
|
||||
}
|
||||
|
||||
local clippings = self.parser:parseMyClippings()
|
||||
if next(clippings) == nil then
|
||||
clippings = self.parser:parseHistory()
|
||||
end
|
||||
local clippings = self.config:readSetting("clippings") or {}
|
||||
clippings = self:updateClippings(clippings, self.parser:parseMyClippings())
|
||||
clippings = self:updateClippings(clippings, self.parser:parseHistory())
|
||||
-- remove blank entries
|
||||
for title, booknotes in pairs(clippings) do
|
||||
-- chapter number is zero
|
||||
@ -250,14 +269,18 @@ function EvernoteExporter:exportAllNotes()
|
||||
end
|
||||
--DEBUG("clippings", clippings)
|
||||
self:exportClippings(client, clippings)
|
||||
self.config:saveSetting("clippings", clippings)
|
||||
self.config:flush()
|
||||
end
|
||||
|
||||
function EvernoteExporter:exportClippings(client, clippings)
|
||||
local export_count, error_count = 0, 0
|
||||
local export_title, error_title
|
||||
for title, booknotes in pairs(clippings) do
|
||||
local ok, err = pcall(self.exportBooknotes, self, client, title, booknotes)
|
||||
|
||||
-- skip exported booknotes
|
||||
if booknotes.exported ~= true then
|
||||
local ok, err = pcall(self.exportBooknotes, self,
|
||||
client, title, booknotes)
|
||||
-- error reporting
|
||||
if not ok then
|
||||
DEBUG("Error occurs when exporting book:", title, err)
|
||||
@ -267,10 +290,14 @@ function EvernoteExporter:exportClippings(client, clippings)
|
||||
DEBUG("Exported notes in book:", title)
|
||||
export_count = export_count + 1
|
||||
export_title = title
|
||||
booknotes.exported = true
|
||||
end
|
||||
else
|
||||
DEBUG("Skip exporting notes in book:", title)
|
||||
end
|
||||
end
|
||||
|
||||
local msg = ""
|
||||
local msg = "Not exported anything."
|
||||
local all_count = export_count + error_count
|
||||
if export_count > 0 and error_count == 0 then
|
||||
if all_count == 1 then
|
||||
@ -288,7 +315,6 @@ function EvernoteExporter:exportClippings(client, clippings)
|
||||
end
|
||||
end
|
||||
UIManager:show(InfoMessage:new{ text = msg })
|
||||
|
||||
end
|
||||
|
||||
function EvernoteExporter:exportBooknotes(client, title, booknotes)
|
||||
|
Loading…
Reference in New Issue
Block a user