1 |
rakinar2 |
577 |
/** |
2 |
|
|
* This file is part of SudoBot. |
3 |
|
|
* |
4 |
|
|
* Copyright (C) 2021-2023 OSN Developers. |
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 "../core/Service"; |
22 |
|
|
import { log, logError } from "../utils/logger"; |
23 |
|
|
|
24 |
|
|
export const name = "translator"; |
25 |
|
|
|
26 |
|
|
export default class TranslationService extends Service { |
27 |
|
|
protected readonly requestURL = "https://translate.google.com/translate_a/single?client=at&dt=t&dt=rm&dj=1"; |
28 |
|
|
|
29 |
|
|
public async translate(text: string, from: string = "auto", to: string = "en") { |
30 |
|
|
try { |
31 |
|
|
const response = await axios.post( |
32 |
|
|
this.requestURL, |
33 |
|
|
new URLSearchParams({ |
34 |
|
|
sl: from, |
35 |
|
|
tl: to, |
36 |
|
|
q: text |
37 |
|
|
}).toString(), |
38 |
|
|
{ |
39 |
|
|
headers: { |
40 |
|
|
"Content-Type": "application/x-www-form-urlencoded; charset=utf-8" |
41 |
|
|
} |
42 |
|
|
} |
43 |
|
|
); |
44 |
|
|
|
45 |
|
|
log(response.data); |
46 |
|
|
|
47 |
|
|
if (!response.data.sentences) { |
48 |
|
|
throw new Error("Invalid response received"); |
49 |
|
|
} |
50 |
|
|
|
51 |
|
|
const translation = response.data.sentences |
52 |
|
|
.filter((s: any) => !!s.trans) |
53 |
|
|
.map((s: any) => s.trans.trim()) |
54 |
|
|
.join(" "); |
55 |
|
|
|
56 |
|
|
return { translation, response }; |
57 |
|
|
} catch (e) { |
58 |
|
|
logError(e); |
59 |
|
|
|
60 |
|
|
return { |
61 |
|
|
error: e |
62 |
|
|
}; |
63 |
|
|
} |
64 |
|
|
} |
65 |
|
|
} |