2023-03-24 00:56:36 +08:00
|
|
|
local Trans = require 'Trans'
|
2023-03-11 00:24:48 +08:00
|
|
|
local util = Trans.util
|
2023-03-09 19:42:41 +08:00
|
|
|
|
2023-03-12 21:33:00 +08:00
|
|
|
local function init_opts(opts)
|
2023-03-09 19:42:41 +08:00
|
|
|
opts = opts or {}
|
2023-03-22 23:09:09 +08:00
|
|
|
opts.mode = opts.mode or vim.fn.mode()
|
2023-03-12 21:33:00 +08:00
|
|
|
opts.str = util.get_str(opts.mode)
|
|
|
|
return opts
|
|
|
|
end
|
|
|
|
|
2023-03-13 21:41:17 +08:00
|
|
|
|
2023-03-18 21:31:14 +08:00
|
|
|
---To Do Online Query
|
|
|
|
---@param data TransData @data
|
|
|
|
---@param backend TransOnlineBackend @backend
|
2023-03-18 18:20:01 +08:00
|
|
|
local function do_query(data, backend)
|
|
|
|
-- TODO : template method for online query
|
|
|
|
local name = backend.name
|
2023-03-18 21:31:14 +08:00
|
|
|
local uri = backend.uri
|
2023-03-18 18:20:01 +08:00
|
|
|
local method = backend.method
|
|
|
|
local formatter = backend.formatter
|
|
|
|
local query = backend.get_query(data)
|
2023-03-24 00:56:36 +08:00
|
|
|
local header = type(backend.header) == 'function' and backend.header(data) or backend.header
|
2023-03-18 18:20:01 +08:00
|
|
|
|
|
|
|
local function handle(output)
|
|
|
|
local status, body = pcall(vim.json.decode, output.body)
|
2023-03-18 21:31:14 +08:00
|
|
|
if not status or not body then
|
|
|
|
if not Trans.conf.debug then
|
|
|
|
backend.debug(body)
|
|
|
|
data.trace[name] = output
|
|
|
|
end
|
|
|
|
|
2023-03-18 18:20:01 +08:00
|
|
|
data.result[name] = false
|
|
|
|
return
|
|
|
|
end
|
2023-03-18 21:31:14 +08:00
|
|
|
|
|
|
|
-- vim.print(data.result[name])
|
|
|
|
data.result[name] = formatter(body, data)
|
2023-03-18 18:20:01 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
Trans.curl[method](uri, {
|
|
|
|
query = query,
|
|
|
|
callback = handle,
|
|
|
|
header = header,
|
|
|
|
})
|
|
|
|
-- Hook ?
|
|
|
|
end
|
|
|
|
|
2023-03-18 21:56:12 +08:00
|
|
|
---@type table<string, fun(data: TransData):boolean>
|
2023-03-15 20:57:28 +08:00
|
|
|
local strategy = {
|
2023-03-16 11:49:26 +08:00
|
|
|
fallback = function(data)
|
2023-03-15 20:57:28 +08:00
|
|
|
local result = data.result
|
2023-03-16 11:49:26 +08:00
|
|
|
Trans.backend.offline.query(data)
|
2023-03-15 22:12:44 +08:00
|
|
|
|
2023-03-18 21:56:12 +08:00
|
|
|
if result.offline then return true end
|
2023-03-16 11:49:26 +08:00
|
|
|
|
|
|
|
local update = data.frontend:wait()
|
2023-03-15 20:57:28 +08:00
|
|
|
for _, backend in ipairs(data.backends) do
|
2023-03-18 21:31:14 +08:00
|
|
|
do_query(data, backend)
|
2023-03-19 20:15:36 +08:00
|
|
|
|
2023-03-18 21:56:12 +08:00
|
|
|
local name = backend.name
|
2023-03-15 20:57:28 +08:00
|
|
|
---@cast backend TransBackend
|
2023-04-07 19:05:24 +08:00
|
|
|
while result[name] == nil and update(backend) do
|
2023-03-15 20:57:28 +08:00
|
|
|
end
|
|
|
|
|
2023-03-18 21:56:12 +08:00
|
|
|
if result[name] then return true end
|
2023-03-13 21:41:17 +08:00
|
|
|
end
|
2023-03-18 21:56:12 +08:00
|
|
|
|
|
|
|
return false
|
2023-03-16 00:03:13 +08:00
|
|
|
end,
|
|
|
|
--- TODO :More Strategys
|
2023-03-15 20:57:28 +08:00
|
|
|
}
|
2023-03-11 11:32:13 +08:00
|
|
|
|
2023-03-12 21:33:00 +08:00
|
|
|
|
2023-03-11 11:32:13 +08:00
|
|
|
-- HACK : Core process logic
|
2023-03-11 00:24:48 +08:00
|
|
|
local function process(opts)
|
2023-03-12 21:33:00 +08:00
|
|
|
opts = init_opts(opts)
|
|
|
|
local str = opts.str
|
|
|
|
if not str or str == '' then return end
|
|
|
|
|
2023-03-23 17:31:02 +08:00
|
|
|
|
2023-03-12 21:33:00 +08:00
|
|
|
-- Find in cache
|
|
|
|
if Trans.cache[str] then
|
2023-03-12 22:12:33 +08:00
|
|
|
local data = Trans.cache[str]
|
2023-03-16 11:49:26 +08:00
|
|
|
data.frontend:process(data)
|
|
|
|
return
|
2023-03-12 21:33:00 +08:00
|
|
|
end
|
2023-03-11 00:24:48 +08:00
|
|
|
|
2023-03-13 19:50:28 +08:00
|
|
|
local data = Trans.data.new(opts)
|
2023-03-23 17:31:02 +08:00
|
|
|
if strategy[data.frontend.opts.query](data) then
|
2023-03-16 11:49:26 +08:00
|
|
|
Trans.cache[data.str] = data
|
2023-03-16 16:07:44 +08:00
|
|
|
data.frontend:process(data)
|
|
|
|
else
|
|
|
|
data.frontend:fallback()
|
|
|
|
end
|
2023-03-09 19:42:41 +08:00
|
|
|
end
|
|
|
|
|
2023-03-14 18:17:07 +08:00
|
|
|
|
|
|
|
---@class Trans
|
2023-03-15 11:34:50 +08:00
|
|
|
---@field translate fun(opts: { frontend: string?, mode: string?}?) Translate string core function
|
2023-03-14 18:17:07 +08:00
|
|
|
return function(opts)
|
|
|
|
coroutine.wrap(process)(opts)
|
|
|
|
end
|