feat: add simple youdao api
This commit is contained in:
parent
1205b11d97
commit
85fdf7f58d
@ -122,6 +122,7 @@ M.conf = {
|
|||||||
|
|
||||||
db_path = '$HOME/.vim/dict/ultimate.db',
|
db_path = '$HOME/.vim/dict/ultimate.db',
|
||||||
engine = {
|
engine = {
|
||||||
|
youdao = {},
|
||||||
-- baidu = {
|
-- baidu = {
|
||||||
-- appid = '',
|
-- appid = '',
|
||||||
-- appPasswd = '',
|
-- appPasswd = '',
|
||||||
|
@ -57,3 +57,9 @@ return function(word)
|
|||||||
|
|
||||||
return result
|
return result
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-- 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
|
||||||
|
@ -1,45 +1,74 @@
|
|||||||
local youdao = require("Trans").conf.engine.youdao
|
local GET = require("Trans.util.curl").GET
|
||||||
local uri = 'https://openapi.youdao.com/api'
|
|
||||||
local salt = tostring(math.random(bit.lshift(1, 15)))
|
|
||||||
local appid = youdao.appid
|
|
||||||
local appPasswd = youdao.appPasswd
|
|
||||||
|
|
||||||
local post = require('Trans.util.curl').POST
|
|
||||||
|
|
||||||
local function get_field(word)
|
|
||||||
-- local to = isEn and 'zh-'
|
|
||||||
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+应用密钥);
|
|
||||||
local hash = appid .. input .. salt .. curtime .. appPasswd
|
|
||||||
local sign = vim.fn.sha256(hash)
|
|
||||||
|
|
||||||
return {
|
|
||||||
q = word,
|
|
||||||
from = 'auto',
|
|
||||||
to = 'zh-CHS',
|
|
||||||
signType = 'v3',
|
|
||||||
appKey = appid,
|
|
||||||
salt = salt,
|
|
||||||
curtime = curtime,
|
|
||||||
sign = sign,
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
return function(word)
|
return function(word)
|
||||||
-- return result
|
local isEn = word:isEn()
|
||||||
-- local field = get_field(word)
|
local result = {}
|
||||||
-- local output = post(uri, {
|
|
||||||
-- body = field,
|
|
||||||
-- })
|
|
||||||
|
|
||||||
-- if output.exit == 0 and output.status == 200 then
|
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 result = vim.fn.json_decode(output.body)
|
GET(uri, {
|
||||||
-- if result and result.errorCode == 0 then
|
callback = function(str)
|
||||||
-- --- TODO :
|
local ok, res = pcall(vim.json.decode, str)
|
||||||
-- end
|
if not ok or not res or not res.text or isEn and res.text:isEn() then
|
||||||
-- end
|
result[1] = false
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
result[1] = {
|
||||||
|
title = { word = word },
|
||||||
|
[isEn and 'translation' or 'definition'] = res.text,
|
||||||
|
}
|
||||||
|
|
||||||
|
if result.callback then
|
||||||
|
result.callback(result[1])
|
||||||
|
end
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
|
return result
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- local youdao = require("Trans").conf.engine.youdao
|
||||||
|
-- local uri = 'https://openapi.youdao.com/api'
|
||||||
|
-- local salt = tostring(math.random(bit.lshift(1, 15)))
|
||||||
|
-- local appid = youdao.appid
|
||||||
|
-- local appPasswd = youdao.appPasswd
|
||||||
|
|
||||||
|
-- local post = require('Trans.util.curl').POST
|
||||||
|
|
||||||
|
-- local function get_field(word)
|
||||||
|
-- -- local to = isEn and 'zh-'
|
||||||
|
-- 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+应用密钥);
|
||||||
|
-- local hash = appid .. input .. salt .. curtime .. appPasswd
|
||||||
|
-- local sign = vim.fn.sha256(hash)
|
||||||
|
|
||||||
|
-- return {
|
||||||
|
-- q = word,
|
||||||
|
-- from = 'auto',
|
||||||
|
-- to = 'zh-CHS',
|
||||||
|
-- signType = 'v3',
|
||||||
|
-- appKey = appid,
|
||||||
|
-- salt = salt,
|
||||||
|
-- curtime = curtime,
|
||||||
|
-- sign = sign,
|
||||||
|
-- }
|
||||||
|
-- end
|
||||||
|
|
||||||
|
-- return function(word)
|
||||||
|
-- -- return result
|
||||||
|
-- -- 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
|
||||||
|
-- end
|
||||||
|
@ -12,9 +12,32 @@ local curl = {}
|
|||||||
|
|
||||||
curl.GET = function(uri, opts)
|
curl.GET = function(uri, opts)
|
||||||
--- TODO :
|
--- TODO :
|
||||||
|
vim.validate {
|
||||||
|
uri = { uri, 's' },
|
||||||
|
opts = { opts, 't' }
|
||||||
|
}
|
||||||
|
local cmd = {'curl', '-s', ('"%s"'):format(uri)}
|
||||||
|
local callback = opts.callback
|
||||||
|
|
||||||
|
local output = ''
|
||||||
|
local option = {
|
||||||
|
stdin = 'null',
|
||||||
|
on_stdout = function(_, stdout)
|
||||||
|
local str = table.concat(stdout)
|
||||||
|
if str ~= '' then
|
||||||
|
output = output .. str
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
on_exit = function()
|
||||||
|
callback(output)
|
||||||
|
end,
|
||||||
|
}
|
||||||
|
|
||||||
|
vim.fn.jobstart(table.concat(cmd, ' '), option)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
curl.POST = function(uri, opts)
|
curl.POST = function(uri, opts)
|
||||||
vim.validate {
|
vim.validate {
|
||||||
uri = { uri, 's' },
|
uri = { uri, 's' },
|
||||||
@ -23,7 +46,7 @@ curl.POST = function(uri, opts)
|
|||||||
|
|
||||||
local callback = opts.callback
|
local callback = opts.callback
|
||||||
|
|
||||||
local cmd = { 'curl', '-s', uri }
|
local cmd = { 'curl', '-s', ('"%s"'):format(uri) }
|
||||||
local size = 3
|
local size = 3
|
||||||
|
|
||||||
local function insert(...)
|
local function insert(...)
|
||||||
|
@ -310,7 +310,7 @@ local function online_query(win, word)
|
|||||||
end
|
end
|
||||||
|
|
||||||
for i = 1, size do
|
for i = 1, size do
|
||||||
lists[size] = require('Trans.query.' .. engines[i])(word)
|
lists[i] = require('Trans.query.' .. engines[i])(word)
|
||||||
end
|
end
|
||||||
local cell = icon.cell
|
local cell = icon.cell
|
||||||
local timeout = hover.timeout
|
local timeout = hover.timeout
|
||||||
|
Loading…
x
Reference in New Issue
Block a user