fix: when download abort then continue last time

This commit is contained in:
JuanZoran 2023-03-24 16:49:29 +08:00
parent a4dff90064
commit d2f00c8773
4 changed files with 21 additions and 19 deletions

View File

@ -5,7 +5,7 @@
---@class TransConf ---@class TransConf
return { return {
---@type string the directory for database file and password file ---@type string the directory for database file and password file
dir = require 'Trans'.relative_path({ 'extra' }, true), dir = require 'Trans'.plugin_dir,
debug = true, debug = true,
---@type 'default' | 'dracula' | 'tokyonight' global Trans theme [see lua/Trans/style/theme.lua] ---@type 'default' | 'dracula' | 'tokyonight' global Trans theme [see lua/Trans/style/theme.lua]
theme = 'default', -- default | tokyonight | dracula theme = 'default', -- default | tokyonight | dracula

View File

@ -18,18 +18,19 @@ local curl = {}
---Send a GET request use curl ---Send a GET request use curl
---@param uri string uri for request ---@param uri string uri for request
---@param opts ---@param opts
---| { query?: table<string, string>, output?: string, headers?: table<string, string>, callback: fun(result: RequestResult) } ---| { query?: table<string, string>, output?: string, headers?: table<string, string>, callback: fun(result: RequestResult), extra?: string[] }
function curl.get(uri, opts) function curl.get(uri, opts)
local query = opts.query local query = opts.query
local output = opts.output local output = opts.output
local headers = opts.headers local headers = opts.headers
local callback = opts.callback local callback = opts.callback
local extra = opts.extra
-- INFO :Init Curl command with {s}ilent and {G}et -- INFO :Init Curl command with {s}ilent and {G}et
local cmd = { 'curl', '-GLs', uri } local cmd = vim.list_extend({ 'curl', '-GLs', uri }, extra or {})
local size = #cmd local size = #cmd
local function insert(value) local function add(value)
size = size + 1 size = size + 1
cmd[size] = value cmd[size] = value
end end
@ -37,20 +38,20 @@ function curl.get(uri, opts)
-- INFO :Add headers -- INFO :Add headers
if headers then if headers then
for k, v in pairs(headers) do for k, v in pairs(headers) do
insert(('-H %q: %q'):format(k, v)) add(('-H %q: %q'):format(k, v))
end end
end end
-- INFO :Add arguments -- INFO :Add arguments
if query then if query then
for k, v in pairs(query) do for k, v in pairs(query) do
insert(('--data-urlencode %q=%q'):format(k, v)) add(('--data-urlencode %q=%q'):format(k, v))
end end
end end
-- INFO :Store output to file -- INFO :Store output to file
if output then if output then
insert(('-o %q'):format(output)) add(('-o %q'):format(output))
end end
-- INFO : Start a job -- INFO : Start a job

View File

@ -2,11 +2,11 @@
---@field install fun() Download database and tts dependencies ---@field install fun() Download database and tts dependencies
return function() return function()
local Trans = require 'Trans' local Trans = require 'Trans'
local fn = vim.fn
-- INFO :Check ultimate.db exists -- INFO :Check ultimate.db exists
local dir = Trans.conf.dir local dir = Trans.conf.dir
local path = dir .. 'ultimate.db' local path = dir .. 'ultimate.db'
local fn = vim.fn
if fn.isdirectory(dir) == 0 then if fn.isdirectory(dir) == 0 then
fn.mkdir(dir, 'p') fn.mkdir(dir, 'p')
end end
@ -16,14 +16,10 @@ return function()
return return
end end
vim.notify('Trying to download database', vim.log.INFO)
-- INFO :Download ultimate.db -- INFO :Download ultimate.db
local uri = 'https://github.com/skywind3000/ECDICT-ultimate/releases/download/1.0.0/ecdict-ultimate-sqlite.zip' local uri = 'https://github.com/skywind3000/ECDICT-ultimate/releases/download/1.0.0/ecdict-ultimate-sqlite.zip'
local zip = dir .. 'ultimate.zip' local zip = dir .. 'ultimate.zip'
local continue = fn.filereadable(zip) == 1
if fn.filereadable(zip) then os.remove(zip) end
local handle = function(output) local handle = function(output)
if output.exit == 0 and fn.filereadable(zip) then if output.exit == 0 and fn.filereadable(zip) then
if fn.executable 'unzip' == 0 then if fn.executable 'unzip' == 0 then
@ -44,11 +40,16 @@ return function()
vim.notify(debug_message, vim.log.ERROR) vim.notify(debug_message, vim.log.ERROR)
end end
Trans.curl.get(uri, { Trans.curl.get(uri, {
output = zip, output = zip,
callback = handle, callback = handle,
extra = continue and { '-C', '-' } or nil,
}) })
local message = continue and 'Continue download database' or 'Begin to download database'
vim.notify(message, vim.log.levels.INFO)
-- INFO : Install tts dependencies -- INFO : Install tts dependencies
if fn.has 'linux' == 0 and fn.has 'mac' == 0 then if fn.has 'linux' == 0 and fn.has 'mac' == 0 then
os.execute 'cd ./tts && npm install' os.execute 'cd ./tts && npm install'

View File

@ -19,7 +19,7 @@ end
---@field play function @Use tts to play string ---@field play function @Use tts to play string
local separator = vim.loop.os_uname().sysname == 'Windows' and '\\' or '/' local sep = vim.loop.os_uname().sysname == 'Windows' and '\\' or '/'
---@class Trans ---@class Trans
---@field style table @Style module ---@field style table @Style module
---@field cache table<string, TransData> @Cache for translated data object ---@field cache table<string, TransData> @Cache for translated data object
@ -28,8 +28,8 @@ local separator = vim.loop.os_uname().sysname == 'Windows' and '\\' or '/'
local M = metatable('core', { local M = metatable('core', {
cache = {}, cache = {},
style = metatable 'style', style = metatable 'style',
plugin_dir = debug.getinfo(1, 'S').source:sub(2):match('(.-)lua' .. separator .. 'Trans'), plugin_dir = debug.getinfo(1, 'S').source:sub(2):match('(.-)lua' .. sep .. 'Trans'),
separator = separator, separator = sep,
}) })
M.metatable = metatable M.metatable = metatable
@ -39,7 +39,7 @@ M.metatable = metatable
---@param is_dir boolean? ---@param is_dir boolean?
---@return string ---@return string
function M.relative_path(path, is_dir) function M.relative_path(path, is_dir)
return M.plugin_dir .. table.concat(path, separator) .. (is_dir and separator or '') return M.plugin_dir .. table.concat(path, sep) .. (is_dir and sep or '')
end end
return M return M