Trans.nvim/lua/Trans/core/backend.lua

61 lines
1.6 KiB
Lua
Raw Normal View History

local Trans = require('Trans')
2023-03-14 18:17:07 +08:00
---@class TransBackend
---@field no_wait? boolean whether need to wait for the result
---@field all_name string[] @all backend name
---@field name string @backend name
2023-03-14 18:17:07 +08:00
---@class TransOnlineBackend: TransBackend
---@field uri string @request uri
---@field method 'get' | 'post' @request method
---@field formatter fun(body: table, data: TransData): TransResult|false|nil @formatter
---@field get_query fun(data: TransData): table<string, string> @get query
---@field header? table<string, string> | fun(data: TransData): table<string, string> @request header
---@field debug? fun(body: table?) @debug
2023-03-14 18:17:07 +08:00
local conf = Trans.conf
--- INFO :Parse online engine keys config file
local path = conf.dir .. '/Trans.json'
local file = io.open(path, "r")
2023-03-22 21:55:08 +08:00
local user_conf = {}
if file then
local content = file:read("*a")
2023-03-22 21:55:08 +08:00
user_conf = vim.json.decode(content) or user_conf
file:close()
2023-03-12 21:33:00 +08:00
end
2023-03-18 21:56:12 +08:00
local all_name = {}
2023-03-22 21:55:08 +08:00
local backend_order = conf.backend_order or vim.tbl_keys(user_conf)
2023-03-18 21:56:12 +08:00
for _, name in ipairs(backend_order) do
2023-03-22 21:55:08 +08:00
if not user_conf[name].disable and user_conf[name] then
all_name[#all_name + 1] = name
end
end
2023-03-14 18:17:07 +08:00
2023-03-22 21:55:08 +08:00
---@class TransBackends
---@field all_name string[] all backend names
2023-03-14 18:17:07 +08:00
---@class Trans
2023-03-22 21:55:08 +08:00
---@field backend TransBackends
return setmetatable({
all_name = all_name,
}, {
2023-03-12 21:33:00 +08:00
__index = function(self, name)
2023-03-14 18:17:07 +08:00
---@type TransBackend
2023-03-12 21:33:00 +08:00
local backend = require('Trans.backend.' .. name)
2023-03-14 18:17:07 +08:00
2023-03-22 21:55:08 +08:00
for key, value in pairs(user_conf[name] or {}) do
backend[key] = value
end
2023-03-22 21:55:08 +08:00
self[name] = backend
2023-03-12 21:33:00 +08:00
return backend
end
})