2023-01-30 12:01:58 +08:00
|
|
|
|
local youdao = require("Trans").conf.engine.youdao
|
|
|
|
|
local uri = 'https://openapi.youdao.com/api'
|
2023-02-03 15:27:00 +08:00
|
|
|
|
local salt = tostring(math.random(bit.lshift(1, 15)))
|
|
|
|
|
local appid = youdao.appid
|
|
|
|
|
local appPasswd = youdao.appPasswd
|
2023-01-30 12:01:58 +08:00
|
|
|
|
|
2023-02-03 15:27:00 +08:00
|
|
|
|
local post = require('Trans.util.curl').POST
|
2023-01-30 12:01:58 +08:00
|
|
|
|
|
|
|
|
|
local function get_field(word)
|
2023-02-03 15:27:00 +08:00
|
|
|
|
-- local to = isEn and 'zh-'
|
2023-01-30 12:01:58 +08:00
|
|
|
|
local len = #word
|
|
|
|
|
local curtime = tostring(os.time())
|
|
|
|
|
local input = len > 20 and
|
|
|
|
|
word:sub(1, 10) .. len .. word:sub(-10) or word
|
|
|
|
|
|
|
|
|
|
-- sign=sha256(应用ID+input+salt+curtime+应用密钥);
|
2023-02-03 15:27:00 +08:00
|
|
|
|
local hash = appid .. input .. salt .. curtime .. appPasswd
|
2023-01-30 12:01:58 +08:00
|
|
|
|
local sign = vim.fn.sha256(hash)
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
q = word,
|
|
|
|
|
from = 'auto',
|
|
|
|
|
to = 'zh-CHS',
|
|
|
|
|
signType = 'v3',
|
2023-02-03 15:27:00 +08:00
|
|
|
|
appKey = appid,
|
2023-01-30 12:01:58 +08:00
|
|
|
|
salt = salt,
|
|
|
|
|
curtime = curtime,
|
|
|
|
|
sign = sign,
|
|
|
|
|
}
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return function(word)
|
|
|
|
|
-- return result
|
2023-02-03 15:27:00 +08:00
|
|
|
|
-- local field = get_field(word)
|
|
|
|
|
-- local output = post(uri, {
|
|
|
|
|
-- body = field,
|
|
|
|
|
-- })
|
|
|
|
|
|
|
|
|
|
-- if output.exit == 0 and output.status == 200 then
|
|
|
|
|
-- local result = vim.fn.json_decode(output.body)
|
|
|
|
|
-- if result and result.errorCode == 0 then
|
|
|
|
|
-- --- TODO :
|
|
|
|
|
-- end
|
|
|
|
|
-- end
|
2023-01-30 12:01:58 +08:00
|
|
|
|
end
|