2023-03-24 00:56:36 +08:00
|
|
|
local Trans = require 'Trans'
|
2023-03-12 15:18:27 +08:00
|
|
|
|
2023-03-14 18:17:07 +08:00
|
|
|
|
|
|
|
---@class TransBackend
|
2023-03-14 22:30:25 +08:00
|
|
|
---@field no_wait? boolean whether need to wait for the result
|
2023-03-15 22:12:44 +08:00
|
|
|
---@field all_name string[] @all backend name
|
2023-03-14 22:30:25 +08:00
|
|
|
---@field name string @backend name
|
2023-03-25 09:41:06 +08:00
|
|
|
---@field name_zh string @backend name in Chinese
|
2023-03-14 18:17:07 +08:00
|
|
|
|
2023-03-18 21:31:14 +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
|
2023-03-12 15:18:27 +08:00
|
|
|
--- INFO :Parse online engine keys config file
|
2023-03-12 20:09:08 +08:00
|
|
|
local path = conf.dir .. '/Trans.json'
|
2023-03-24 00:56:36 +08:00
|
|
|
local file = io.open(path, 'r')
|
2023-03-12 15:18:27 +08:00
|
|
|
|
2023-03-22 21:55:08 +08:00
|
|
|
|
|
|
|
local user_conf = {}
|
2023-03-12 15:18:27 +08:00
|
|
|
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
|
2023-03-12 15:18:27 +08:00
|
|
|
file:close()
|
2023-03-12 21:33:00 +08:00
|
|
|
end
|
2023-03-12 15:18:27 +08:00
|
|
|
|
2023-03-18 21:56:12 +08:00
|
|
|
|
2023-03-15 22:27:30 +08:00
|
|
|
local all_name = {}
|
2023-03-23 14:56:48 +08:00
|
|
|
for _, config in ipairs(user_conf) do
|
|
|
|
if not config.disable then
|
|
|
|
all_name[#all_name + 1] = config.name
|
|
|
|
user_conf[config.name] = config
|
2023-03-15 22:27:30 +08:00
|
|
|
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
|
2023-03-15 22:12:44 +08:00
|
|
|
return setmetatable({
|
2023-03-18 21:31:14 +08:00
|
|
|
all_name = all_name,
|
2023-03-15 22:12:44 +08:00
|
|
|
}, {
|
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
|
2023-03-12 15:18:27 +08:00
|
|
|
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
|
|
|
})
|