Trans.nvim/lua/Trans/core/install.lua

57 lines
1.7 KiB
Lua
Raw Normal View History

2023-03-14 18:17:07 +08:00
---@class Trans
---@field install fun() Download database and tts dependencies
return function()
2023-03-24 00:56:36 +08:00
local Trans = require 'Trans'
-- INFO :Check ultimate.db exists
local dir = Trans.conf.dir
local path = dir .. 'ultimate.db'
2023-03-16 19:25:08 +08:00
2023-03-14 18:17:07 +08:00
local fn = vim.fn
2023-03-16 19:25:08 +08:00
if fn.isdirectory(dir) == 0 then
fn.mkdir(dir, 'p')
end
2023-03-14 18:17:07 +08:00
if fn.filereadable(path) == 1 then
vim.notify('Database already exists', vim.log.WARN)
return
end
2023-03-16 19:25:08 +08:00
vim.notify('Trying to download database', vim.log.INFO)
-- INFO :Download ultimate.db
local uri = 'https://github.com/skywind3000/ECDICT-ultimate/releases/download/1.0.0/ecdict-ultimate-sqlite.zip'
local zip = dir .. 'ultimate.zip'
2023-03-16 19:25:08 +08:00
if fn.filereadable(zip) then os.remove(zip) end
local handle = function(output)
2023-03-16 19:25:08 +08:00
if output.exit == 0 and fn.filereadable(zip) then
2023-03-24 00:56:36 +08:00
if fn.executable 'unzip' == 0 then
2023-03-16 19:25:08 +08:00
vim.notify('unzip not found, Please unzip ' .. zip .. 'manually', vim.log.ERROR)
return
end
2023-03-16 19:25:08 +08:00
local cmd = string.format('unzip %s -d %s', zip, dir)
local status = os.execute(cmd)
2023-03-16 19:25:08 +08:00
os.remove(zip)
if status == 0 then
vim.notify('Download database successfully', vim.log.INFO)
return
end
end
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-03-16 19:25:08 +08:00
output = zip,
callback = handle,
})
-- INFO : Install tts dependencies
2023-03-24 00:56:36 +08:00
if fn.has 'linux' == 0 and fn.has 'mac' == 0 then
os.execute 'cd ./tts && npm install'
end
end