79 lines
1.9 KiB
Lua
Raw Normal View History

2023-03-13 19:50:28 +08:00
local Trans = require('Trans')
2023-03-14 18:17:07 +08:00
---@class TransData
---@field from string @Source language type
---@field to string @Target language type
---@field is_word boolean @Is the str a word
---@field str string @The original string
---@field mode string @The mode of the str
---@field result table<string, TransResult> @The result of the translation
---@field frontend TransFrontend
---@field backends table<string, TransBackend>
2023-03-13 19:50:28 +08:00
local M = {}
M.__index = M
2023-03-14 18:17:07 +08:00
---TransData constructor
---@param opts table
2023-03-14 18:17:07 +08:00
---@return TransData
2023-03-13 19:50:28 +08:00
function M.new(opts)
local mode = opts.mode
local str = opts.str
local strategy = Trans.conf.strategy[mode]
2023-03-14 18:17:07 +08:00
local data = setmetatable({
2023-03-13 19:50:28 +08:00
str = str,
mode = mode,
result = {},
2023-03-14 18:17:07 +08:00
}, M)
2023-03-13 19:50:28 +08:00
2023-03-14 18:17:07 +08:00
data.frontend = Trans.frontend[strategy.frontend].new()
data.backends = {}
2023-03-13 19:50:28 +08:00
for i, name in ipairs(strategy.backend) do
2023-03-14 18:17:07 +08:00
data.backends[i] = Trans.backend[name]
2023-03-13 19:50:28 +08:00
end
if Trans.util.is_English(str) then
data.from = 'en'
data.to = 'zh'
else
data.from = 'zh'
data.to = 'en'
end
-- FIXME : Check if the str is a word
data.is_word = true
2023-03-14 18:17:07 +08:00
return data
2023-03-13 19:50:28 +08:00
end
2023-03-14 18:17:07 +08:00
---@class TransResult
---@field title table | string @table: {word, phonetic, oxford, collins}
---@field tag string[]? @array of tags
---@field pos table<string, string>? @table: {name, value}
---@field exchange table<string, string>? @table: {name, value}
---@field definition? string[]? @array of definitions
---@field translation? string[]? @array of translations
2023-03-14 13:18:53 +08:00
---Get the first available result [return nil if no result]
2023-03-14 18:17:07 +08:00
---@return TransResult?
2023-03-14 13:18:53 +08:00
function M:get_available_result()
local result = self.result
2023-03-14 18:17:07 +08:00
local backend = self.backends
2023-03-14 13:18:53 +08:00
for _, name in ipairs(backend) do
if result[name] then
return result[name]
end
end
end
2023-03-14 18:17:07 +08:00
---@class Trans
---@field data TransData
2023-03-13 19:50:28 +08:00
return M