Welcome Guest, Not a member yet? Register   Sign In
Can php spark db:seed work for updating data or is it limited to insert?
#5

(This post was last modified: 11-27-2024, 03:54 PM by davis.lasis.)

CI 4.5.5
PHP 8.3
Ignore my AlertLibrary, you can handle alert notifications as you fancy and/or need

Usage
PHP Code:
service('GoogleTranslateLibrary')->translate('en''fr''Hello world!'); 


env

PHP Code:
google_translate_endpoint 'https://translate.googleapis.com/translate_a/single'
google_translate_limit 5000 

Init Service

PHP Code:
<?php namespace Modules\Main\Config;

use 
CodeIgniter\Config\BaseService;
use 
Modules\Main\Libraries\GoogleTranslateLibrary;

class 
Services extends BaseService
{
    /**
    * Google Translate library
    * @param bool $getShared
    * @return object
    */
    public static function GoogleTranslateLibrary(bool $getShared true): object
    
{
        return ($getShared) ? static::getSharedInstance('GoogleTranslateLibrary') : new GoogleTranslateLibrary();
    }



Library (ThirdParty) class


PHP Code:
<?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 $sourcestring $targetstring $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);
    }


Reply


Messages In This Thread
RE: Can php spark db:seed work for updating data or is it limited to insert? - by davis.lasis - 11-27-2024, 03:43 PM



Theme © iAndrew 2016 - Forum software by © MyBB