2023-03-14 18:17:07 +08:00
|
|
|
---@class Trans
|
|
|
|
---@field install fun() Download database and tts dependencies
|
2023-03-10 09:15:53 +08:00
|
|
|
return function()
|
2023-03-24 00:56:36 +08:00
|
|
|
local Trans = require 'Trans'
|
2023-03-24 16:49:29 +08:00
|
|
|
local fn = vim.fn
|
2023-03-10 11:23:22 +08:00
|
|
|
-- INFO :Check ultimate.db exists
|
2023-03-12 11:23:29 +08:00
|
|
|
local dir = Trans.conf.dir
|
2024-02-13 13:37:19 +08:00
|
|
|
local path = dir .. '/ultimate.db'
|
2023-03-16 19:25:08 +08:00
|
|
|
|
|
|
|
if fn.isdirectory(dir) == 0 then
|
|
|
|
fn.mkdir(dir, 'p')
|
|
|
|
end
|
2023-03-12 11:23:29 +08:00
|
|
|
|
2023-03-14 18:17:07 +08:00
|
|
|
if fn.filereadable(path) == 1 then
|
2023-03-10 09:15:53 +08:00
|
|
|
vim.notify('Database already exists', vim.log.WARN)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
-- INFO :Download ultimate.db
|
|
|
|
local uri = 'https://github.com/skywind3000/ECDICT-ultimate/releases/download/1.0.0/ecdict-ultimate-sqlite.zip'
|
2024-02-13 13:37:19 +08:00
|
|
|
local zip = dir .. '/ultimate.zip'
|
2023-03-24 16:49:29 +08:00
|
|
|
local continue = fn.filereadable(zip) == 1
|
2023-03-10 11:23:22 +08:00
|
|
|
local handle = function(output)
|
2023-03-16 19:25:08 +08:00
|
|
|
if output.exit == 0 and fn.filereadable(zip) then
|
2024-02-13 14:47:36 +08:00
|
|
|
local cmd =
|
|
|
|
Trans.system == 'win' and
|
|
|
|
string.format('powershell.exe -Command "Expand-Archive -Force %s %s"', zip, dir) or
|
|
|
|
fn.executable('unzip') == 1 and string.format('unzip %s -d %s', zip, dir) or
|
|
|
|
error('unzip not found, Please unzip ' .. zip .. ' manually')
|
2023-03-10 11:23:22 +08:00
|
|
|
local status = os.execute(cmd)
|
2023-03-16 19:25:08 +08:00
|
|
|
os.remove(zip)
|
2023-03-10 11:23:22 +08:00
|
|
|
if status == 0 then
|
2023-03-10 09:15:53 +08:00
|
|
|
vim.notify('Download database successfully', vim.log.INFO)
|
|
|
|
return
|
|
|
|
end
|
2023-03-10 11:23:22 +08:00
|
|
|
end
|
2023-03-10 09:15:53 +08:00
|
|
|
|
2023-03-10 11:23:22 +08:00
|
|
|
local debug_message = 'Download database failed:' .. vim.inspect(output)
|
|
|
|
vim.notify(debug_message, vim.log.ERROR)
|
|
|
|
end
|
|
|
|
|
2023-03-13 19:50:28 +08:00
|
|
|
Trans.curl.get(uri, {
|
2023-05-14 11:03:24 +08:00
|
|
|
output = zip,
|
|
|
|
callback = handle,
|
|
|
|
extra = continue and { '-C', '-' } or nil,
|
2023-03-10 09:15:53 +08:00
|
|
|
})
|
|
|
|
|
2023-03-24 16:49:29 +08:00
|
|
|
local message = continue and 'Continue download database' or 'Begin to download database'
|
|
|
|
vim.notify(message, vim.log.levels.INFO)
|
2023-03-10 09:15:53 +08:00
|
|
|
end
|