mirror of
https://github.com/koreader/koreader
synced 2024-11-10 01:10:34 +00:00
17129915f9
Follow-up to https://github.com/koreader/koreader/pull/7328
166 lines
5.2 KiB
Lua
166 lines
5.2 KiB
Lua
local DocumentRegistry = require("document/documentregistry")
|
|
local JSON = require("json")
|
|
local http = require("socket.http")
|
|
local ltn12 = require("ltn12")
|
|
local socket = require("socket")
|
|
local socketutil = require("socketutil")
|
|
local _ = require("gettext")
|
|
|
|
local DropBoxApi = {
|
|
}
|
|
|
|
local API_URL_INFO = "https://api.dropboxapi.com/2/users/get_current_account"
|
|
local API_LIST_FOLDER = "https://api.dropboxapi.com/2/files/list_folder"
|
|
local API_DOWNLOAD_FILE = "https://content.dropboxapi.com/2/files/download"
|
|
|
|
function DropBoxApi:fetchInfo(token)
|
|
local sink = {}
|
|
socketutil:set_timeout()
|
|
local request = {
|
|
url = API_URL_INFO,
|
|
method = "POST",
|
|
headers = {
|
|
["Authorization"] = "Bearer " .. token,
|
|
},
|
|
sink = ltn12.sink.table(sink),
|
|
}
|
|
local headers_request = socket.skip(1, http.request(request))
|
|
socketutil:reset_timeout()
|
|
local result_response = table.concat(sink)
|
|
if headers_request == nil then
|
|
return nil
|
|
end
|
|
if result_response ~= "" then
|
|
local _, result = pcall(JSON.decode, result_response)
|
|
return result
|
|
else
|
|
return nil
|
|
end
|
|
end
|
|
|
|
function DropBoxApi:fetchListFolders(path, token)
|
|
if path == nil or path == "/" then path = "" end
|
|
local data = "{\"path\": \"" .. path .. "\",\"recursive\": false,\"include_media_info\": false,"..
|
|
"\"include_deleted\": false,\"include_has_explicit_shared_members\": false}"
|
|
local sink = {}
|
|
socketutil:set_timeout()
|
|
local request = {
|
|
url = API_LIST_FOLDER,
|
|
method = "POST",
|
|
headers = {
|
|
["Authorization"] = "Bearer ".. token,
|
|
["Content-Type"] = "application/json",
|
|
["Content-Length"] = #data,
|
|
},
|
|
source = ltn12.source.string(data),
|
|
sink = ltn12.sink.table(sink),
|
|
}
|
|
local headers_request = socket.skip(1, http.request(request))
|
|
socketutil:reset_timeout()
|
|
if headers_request == nil then
|
|
return nil
|
|
end
|
|
local result_response = table.concat(sink)
|
|
if result_response ~= "" then
|
|
local ret, result = pcall(JSON.decode, result_response)
|
|
if ret then
|
|
return result
|
|
else
|
|
return nil
|
|
end
|
|
else
|
|
return nil
|
|
end
|
|
end
|
|
|
|
function DropBoxApi:downloadFile(path, token, local_path)
|
|
local data1 = "{\"path\": \"" .. path .. "\"}"
|
|
socketutil:set_timeout(socketutil.FILE_BLOCK_TIMEOUT, socketutil.FILE_TOTAL_TIMEOUT)
|
|
local code_return = socket.skip(1, http.request{
|
|
url = API_DOWNLOAD_FILE,
|
|
method = "GET",
|
|
headers = {
|
|
["Authorization"] = "Bearer ".. token,
|
|
["Dropbox-API-Arg"] = data1,
|
|
},
|
|
sink = ltn12.sink.file(io.open(local_path, "w")),
|
|
})
|
|
socketutil:reset_timeout()
|
|
return code_return
|
|
end
|
|
|
|
-- folder_mode - set to true when we want to see only folder.
|
|
-- We see also extra folder "Long-press to select current directory" at the beginning.
|
|
function DropBoxApi:listFolder(path, token, folder_mode)
|
|
local dropbox_list = {}
|
|
local dropbox_file = {}
|
|
local tag, text
|
|
local ls_dropbox = self:fetchListFolders(path, token)
|
|
if ls_dropbox == nil or ls_dropbox.entries == nil then return false end
|
|
for _, files in ipairs(ls_dropbox.entries) do
|
|
text = files.name
|
|
tag = files[".tag"]
|
|
if tag == "folder" then
|
|
text = text .. "/"
|
|
if folder_mode then tag = "folder_long_press" end
|
|
table.insert(dropbox_list, {
|
|
text = text,
|
|
url = files.path_display,
|
|
type = tag,
|
|
})
|
|
--show only file with supported formats
|
|
elseif tag == "file" and (DocumentRegistry:hasProvider(text)
|
|
or G_reader_settings:isTrue("show_unsupported")) and not folder_mode then
|
|
table.insert(dropbox_file, {
|
|
text = text,
|
|
url = files.path_display,
|
|
type = tag,
|
|
})
|
|
end
|
|
end
|
|
--sort
|
|
table.sort(dropbox_list, function(v1,v2)
|
|
return v1.text < v2.text
|
|
end)
|
|
table.sort(dropbox_file, function(v1,v2)
|
|
return v1.text < v2.text
|
|
end)
|
|
-- Add special folder.
|
|
if folder_mode then
|
|
table.insert(dropbox_list, 1, {
|
|
text = _("Long-press to select current folder"),
|
|
url = path,
|
|
type = "folder_long_press",
|
|
})
|
|
end
|
|
for _, files in ipairs(dropbox_file) do
|
|
table.insert(dropbox_list, {
|
|
text = files.text,
|
|
url = files.url,
|
|
type = files.type,
|
|
})
|
|
end
|
|
return dropbox_list
|
|
end
|
|
|
|
function DropBoxApi:showFiles(path, token)
|
|
local dropbox_files = {}
|
|
local tag, text
|
|
local ls_dropbox = self:fetchListFolders(path, token)
|
|
if ls_dropbox == nil or ls_dropbox.entries == nil then return false end
|
|
for _, files in ipairs(ls_dropbox.entries) do
|
|
text = files.name
|
|
tag = files[".tag"]
|
|
if tag == "file" and (DocumentRegistry:hasProvider(text) or G_reader_settings:isTrue("show_unsupported")) then
|
|
table.insert(dropbox_files, {
|
|
text = text,
|
|
url = files.path_display,
|
|
size = files.size,
|
|
})
|
|
end
|
|
end
|
|
return dropbox_files
|
|
end
|
|
|
|
return DropBoxApi
|