1 |
/** |
2 |
* This file is part of SudoBot. |
3 |
* |
4 |
* Copyright (C) 2021-2022 OSN Inc. |
5 |
* |
6 |
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
* under the terms of the GNU Affero General Public License as published by |
8 |
* the Free Software Foundation, either version 3 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* SudoBot is distributed in the hope that it will be useful, but |
12 |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU Affero General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU Affero General Public License |
17 |
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
*/ |
19 |
|
20 |
import axios from "axios"; |
21 |
import Service from "../utils/structures/Service"; |
22 |
|
23 |
export default class Translator extends Service { |
24 |
requestURL = "https://translate.google.com/translate_a/single?client=at&dt=t&dt=rm&dj=1"; |
25 |
|
26 |
public async translate(text: string, from: string = 'auto', to: string = 'en') { |
27 |
try { |
28 |
const response = await axios.post(this.requestURL, new URLSearchParams({ |
29 |
sl: from, |
30 |
tl: to, |
31 |
q: text |
32 |
}).toString(), { |
33 |
headers: { |
34 |
'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8' |
35 |
} |
36 |
}); |
37 |
|
38 |
console.log(response.data); |
39 |
|
40 |
if (!response.data.sentences) { |
41 |
throw new Error("Invalid response received"); |
42 |
} |
43 |
|
44 |
const translation = response.data.sentences.filter((s: any) => !!s.trans).map((s: any) => s.trans.trim()).join(' '); |
45 |
|
46 |
return { translation, response }; |
47 |
} |
48 |
catch (e) { |
49 |
console.log(e); |
50 |
|
51 |
return { |
52 |
error: e, |
53 |
}; |
54 |
} |
55 |
} |
56 |
} |