refactor: support async online query engine:baidu
This commit is contained in:
parent
eb6e93c24b
commit
da1f847bd0
@ -1,74 +1,63 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
local baidu = require('Trans').conf.engine.baidu
|
local baidu = require('Trans').conf.engine.baidu
|
||||||
local appid = baidu.appid
|
local app_id = baidu.app_id
|
||||||
local app_passwd = baidu.app_passwd
|
local app_passwd = baidu.app_passwd
|
||||||
local salt = tostring(math.random(bit.lshift(1, 15)))
|
local salt = tostring(math.random(bit.lshift(1, 15)))
|
||||||
local uri = 'https://fanyi-api.baidu.com/api/trans/vip/translate'
|
local uri = 'https://fanyi-api.baidu.com/api/trans/vip/translate'
|
||||||
|
|
||||||
|
M.get_content = function(data)
|
||||||
M.request_headers = function(data)
|
local tmp = app_id .. data.str .. salt .. app_passwd
|
||||||
local tmp = appid .. data.str .. salt .. app_passwd
|
|
||||||
local sign = require('Trans.util.md5').sumhexa(tmp)
|
local sign = require('Trans.util.md5').sumhexa(tmp)
|
||||||
return {
|
return {
|
||||||
q = data.str,
|
q = data.str,
|
||||||
from = data.from,
|
from = data.from,
|
||||||
to = data.to,
|
to = data.to,
|
||||||
appid = appid,
|
appid = app_id,
|
||||||
salt = salt,
|
salt = salt,
|
||||||
sign = sign,
|
sign = sign,
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- {
|
||||||
|
-- body = '{"from":"en","to":"zh","trans_result":[{"src":"require","dst":"\\u8981\\u6c42"}]}',
|
||||||
|
-- exit = 0,
|
||||||
|
-- headers = { "Content-Type: application/json", "Date: Thu, 09 Mar 2023 14:01:09 GMT", 'P3p: CP=" OTI DSP COR IVA OUR IND COM "', "Server: Apache", "Set-Cookie: BAIDUID=CB6D99CCD3B5F5278B5BE9428F002FC3:FG=1; expires=Fri, 08-Mar-24 14:01:09 GMT; max-age=31536000; path=/; domain=.baidu.com; version=1", "Tracecode: 00696104432377504778030922", "Content-Length: 79", "", "" },
|
||||||
|
-- status = 200
|
||||||
|
-- }
|
||||||
|
|
||||||
|
|
||||||
M.query = function(data)
|
M.query = function(data)
|
||||||
data.engine = 'baidu'
|
data.engine = 'baidu'
|
||||||
|
|
||||||
require('Trans.wrapper.curl').POST {
|
local handle = function(res)
|
||||||
|
local status, body = pcall(vim.json.decode, res.body)
|
||||||
|
if status and body then
|
||||||
|
local result = body.trans_result
|
||||||
|
if result then
|
||||||
|
-- TEST :whether multi result
|
||||||
|
assert(#result == 1, 'multi result :' .. vim.inspect(result))
|
||||||
|
result = result[1]
|
||||||
|
data.result = {
|
||||||
|
title = result.src,
|
||||||
|
translation = result.dst,
|
||||||
|
}
|
||||||
|
return
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
}
|
data.result = false
|
||||||
|
data.error = res
|
||||||
|
end
|
||||||
|
|
||||||
|
require('plenary.curl').get(uri, {
|
||||||
|
query = M.get_content(data),
|
||||||
|
callback = handle,
|
||||||
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
||||||
-- local post = require('Trans.util.curl').POST
|
|
||||||
|
|
||||||
-- ---返回一个channel
|
|
||||||
-- ---@param word string
|
|
||||||
-- ---@return table
|
|
||||||
-- return function(word)
|
|
||||||
-- local isEn = word:isEn()
|
|
||||||
-- local query = get_field(word, isEn)
|
|
||||||
-- local result = {}
|
|
||||||
|
|
||||||
-- post(uri, {
|
|
||||||
-- data = query,
|
|
||||||
-- headers = {
|
|
||||||
-- content_type = "application/x-www-form-urlencoded",
|
|
||||||
-- },
|
|
||||||
-- callback = function(str)
|
|
||||||
-- local ok, res = pcall(vim.json.decode, str)
|
|
||||||
-- if ok and res and res.trans_result then
|
|
||||||
-- result[1] = {
|
|
||||||
-- title = { word = word },
|
|
||||||
-- [isEn and 'translation' or 'definition'] = res.trans_result[1].dst,
|
|
||||||
-- }
|
|
||||||
|
|
||||||
-- if result.callback then
|
|
||||||
-- result.callback(result[1])
|
|
||||||
-- end
|
|
||||||
-- else
|
|
||||||
-- result[1] = false
|
|
||||||
-- end
|
|
||||||
-- end,
|
|
||||||
-- })
|
|
||||||
|
|
||||||
-- return result
|
|
||||||
-- end
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- -- NOTE :free tts:
|
-- -- NOTE :free tts:
|
||||||
-- -- https://zj.v.api.aa1.cn/api/baidu-01/?msg=我爱你&choose=0&su=100&yd=5
|
-- -- https://zj.v.api.aa1.cn/api/baidu-01/?msg=我爱你&choose=0&su=100&yd=5
|
||||||
-- -- 选择转音频的人物,女生1 输入0 | 女生2输入:5|男生1 输入:1|男生2 输入:2|男生3 输入:3
|
-- -- 选择转音频的人物,女生1 输入0 | 女生2输入:5|男生1 输入:1|男生2 输入:2|男生3 输入:3
|
||||||
|
@ -13,7 +13,7 @@ vim.api.nvim_create_autocmd('VimLeavePre', {
|
|||||||
M.query = function(data)
|
M.query = function(data)
|
||||||
if data.is_word == false or data.from == 'zh' then return end
|
if data.is_word == false or data.from == 'zh' then return end
|
||||||
|
|
||||||
data.path = vim.fn.expand(data.path or require('Trans').conf.db_path)
|
data.path = vim.fn.expand(data.path or require('Trans').conf.dir .. '/ultimate.db')
|
||||||
data.engine = 'offline'
|
data.engine = 'offline'
|
||||||
data.formatter = data.formatter or M.formatter
|
data.formatter = data.formatter or M.formatter
|
||||||
data.query_field = data.query_field or M.query_field
|
data.query_field = data.query_field or M.query_field
|
||||||
|
@ -1,31 +1,31 @@
|
|||||||
local GET = require("Trans.util.curl").GET
|
-- local GET = require("Trans.util.curl").GET
|
||||||
|
|
||||||
return function(word)
|
-- return function(word)
|
||||||
local isEn = word:isEn()
|
-- local isEn = word:isEn()
|
||||||
local result = {}
|
-- local result = {}
|
||||||
|
|
||||||
local uri = ('https://v.api.aa1.cn/api/api-fanyi-yd/index.php?msg=%s&type=%d'):format(word, isEn and 2 or 1)
|
-- local uri = ('https://v.api.aa1.cn/api/api-fanyi-yd/index.php?msg=%s&type=%d'):format(word, isEn and 2 or 1)
|
||||||
GET(uri, {
|
-- GET(uri, {
|
||||||
callback = function(str)
|
-- callback = function(str)
|
||||||
local ok, res = pcall(vim.json.decode, str)
|
-- local ok, res = pcall(vim.json.decode, str)
|
||||||
if not ok or not res or not res.text or isEn and res.text:isEn() then
|
-- if not ok or not res or not res.text or isEn and res.text:isEn() then
|
||||||
result[1] = false
|
-- result[1] = false
|
||||||
return
|
-- return
|
||||||
end
|
-- end
|
||||||
|
|
||||||
result[1] = {
|
-- result[1] = {
|
||||||
title = { word = word },
|
-- title = { word = word },
|
||||||
[isEn and 'translation' or 'definition'] = res.text,
|
-- [isEn and 'translation' or 'definition'] = res.text,
|
||||||
}
|
-- }
|
||||||
|
|
||||||
if result.callback then
|
-- if result.callback then
|
||||||
result.callback(result[1])
|
-- result.callback(result[1])
|
||||||
end
|
-- end
|
||||||
end
|
-- end
|
||||||
})
|
-- })
|
||||||
|
|
||||||
return result
|
-- return result
|
||||||
end
|
-- end
|
||||||
|
|
||||||
-- local youdao = require("Trans").conf.engine.youdao
|
-- local youdao = require("Trans").conf.engine.youdao
|
||||||
-- local uri = 'https://openapi.youdao.com/api'
|
-- local uri = 'https://openapi.youdao.com/api'
|
||||||
|
@ -60,7 +60,7 @@ return {
|
|||||||
-- no = '❌'
|
-- no = '❌'
|
||||||
},
|
},
|
||||||
theme = 'default',
|
theme = 'default',
|
||||||
db_path = '$HOME/.vim/dict/ultimate.db',
|
dir = '$HOME/.vim/dict',
|
||||||
-- float = {
|
-- float = {
|
||||||
-- width = 0.8,
|
-- width = 0.8,
|
||||||
-- height = 0.8,
|
-- height = 0.8,
|
||||||
|
0
lua/Trans/core/install.lua
Normal file
0
lua/Trans/core/install.lua
Normal file
@ -24,10 +24,22 @@ process = function(opts)
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local res = require('Trans.backend').offline.query(data)
|
require('Trans.backend').baidu.query(data)
|
||||||
-- vim.pretty_print(res)
|
local thread = coroutine.running()
|
||||||
|
local resume = function()
|
||||||
|
coroutine.resume(thread)
|
||||||
|
end
|
||||||
|
|
||||||
|
local time = 0
|
||||||
|
while data.result == nil do
|
||||||
|
vim.defer_fn(resume, 400)
|
||||||
|
time = time + 1
|
||||||
|
print('waiting' .. ('.'):rep(time))
|
||||||
|
coroutine.yield()
|
||||||
|
end
|
||||||
|
vim.pretty_print(data)
|
||||||
|
|
||||||
M.translate = coroutine.wrap(process)
|
M.translate = coroutine.wrap(process)
|
||||||
end
|
end
|
||||||
|
|
||||||
return process
|
return coroutine.wrap(process)
|
||||||
|
@ -1,79 +1,80 @@
|
|||||||
local M = {}
|
local check = function()
|
||||||
|
|
||||||
M.check = function()
|
|
||||||
local health = vim.health
|
local health = vim.health
|
||||||
local ok = health.report_ok
|
local ok = health.report_ok
|
||||||
local warn = health.report_warn
|
local warn = health.report_warn
|
||||||
local error = health.report_error
|
local error = health.report_error
|
||||||
|
|
||||||
|
|
||||||
local has = vim.fn.has
|
local has = vim.fn.has
|
||||||
local executable = vim.fn.executable
|
local executable = vim.fn.executable
|
||||||
|
|
||||||
-- INFO :Check neovim version
|
-- INFO :Check neovim version
|
||||||
if has('nvim-0.9') == 1 then
|
if has('nvim-0.9') == 1 then
|
||||||
ok [[
|
ok [[You have [neovim-nightly] ]]
|
||||||
you have Trans.nvim with full features in neovim-nightly
|
|
||||||
]]
|
|
||||||
else
|
else
|
||||||
warn [[
|
warn [[Trans Title requires Neovim 0.9 or newer
|
||||||
Trans Title requires Neovim 0.9 or newer
|
See neovim-nightly: [https://github.com/neovim/neovim/releases/tag/nightly]
|
||||||
See neovim-nightly: https://github.com/neovim/neovim/releases/tag/nightly
|
|
||||||
]]
|
]]
|
||||||
end
|
end
|
||||||
|
|
||||||
-- INFO :Check Sqlite
|
-- INFO :Check plugin dependencies
|
||||||
local has_sqlite = pcall(require, 'sqlite')
|
local plugin_dependencies = {
|
||||||
if has_sqlite then
|
'plenary',
|
||||||
ok [[
|
'sqlite',
|
||||||
Dependency sqlite.lua is installed
|
}
|
||||||
]]
|
|
||||||
else
|
for _, dep in ipairs(plugin_dependencies) do
|
||||||
error [[
|
if pcall(require, dep) then
|
||||||
Dependency sqlite.lua can't work correctly
|
ok(string.format('Dependency [%s] is installed', dep))
|
||||||
Please Read the doc in github carefully
|
else
|
||||||
]]
|
error(string.format('Dependency [%s] is not installed', dep))
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if executable('sqlite3') then
|
-- INFO :Check binary dependencies
|
||||||
ok [[
|
local binary_dependencies = {
|
||||||
Dependency sqlite3 found
|
'curl',
|
||||||
]]
|
'sqlite3',
|
||||||
|
}
|
||||||
|
|
||||||
|
if has('linux') == 1 then
|
||||||
|
binary_dependencies[3] = 'festival'
|
||||||
|
elseif has('mac') == 1 then
|
||||||
|
binary_dependencies[3] = 'say'
|
||||||
else
|
else
|
||||||
error [[
|
binary_dependencies[3] = 'node'
|
||||||
Dependency sqlite3 not found
|
end
|
||||||
]]
|
|
||||||
|
for _, dep in ipairs(binary_dependencies) do
|
||||||
|
if executable(dep) == 1 then
|
||||||
|
ok(string.format('Binary dependency [%s] is installed', dep))
|
||||||
|
else
|
||||||
|
error(string.format('Binary dependency [%s] is not installed', dep))
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
-- INFO :Check stardict
|
-- INFO :Check ultimate.db
|
||||||
local db_path = vim.fn.expand(require('Trans').conf.db_path)
|
local db_path = vim.fn.expand(require('Trans').conf.dir .. '/ultimate.db')
|
||||||
if vim.fn.filereadable(db_path) == 1 then
|
if vim.fn.filereadable(db_path) == 1 then
|
||||||
ok [[
|
ok [[ultimate database found ]]
|
||||||
Stardict database found
|
|
||||||
]]
|
|
||||||
else
|
else
|
||||||
error [[
|
error [[Stardict database not found
|
||||||
Stardict database not found
|
Please check the doc in github: [https://github.com/JuanZoran/Trans.nvim]
|
||||||
Please check the doc in github: https://github.com/JuanZoran/Trans.nvim
|
|
||||||
]]
|
]]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
-- INFO :Check Engine configuration file
|
-- INFO :Check Engine configuration file
|
||||||
local path = vim.fn.expand("$HOME/.vim/dict/Trans.json")
|
local path = vim.fn.expand(require('Trans').conf.dir .. '/Trans.json')
|
||||||
local file = io.open(path, "r")
|
local file = io.open(path, "r")
|
||||||
local valid = vim.json.decode(file:read("*a"))
|
local valid = file and pcall(vim.json.decode, file:read("*a"))
|
||||||
if valid then
|
if valid then
|
||||||
ok [[
|
ok [[Engine configuration file found and valid ]]
|
||||||
Engine configuration file found and valid
|
|
||||||
]]
|
|
||||||
else
|
else
|
||||||
error [[
|
error [[Engine configuration file not found or invalid
|
||||||
Engine configuration file not found or invalid
|
Please check the doc in github: [https://github.com/JuanZoran/Trans.nvim]
|
||||||
Please check the doc in github: https://github.com/JuanZoran/Trans.nvim
|
|
||||||
]]
|
]]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return { check = check }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user