File size: 14,607 Bytes
c7dfe8b |
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 |
# <============================================== IMPORTS =========================================================>
import json
import random
import re
from urllib.parse import quote
import requests
import urllib3
from emoji import EMOJI_DATA
from telegram import Update
from telegram.constants import ParseMode
from telegram.ext import ContextTypes, filters
from Mikobot import LOGGER, function
from Mikobot.plugins.anime import DEFAULT_SERVICE_URLS, LANGUAGES
from Mikobot.plugins.disable import DisableAbleCommandHandler
from Mikobot.plugins.helper_funcs.chat_status import check_admin
# <=======================================================================================================>
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
URLS_SUFFIX = [
re.search("translate.google.(.*)", url.strip()).group(1)
for url in DEFAULT_SERVICE_URLS
]
URL_SUFFIX_DEFAULT = "com"
# <================================================ FUNCTION =======================================================>
class google_translator:
"""
You can use 108 language in target and source,details view LANGUAGES.
Target language: like 'en'γ'zh'γ'th'...
:param url_suffix: The source text(s) to be translated. Batch translation is supported via sequence input.
The value should be one of the url_suffix listed in : `DEFAULT_SERVICE_URLS`
:type url_suffix: UTF-8 :class:`str`; :class:`unicode`; string sequence (list, tuple, iterator, generator)
:param text: The source text(s) to be translated.
:type text: UTF-8 :class:`str`; :class:`unicode`;
:param lang_tgt: The language to translate the source text into.
The value should be one of the language codes listed in : `LANGUAGES`
:type lang_tgt: :class:`str`; :class:`unicode`
:param lang_src: The language of the source text.
The value should be one of the language codes listed in :const:`googletrans.LANGUAGES`
If a language is not specified,
the system will attempt to identify the source language automatically.
:type lang_src: :class:`str`; :class:`unicode`
:param timeout: Timeout Will be used for every request.
:type timeout: number or a double of numbers
:param proxies: proxies Will be used for every request.
:type proxies: class : dict; like: {'http': 'http:171.112.169.47:19934/', 'https': 'https:171.112.169.47:19934/'}
"""
def __init__(self, url_suffix="com", timeout=5, proxies=None):
self.proxies = proxies
if url_suffix not in URLS_SUFFIX:
self.url_suffix = URL_SUFFIX_DEFAULT
else:
self.url_suffix = url_suffix
url_base = "https://translate.google.{}".format(self.url_suffix)
self.url = url_base + "/_/TranslateWebserverUi/data/batchexecute"
self.timeout = timeout
def _package_rpc(self, text, lang_src="auto", lang_tgt="auto"):
GOOGLE_TTS_RPC = ["MkEWBc"]
parameter = [[text.strip(), lang_src, lang_tgt, True], [1]]
escaped_parameter = json.dumps(parameter, separators=(",", ":"))
rpc = [[[random.choice(GOOGLE_TTS_RPC), escaped_parameter, None, "generic"]]]
espaced_rpc = json.dumps(rpc, separators=(",", ":"))
# text_urldecode = quote(text.strip())
freq_initial = "f.req={}&".format(quote(espaced_rpc))
freq = freq_initial
return freq
def translate(self, text, lang_tgt="auto", lang_src="auto", pronounce=False):
try:
lang = LANGUAGES[lang_src]
except:
lang_src = "auto"
try:
lang = LANGUAGES[lang_tgt]
except:
lang_src = "auto"
text = str(text)
if len(text) >= 5000:
return "Warning: Can only detect less than 5000 characters"
if len(text) == 0:
return ""
headers = {
"Referer": "http://translate.google.{}/".format(self.url_suffix),
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) "
"AppleWebKit/537.36 (KHTML, like Gecko) "
"Chrome/47.0.2526.106 Safari/537.36",
"Content-Type": "application/x-www-form-urlencoded;charset=utf-8",
}
freq = self._package_rpc(text, lang_src, lang_tgt)
response = requests.Request(
method="POST",
url=self.url,
data=freq,
headers=headers,
)
try:
if self.proxies == None or type(self.proxies) != dict:
self.proxies = {}
with requests.Session() as s:
s.proxies = self.proxies
r = s.send(
request=response.prepare(), verify=False, timeout=self.timeout
)
for line in r.iter_lines(chunk_size=1024):
decoded_line = line.decode("utf-8")
if "MkEWBc" in decoded_line:
try:
response = decoded_line
response = json.loads(response)
response = list(response)
response = json.loads(response[0][2])
response_ = list(response)
response = response_[1][0]
if len(response) == 1:
if len(response[0]) > 5:
sentences = response[0][5]
else: ## only url
sentences = response[0][0]
if pronounce == False:
return sentences
elif pronounce == True:
return [sentences, None, None]
translate_text = ""
for sentence in sentences:
sentence = sentence[0]
translate_text += sentence.strip() + " "
translate_text = translate_text
if pronounce == False:
return translate_text
elif pronounce == True:
pronounce_src = response_[0][0]
pronounce_tgt = response_[1][0][0][1]
return [translate_text, pronounce_src, pronounce_tgt]
elif len(response) == 2:
sentences = []
for i in response:
sentences.append(i[0])
if pronounce == False:
return sentences
elif pronounce == True:
pronounce_src = response_[0][0]
pronounce_tgt = response_[1][0][0][1]
return [sentences, pronounce_src, pronounce_tgt]
except Exception as e:
raise e
r.raise_for_status()
except requests.exceptions.ConnectTimeout as e:
raise e
except requests.exceptions.HTTPError as e:
# Request successful, bad response
raise google_new_transError(tts=self, response=r)
except requests.exceptions.RequestException as e:
# Request failed
raise google_new_transError(tts=self)
def detect(self, text):
text = str(text)
if len(text) >= 5000:
return LOGGER.debug("Warning: Can only detect less than 5000 characters")
if len(text) == 0:
return ""
headers = {
"Referer": "http://translate.google.{}/".format(self.url_suffix),
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) "
"AppleWebKit/537.36 (KHTML, like Gecko) "
"Chrome/47.0.2526.106 Safari/537.36",
"Content-Type": "application/x-www-form-urlencoded;charset=utf-8",
}
freq = self._package_rpc(text)
response = requests.Request(
method="POST", url=self.url, data=freq, headers=headers
)
try:
if self.proxies == None or type(self.proxies) != dict:
self.proxies = {}
with requests.Session() as s:
s.proxies = self.proxies
r = s.send(
request=response.prepare(), verify=False, timeout=self.timeout
)
for line in r.iter_lines(chunk_size=1024):
decoded_line = line.decode("utf-8")
if "MkEWBc" in decoded_line:
# regex_str = r"\[\[\"wrb.fr\",\"MkEWBc\",\"\[\[(.*).*?,\[\[\["
try:
# data_got = re.search(regex_str,decoded_line).group(1)
response = decoded_line
response = json.loads(response)
response = list(response)
response = json.loads(response[0][2])
response = list(response)
detect_lang = response[0][2]
except Exception:
raise Exception
# data_got = data_got.split('\\\"]')[0]
return [detect_lang, LANGUAGES[detect_lang.lower()]]
r.raise_for_status()
except requests.exceptions.HTTPError as e:
# Request successful, bad response
LOGGER.debug(str(e))
raise google_new_transError(tts=self, response=r)
except requests.exceptions.RequestException as e:
# Request failed
LOGGER.debug(str(e))
raise google_new_transError(tts=self)
@check_admin(is_user=True)
async def echo(update: Update, context: ContextTypes.DEFAULT_TYPE):
args = update.effective_message.text.split(None, 1)
message = update.effective_message
if message.reply_to_message:
await message.reply_to_message.reply_text(
args[1],
parse_mode="MARKDOWN",
disable_web_page_preview=True,
)
else:
await message.reply_text(
args[1],
quote=False,
parse_mode="MARKDOWN",
disable_web_page_preview=True,
)
await message.delete()
async def totranslate(update: Update, context: ContextTypes.DEFAULT_TYPE):
message = update.effective_message
problem_lang_code = []
for key in LANGUAGES:
if "-" in key:
problem_lang_code.append(key)
try:
if (
message.reply_to_message
and not message.reply_to_message.forum_topic_created
):
args = update.effective_message.text.split(None, 1)
if message.reply_to_message.text:
text = message.reply_to_message.text
elif message.reply_to_message.caption:
text = message.reply_to_message.caption
try:
source_lang = args[1].split(None, 1)[0]
except (IndexError, AttributeError):
source_lang = "en"
else:
args = update.effective_message.text.split(None, 2)
text = args[2]
source_lang = args[1]
if source_lang.count("-") == 2:
for lang in problem_lang_code:
if lang in source_lang:
if source_lang.startswith(lang):
dest_lang = source_lang.rsplit("-", 1)[1]
source_lang = source_lang.rsplit("-", 1)[0]
else:
dest_lang = source_lang.split("-", 1)[1]
source_lang = source_lang.split("-", 1)[0]
elif source_lang.count("-") == 1:
for lang in problem_lang_code:
if lang in source_lang:
dest_lang = source_lang
source_lang = None
break
if dest_lang is None:
dest_lang = source_lang.split("-")[1]
source_lang = source_lang.split("-")[0]
else:
dest_lang = source_lang
source_lang = None
exclude_list = EMOJI_DATA.keys()
for emoji in exclude_list:
if emoji in text:
text = text.replace(emoji, "")
trl = google_translator()
if source_lang is None:
detection = trl.detect(text)
trans_str = trl.translate(text, lang_tgt=dest_lang)
return await message.reply_text(
f"π *Translated from* `{detection[0]}` to `{dest_lang}`:\n`{trans_str}`",
parse_mode=ParseMode.MARKDOWN,
)
else:
trans_str = trl.translate(text, lang_tgt=dest_lang, lang_src=source_lang)
await message.reply_text(
f"π *Translated from* `{source_lang}` to `{dest_lang}`:\n`{trans_str}`",
parse_mode=ParseMode.MARKDOWN,
)
except IndexError:
await update.effective_message.reply_text(
"Reply to messages or write messages from other languages ββfor translating into the intended language\n\n"
"Example: `/tr en-ta` to translate from English to Tamil\n"
"Or use: `/tr ta` for automatic detection and translating it into Tamil.\n"
"See [List of Language Codes](https://t.me/Hydra_Updates/80) for a list of language codes.",
parse_mode="markdown",
disable_web_page_preview=True,
)
except ValueError:
await update.effective_message.reply_text("The intended language is not found!")
else:
return
# <=================================================== HELP ====================================================>
__help__ = """
β `/tr` or `/tl` (language code) as reply to a long message
β *Example:*
Β» `/tr en`*:* translates something to english
Β» `/tr hi-en`*:* translates hindi to english
Β» /echo < text >: echos the message.
"""
TRANSLATE_HANDLER = DisableAbleCommandHandler(["tr", "tl"], totranslate, block=False)
ECHO_HANDLER = DisableAbleCommandHandler(
"echo", echo, filters=filters.ChatType.GROUPS, block=False
)
function(TRANSLATE_HANDLER)
function(ECHO_HANDLER)
__mod_name__ = "TRANSLATOR"
__command_list__ = ["tr", "tl", "echo"]
__handlers__ = [TRANSLATE_HANDLER]
# <================================================ END =======================================================>
|