2023-01-30 12:01:58 +08:00
|
|
|
|
local baidu = require('Trans').conf.engine.baidu
|
|
|
|
|
local appid = baidu.appid
|
|
|
|
|
local appPasswd = baidu.appPasswd
|
2023-01-30 20:09:57 +08:00
|
|
|
|
local salt = tostring(math.random(bit.lshift(1, 15)))
|
2023-01-30 12:01:58 +08:00
|
|
|
|
local uri = 'https://fanyi-api.baidu.com/api/trans/vip/translate'
|
|
|
|
|
|
|
|
|
|
if appid == '' or appPasswd == '' then
|
|
|
|
|
error('请查看README, 实现在线翻译或者设置将在线翻译设置为false')
|
|
|
|
|
end
|
|
|
|
|
|
2023-01-30 20:09:57 +08:00
|
|
|
|
local post = require('Trans.util.curl').POST
|
2023-01-30 12:01:58 +08:00
|
|
|
|
|
2023-02-01 16:47:50 +08:00
|
|
|
|
local function get_field(word, isEn)
|
|
|
|
|
local to = isEn and 'zh' or 'en'
|
2023-01-30 12:01:58 +08:00
|
|
|
|
local tmp = appid .. word .. salt .. appPasswd
|
|
|
|
|
local sign = require('Trans.util.md5').sumhexa(tmp)
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
q = word,
|
|
|
|
|
from = 'auto',
|
|
|
|
|
to = to,
|
|
|
|
|
appid = appid,
|
|
|
|
|
salt = salt,
|
|
|
|
|
sign = sign,
|
|
|
|
|
}
|
|
|
|
|
end
|
|
|
|
|
|
2023-01-30 20:09:57 +08:00
|
|
|
|
---返回一个channel
|
|
|
|
|
---@param word string
|
2023-01-31 22:29:40 +08:00
|
|
|
|
---@return table
|
2023-01-30 12:01:58 +08:00
|
|
|
|
return function(word)
|
2023-02-01 16:47:50 +08:00
|
|
|
|
local isEn = word:isEn()
|
|
|
|
|
local query = get_field(word, isEn)
|
2023-01-31 22:29:40 +08:00
|
|
|
|
local result = {}
|
2023-01-30 20:09:57 +08:00
|
|
|
|
|
|
|
|
|
post(uri, {
|
2023-01-30 12:01:58 +08:00
|
|
|
|
data = query,
|
|
|
|
|
headers = {
|
|
|
|
|
content_type = "application/x-www-form-urlencoded",
|
2023-01-30 20:09:57 +08:00
|
|
|
|
},
|
|
|
|
|
callback = function(str)
|
2023-02-01 16:47:50 +08:00
|
|
|
|
local ok, res = pcall(vim.json.decode, str)
|
|
|
|
|
if ok and res and res.trans_result then
|
2023-02-03 11:57:42 +08:00
|
|
|
|
result[1] = {
|
|
|
|
|
title = { word = word },
|
2023-02-01 16:47:50 +08:00
|
|
|
|
[isEn and 'translation' or 'definition'] = res.trans_result[1].dst,
|
2023-01-31 22:29:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if result.callback then
|
2023-02-03 11:57:42 +08:00
|
|
|
|
result.callback(result[1])
|
2023-01-30 20:09:57 +08:00
|
|
|
|
end
|
|
|
|
|
else
|
2023-02-03 11:57:42 +08:00
|
|
|
|
result[1] = false
|
2023-01-30 20:09:57 +08:00
|
|
|
|
end
|
|
|
|
|
end,
|
2023-01-30 12:01:58 +08:00
|
|
|
|
})
|
|
|
|
|
|
2023-01-31 22:29:40 +08:00
|
|
|
|
return result
|
2023-01-30 12:01:58 +08:00
|
|
|
|
end
|
2023-02-03 15:38:05 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- NOTE :free tts:
|
|
|
|
|
-- 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
|