<?php namespace Modules\Main\Libraries;
use Config\Services;
class GoogleTranslateLibrary
{
private string $url = '';
private int $limit = 0; // Google Translate character limit
public function __construct()
{
$this->url = env('google_translate_endpoint');
$this->limit = env('google_translate_limit');
}
/**
* Retrieves the translation of a text. 5000 - character limit per translate!
* You can get around it by saving the text to a file then opening it in Google Chrome.
* https://github.com/ssut/py-googletrans/issues/268
*
* @param string $source Original language of the text on notation xx. For example: es, en, it, fr...
* @param string $target Language to which you want to translate the text in format xx. For example: es, en, it, fr...
* @param string $text Text that you want to translate
*
* @return string a simple string with the translation of the text in the target language
*/
public function translate(string $source, string $target, string $text): string
{
$output = '';
if (strlen($text) >= $this->limit) {
MainLibrary::AlertLibrary()->set('danger', 'Google Translate: '.lang('Main.alert.max_char_exceeded', [$this->limit]));
} else {
$params = [
'client' => 'gtx',
'dt' => 't',
'sl' => $source,
'tl' => $target,
'q' => $text,
];
$url = $this->url.'?'.http_build_query($params);
$response = Services::curlrequest()->post($url);
$data = json_decode($response->getBody() ?? '', true);
if (!empty($data[0]) && is_array($data[0])) {
foreach ($data[0] as $result) {
if (!empty($result[0]) && is_string($result[0])) {
$output .= $result[0].' ';
}
}
}
}
return trim($output);
}
}