-
Notifications
You must be signed in to change notification settings - Fork 24
/
translate.js
97 lines (83 loc) · 2.31 KB
/
translate.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
const axios = require('axios').default;
const { random } = require('lodash');
const DEEPL_BASE_URL = 'https://www2.deepl.com/jsonrpc';
const headers = {
'Content-Type': 'application/json',
Accept: '*/*',
'x-app-os-name': 'iOS',
'x-app-os-version': '16.3.0',
'Accept-Language': 'en-US,en;q=0.9',
'Accept-Encoding': 'gzip, deflate, br',
'x-app-device': 'iPhone13,2',
'User-Agent': 'DeepL-iOS/2.9.1 iOS 16.3.0 (iPhone13,2)',
'x-app-build': '510265',
'x-app-version': '2.9.1',
Connection: 'keep-alive',
};
function getICount(translateText) {
return (translateText || '').split('i').length - 1;
}
function getRandomNumber() {
return random(8300000, 8399998) * 1000;
}
function getTimestamp(iCount) {
const ts = Date.now();
if (iCount === 0) {
return ts;
}
iCount++;
return ts - (ts % iCount) + iCount;
}
async function translate(
text,
sourceLang = 'AUTO',
targetLang = 'ZH',
numberAlternative = 0,
printResult = false,
) {
const iCount = getICount(text);
const id = getRandomNumber();
numberAlternative = Math.max(Math.min(3, numberAlternative), 0);
const postData = {
jsonrpc: '2.0',
method: 'LMT_handle_texts',
id: id,
params: {
texts: [{ text: text, requestAlternatives: numberAlternative }],
splitting: 'newlines',
lang: {
source_lang_user_selected: sourceLang.toUpperCase(),
target_lang: targetLang.toUpperCase(),
},
timestamp: getTimestamp(iCount),
},
};
let postDataStr = JSON.stringify(postData);
if ((id + 5) % 29 === 0 || (id + 3) % 13 === 0) {
postDataStr = postDataStr.replace('"method":"', '"method" : "');
} else {
postDataStr = postDataStr.replace('"method":"', '"method": "');
}
try {
const response = await axios.post(DEEPL_BASE_URL, postDataStr, {
headers: headers,
});
if (response.status === 429) {
throw new Error(
`Too many requests, your IP has been blocked by DeepL temporarily, please don't request it frequently in a short time.`
);
}
if (response.status !== 200) {
console.error('Error', response.status);
return;
}
const result = response.data.result.texts[0]
if (printResult) {
console.log(result);
}
return result;
} catch (err) {
console.error(err);
}
}
exports.translate = translate;