2
0
mirror of https://github.com/koreader/koreader synced 2024-11-11 19:11:14 +00:00
koreader/plugins/exporter.koplugin/target/flomo.lua

131 lines
4.5 KiB
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

local InputDialog = require("ui/widget/inputdialog")
local UIManager = require("ui/uimanager")
local http = require("socket.http")
local json = require("json")
local logger = require("logger")
local ltn12 = require("ltn12")
local socket = require("socket")
local socketutil = require("socketutil")
local _ = require("gettext")
-- readwise exporter
local FlomoExporter = require("base"):new {
name = "flomo",
is_remote = true,
}
local function makeRequest(method, request_body, api)
local sink = {}
local request_body_json = json.encode(request_body)
local source = ltn12.source.string(request_body_json)
socketutil:set_timeout(socketutil.LARGE_BLOCK_TIMEOUT, socketutil.LARGE_TOTAL_TIMEOUT)
local request = {
url = api,
method = method,
sink = ltn12.sink.table(sink),
source = source,
headers = {
["Content-Type"] = "application/json"
},
}
local code, headers, status = socket.skip(1, http.request(request))
socketutil:reset_timeout()
if code ~= 200 then
logger.warn("Flomo: HTTP response code <> 200. Response status:", status or code or "network unreachable")
logger.dbg("Response headers:", headers)
return nil, status
end
local response = json.decode(sink[1])
return response
end
function FlomoExporter:isReadyToExport()
if self.settings.api then return true end
return false
end
function FlomoExporter:getMenuTable()
return {
-- @translators Flomo is a note taking app. The name probably doesn't need to be translated.
text = _("Flomo"),
checked_func = function() return self:isEnabled() end,
sub_item_table = {
{
text = _("Set Flomo API URL"),
keep_menu_open = true,
callback = function()
local auth_dialog
auth_dialog = InputDialog:new {
title = _("Set API URL for Flomo"),
input = self.settings.api,
buttons = {
{
{
text = _("Cancel"),
id = "close",
callback = function()
UIManager:close(auth_dialog)
end
},
{
text = _("Set API URL"),
callback = function()
self.settings.api = auth_dialog:getInputText()
self:saveSettings()
UIManager:close(auth_dialog)
end
}
}
}
}
UIManager:show(auth_dialog)
auth_dialog:onShowKeyboard()
end
},
{
text = _("Export to Flomo"),
checked_func = function() return self:isEnabled() end,
callback = function() self:toggleEnabled() end,
},
}
}
end
function FlomoExporter:createHighlights(booknotes)
local number = 0
local error_number = 0
for _, chapter in ipairs(booknotes) do
for _, clipping in ipairs(chapter) do
local highlight = clipping.text .. "\n\n"
if clipping.note then
highlight = highlight .. clipping.note .. "\n\n"
end
highlight = highlight .. booknotes.title .. " (page: " .. clipping.page .. "\n\n #" .. booknotes.title .. " #koreader"
local result, err = makeRequest("POST", { content = highlight }, self.settings.api)
if not result then
logger.warn("error creating highlights", err)
error_number = error_number + 1
end
number = number + 1
end
end
local success_number = number - error_number
logger.dbg("createHighlights success number: " .. success_number .. " createHighlights error number: " .. error_number)
return true
end
function FlomoExporter:export(t)
if not self:isReadyToExport() then return false end
for _, booknotes in ipairs(t) do
local ok = self:createHighlights(booknotes)
if not ok then return false end
end
return true
end
return FlomoExporter