Trans.nvim/lua/Trans/health.lua

100 lines
2.7 KiB
Lua
Raw Normal View History

2023-03-24 00:56:36 +08:00
local Trans = require 'Trans'
2023-03-16 22:59:42 +08:00
local health, fn = vim.health, vim.fn
2023-03-18 13:53:09 +08:00
2023-07-13 10:15:38 +08:00
local ok = health.ok or health.report_ok
local warn = health.warn or health.report_warn
local error = health.error or health.report_error
2023-03-16 22:59:42 +08:00
local has = fn.has
local executable = fn.executable
2023-03-07 21:52:29 +08:00
local function check_neovim_version()
2023-03-24 00:56:36 +08:00
if has 'nvim-0.9' == 1 then
ok [[You have [neovim-0.9] ]]
2023-03-07 21:52:29 +08:00
else
2023-03-24 00:56:36 +08:00
warn [[Trans Title requires Neovim 0.9 or newer
See neovim-nightly: [https://github.com/neovim/neovim/releases/tag/nightly]
2023-03-24 00:56:36 +08:00
]]
2023-03-07 21:52:29 +08:00
end
end
2023-03-07 21:52:29 +08:00
local function check_plugin_dependencies()
local plugin_dependencies = {
-- 'plenary',
2023-03-24 00:56:36 +08:00
'sqlite',
}
for _, dep in ipairs(plugin_dependencies) do
if pcall(require, dep) then
2023-03-24 00:56:36 +08:00
ok(string.format('Dependency [%s] is installed', dep))
else
2023-03-24 00:56:36 +08:00
error(string.format('Dependency [%s] is not installed', dep))
end
2023-03-07 21:52:29 +08:00
end
end
local function check_binary_dependencies()
local binary_dependencies = {
2023-03-24 00:56:36 +08:00
'curl',
'sqlite3',
}
2023-04-02 11:01:37 +08:00
binary_dependencies[3] = ({
win = 'node',
mac = 'say',
linux = 'festival',
termux = 'termux-tts-speak',
2023-04-02 11:01:37 +08:00
})[Trans.system]
2023-03-07 21:52:29 +08:00
for _, dep in ipairs(binary_dependencies) do
if executable(dep) == 1 then
2023-03-24 00:56:36 +08:00
ok(string.format('Binary dependency [%s] is installed', dep))
else
2023-03-24 00:56:36 +08:00
error(string.format('Binary dependency [%s] is not installed', dep))
end
end
end
2023-03-07 21:52:29 +08:00
local function check_database()
2023-03-24 00:56:36 +08:00
local db_path = Trans.conf.dir .. Trans.separator .. 'ultimate.db'
2023-03-16 22:59:42 +08:00
if fn.filereadable(db_path) == 1 then
2023-03-24 00:56:36 +08:00
ok [[ultimate database found ]]
2023-03-07 21:52:29 +08:00
else
2023-03-24 00:56:36 +08:00
error [[Stardict database not found
[Manually]: Please check the doc in github: [https://github.com/JuanZoran/Trans.nvim]
[Automatically]: Try to run `:lua require "Trans".install()`
2023-03-24 00:56:36 +08:00
]]
2023-03-09 19:42:41 +08:00
end
end
2023-03-09 19:42:41 +08:00
local function check_configure_file()
2023-03-24 00:56:36 +08:00
local path = fn.expand(Trans.conf.dir .. Trans.separator .. 'Trans.json')
2023-03-16 22:59:42 +08:00
if not fn.filereadable(path) then
2023-03-24 00:56:36 +08:00
warn 'Backend configuration file[%s] not found'
2023-03-16 22:59:42 +08:00
end
2023-03-24 00:56:36 +08:00
local file = io.open(path, 'r')
local valid = file and pcall(vim.json.decode, file:read '*a')
2023-03-09 19:42:41 +08:00
if valid then
2023-03-16 22:59:42 +08:00
ok(string.format([[Backend configuration file [%s] found and valid ]], path))
2023-03-09 19:42:41 +08:00
else
2023-03-18 13:53:09 +08:00
error(string.format(
[[Backend configuration file [%s] invalid
Please check the doc in github: [https://github.com/JuanZoran/Trans.nvim]
2023-03-18 13:53:09 +08:00
]],
path
))
2023-03-07 21:52:29 +08:00
end
end
local function check()
2023-03-11 11:32:13 +08:00
check_database()
check_neovim_version()
2023-03-11 11:32:13 +08:00
check_configure_file()
check_plugin_dependencies()
check_binary_dependencies()
end
2023-03-18 13:53:09 +08:00
return { check = check }