feat: add free backend iciba.lua and try to use template method for querying backend data
This commit is contained in:
parent
46c69fb758
commit
b2cafe3448
85
lua/Trans/backend/iciba.lua
Normal file
85
lua/Trans/backend/iciba.lua
Normal file
@ -0,0 +1,85 @@
|
||||
---@class iCiba: TransBackend
|
||||
---@field uri string api uri
|
||||
---@field salt string
|
||||
---@field app_id string
|
||||
---@field app_passwd string
|
||||
---@field disable boolean
|
||||
local M = {
|
||||
uri = 'https://dict-mobile.iciba.com/interface/index.php',
|
||||
name = 'iciba',
|
||||
}
|
||||
|
||||
---@class iCibaQuery
|
||||
---@field q string
|
||||
---@field from string
|
||||
---@field to string
|
||||
---@field appid string
|
||||
---@field salt string
|
||||
---@field sign string
|
||||
function M.get_content(data)
|
||||
return {
|
||||
word = data.str,
|
||||
is_need_mean = '1',
|
||||
m = 'getsuggest',
|
||||
c = 'word',
|
||||
}
|
||||
end
|
||||
|
||||
---@overload fun(TransData): TransResult
|
||||
function M.query(data)
|
||||
local handle = function(res)
|
||||
local status, body = pcall(vim.json.decode, res.body)
|
||||
vim.print(body)
|
||||
|
||||
if true and not status or not body or body.errorCode ~= "0" then
|
||||
data.result.iciba = false
|
||||
data[#data + 1] = res
|
||||
return
|
||||
end
|
||||
|
||||
-- if not body.isWord then
|
||||
-- data.result.youdao = {
|
||||
-- title = body.query,
|
||||
-- [data.from == 'en' and 'translation' or 'definition'] = body.translation,
|
||||
-- }
|
||||
-- return
|
||||
-- end
|
||||
|
||||
-- local tmp = {
|
||||
-- title = {
|
||||
-- word = body.query,
|
||||
-- phonetic = body.basic.phonetic,
|
||||
-- },
|
||||
-- web = body.web,
|
||||
-- explains = body.basic.explains,
|
||||
-- -- phrases = body.phrases,
|
||||
-- -- synonyms = body.synonyms,
|
||||
-- -- sentenceSample = body.sentenceSample,
|
||||
|
||||
|
||||
-- [data.from == 'en' and 'translation' or 'definition'] = body.translation,
|
||||
-- }
|
||||
-- data.result.iciba = tmp
|
||||
end
|
||||
|
||||
require('Trans').curl.get(M.uri, {
|
||||
query = M.get_content(data),
|
||||
callback = handle,
|
||||
})
|
||||
end
|
||||
|
||||
-- {
|
||||
-- message = { {
|
||||
-- key = "测试",
|
||||
-- means = { {
|
||||
-- means = { "test", "testing", "checkout", "measurement " },
|
||||
-- part = ""
|
||||
-- } },
|
||||
-- paraphrase = "test;testing;measurement ;checkout",
|
||||
-- value = 0
|
||||
-- } },
|
||||
-- status = 1
|
||||
-- }
|
||||
|
||||
|
||||
return M
|
@ -52,6 +52,7 @@ function M.get_content(data)
|
||||
}
|
||||
end
|
||||
|
||||
local function check_untracked_field(body)
|
||||
local field = {
|
||||
"phonetic",
|
||||
'usPhonetic',
|
||||
@ -79,6 +80,13 @@ local field = {
|
||||
"wfs", -- text 单词形式变化
|
||||
"exam_type", -- text 考试类型
|
||||
}
|
||||
for _, f in ipairs(field) do
|
||||
if body[f] then
|
||||
print(('%s found : %s'):format(f, vim.inspect(body[f])))
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
|
||||
|
||||
@ -126,14 +134,6 @@ function M.query(data)
|
||||
local handle = function(res)
|
||||
local status, body = pcall(vim.json.decode, res.body)
|
||||
-- vim.print(body)
|
||||
if body then
|
||||
for _, f in ipairs(field) do
|
||||
if body[f] then
|
||||
print(('%s found : %s'):format(f, vim.inspect(body[f])))
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
if not status or not body or body.errorCode ~= "0" then
|
||||
if not require('Trans').conf.debug then M.debug(body) end
|
||||
data.result.youdao = false
|
||||
@ -141,6 +141,8 @@ function M.query(data)
|
||||
return
|
||||
end
|
||||
|
||||
check_untracked_field(body)
|
||||
|
||||
if not body.isWord then
|
||||
data.result.youdao = {
|
||||
title = body.query,
|
||||
|
@ -13,6 +13,64 @@ local function init_opts(opts)
|
||||
end
|
||||
|
||||
|
||||
local function do_query(data, backend)
|
||||
-- TODO : template method for online query
|
||||
local name = backend.name
|
||||
local uri = backend.uti
|
||||
local method = backend.method
|
||||
local formatter = backend.formatter
|
||||
local query = backend.get_query(data)
|
||||
|
||||
local header
|
||||
if backend.header then
|
||||
if type(backend.header) == "function" then
|
||||
header = backend.header(data)
|
||||
else
|
||||
header = backend.header
|
||||
end
|
||||
end
|
||||
|
||||
local function handle(output)
|
||||
local status, body = pcall(vim.json.decode, output.body)
|
||||
-- -- vim.print(body)
|
||||
if not status or not body or body.errorCode ~= "0" then
|
||||
if not Trans.conf.debug then backend.debug(body) end
|
||||
data.result[name] = false
|
||||
data[#data + 1] = output
|
||||
return
|
||||
end
|
||||
-- check_untracked_field(body)
|
||||
-- if not body.isWord then
|
||||
-- data.result.youdao = {
|
||||
-- title = body.query,
|
||||
-- [data.from == 'en' and 'translation' or 'definition'] = body.translation,
|
||||
-- }
|
||||
-- return
|
||||
-- end
|
||||
-- local tmp = {
|
||||
-- title = {
|
||||
-- word = body.query,
|
||||
-- phonetic = body.basic.phonetic,
|
||||
-- },
|
||||
-- web = body.web,
|
||||
-- explains = body.basic.explains,
|
||||
-- -- phrases = body.phrases,
|
||||
-- -- synonyms = body.synonyms,
|
||||
-- -- sentenceSample = body.sentenceSample,
|
||||
-- [data.from == 'en' and 'translation' or 'definition'] = body.translation,
|
||||
-- }
|
||||
data.result[name] = formatter and formatter(output) or output
|
||||
end
|
||||
|
||||
Trans.curl[method](uri, {
|
||||
query = query,
|
||||
callback = handle,
|
||||
header = header,
|
||||
})
|
||||
-- Hook ?
|
||||
end
|
||||
|
||||
|
||||
---@type table<string, fun(data: TransData): true | nil>
|
||||
local strategy = {
|
||||
fallback = function(data)
|
||||
@ -38,6 +96,7 @@ local strategy = {
|
||||
}
|
||||
|
||||
|
||||
|
||||
-- HACK : Core process logic
|
||||
local function process(opts)
|
||||
opts = init_opts(opts)
|
||||
@ -55,7 +114,6 @@ local function process(opts)
|
||||
if strategy[Trans.conf.query](data) then
|
||||
Trans.cache[data.str] = data
|
||||
data.frontend:process(data)
|
||||
|
||||
else
|
||||
data.frontend:fallback()
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user