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

61 lines
1.5 KiB
Lua
Raw Normal View History

2023-03-24 00:56:36 +08:00
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'
2023-03-24 00:56:36 +08:00
local file = io.open(path, 'r')
2023-03-22 21:55:08 +08:00
local user_conf = {}
if file then
2023-03-24 00:56:36 +08:00
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 = {}
for _, config in ipairs(user_conf) do
if not config.disable then
all_name[#all_name + 1] = config.name
user_conf[config.name] = config
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
2023-03-24 00:56:36 +08:00
end,
2023-03-12 21:33:00 +08:00
})