2023-07-24 22:28:09 +08:00
|
|
|
|
---@class Baidu: TransBackendOnline
|
|
|
|
|
---@field conf { app_id: string, app_passwd: string }
|
2023-03-12 15:18:27 +08:00
|
|
|
|
local M = {
|
2023-07-24 22:28:09 +08:00
|
|
|
|
name = 'baidu',
|
|
|
|
|
display_text = '百度',
|
|
|
|
|
uri = 'https://fanyi-api.baidu.com/api/trans/vip/translate',
|
|
|
|
|
salt = tostring(math.random(bit.lshift(1, 15))),
|
|
|
|
|
method = 'get',
|
2023-03-12 15:18:27 +08:00
|
|
|
|
}
|
2023-01-30 12:01:58 +08:00
|
|
|
|
|
2023-03-24 00:56:36 +08:00
|
|
|
|
local Trans = require 'Trans'
|
2023-03-12 11:23:29 +08:00
|
|
|
|
|
2023-03-14 22:30:25 +08:00
|
|
|
|
---@class BaiduQuery
|
|
|
|
|
---@field q string
|
|
|
|
|
---@field from string
|
|
|
|
|
---@field to string
|
|
|
|
|
---@field appid string
|
|
|
|
|
---@field salt string
|
|
|
|
|
---@field sign string
|
|
|
|
|
|
|
|
|
|
---Get content for query
|
|
|
|
|
---@param data TransData
|
|
|
|
|
---@return BaiduQuery
|
2023-07-24 22:28:09 +08:00
|
|
|
|
function M.get_query(data)
|
|
|
|
|
local m_conf = M.conf
|
|
|
|
|
assert(m_conf, 'Load Baidu config failed')
|
|
|
|
|
|
|
|
|
|
local tmp = m_conf.app_id .. data.str .. M.salt .. m_conf.app_passwd
|
2023-03-12 11:23:29 +08:00
|
|
|
|
local sign = Trans.util.md5.sumhexa(tmp)
|
|
|
|
|
|
2023-01-30 12:01:58 +08:00
|
|
|
|
return {
|
2023-03-09 19:42:41 +08:00
|
|
|
|
q = data.str,
|
|
|
|
|
from = data.from,
|
|
|
|
|
to = data.to,
|
2023-07-24 22:28:09 +08:00
|
|
|
|
appid = m_conf.app_id,
|
2023-03-12 15:18:27 +08:00
|
|
|
|
salt = M.salt,
|
2023-01-30 12:01:58 +08:00
|
|
|
|
sign = sign,
|
|
|
|
|
}
|
|
|
|
|
end
|
|
|
|
|
|
2023-03-22 21:55:08 +08:00
|
|
|
|
---@overload fun(body: table, data:TransData): TransResult
|
2023-03-14 22:30:25 +08:00
|
|
|
|
---Query Using Baidu API
|
2023-03-18 21:31:14 +08:00
|
|
|
|
---@param body table BaiduQuery Response
|
|
|
|
|
---@return table|false
|
2023-07-24 22:28:09 +08:00
|
|
|
|
function M.formatter(body, data)
|
2023-03-18 21:31:14 +08:00
|
|
|
|
local result = body.trans_result
|
|
|
|
|
if not result then return false end
|
2023-03-16 11:49:26 +08:00
|
|
|
|
|
2023-03-18 21:31:14 +08:00
|
|
|
|
-- TEST :whether multi result
|
|
|
|
|
assert(#result == 1)
|
|
|
|
|
result = result[1]
|
|
|
|
|
return {
|
|
|
|
|
str = result.src,
|
2023-03-24 00:56:36 +08:00
|
|
|
|
[data.from == 'en' and 'translation' or 'definition'] = { result.dst },
|
2023-03-18 21:31:14 +08:00
|
|
|
|
}
|
2023-01-30 12:01:58 +08:00
|
|
|
|
end
|
2023-02-07 16:44:22 +08:00
|
|
|
|
|
2023-07-24 22:28:09 +08:00
|
|
|
|
return M
|
2023-07-10 21:19:55 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-03-09 19:42:41 +08:00
|
|
|
|
|
2023-03-18 21:31:14 +08:00
|
|
|
|
|
2023-07-10 21:19:55 +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
|
2023-03-18 21:31:14 +08:00
|
|
|
|
-- {
|
|
|
|
|
-- 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
|
|
|
|
|
-- }
|