darrynten/google-cloud-translate-php

There is no license information available for the latest version (v1.0.0) of this package.

PHP Google Cloud Translate Client with Extras

v1.0.0 2017-03-05 13:27 UTC

This package is not auto-updated.

Last update: 2024-04-14 00:33:34 UTC


README

Travis Build Status StyleCI Status codecov Packagist Version MIT License

An unofficial, fully unit tested Google Cloud Translate PHP client with extra sugar.

This is pretty much based on our Google Natural Language library and is quite similar.

PHP 7.0+

Why not just use the official one?

The official one is great, and we actually use it in this package, it just doesn't quite have the sort of features we needed, so we wrapped it up with some extra bits.

What extra features?

Cost Cutters

The Google Cloud Translate API costs money. If you're doing anything with it at scale, you're going to have to keep an eye on your calls to make sure things aren't running away with you. It's not cheap.

That's why we introduced some cost cutting features.

Caching Requests

By default this package caches your requests, something you would have to usually do yourself.

It caches using a framework-agnostic approach, whereby it leverages any host frameworks caching mechanism, and falls back to a temporary cache if there is no cache available.

The supported frameworks are detailed in the AnyCache project.

Examples include Laravel, Symfony, Doctrine, Psr6 and more.

This feature is on by default and can easily be disabled.

Cheapskate Mode

While not immediately clear, the Google Cloud Translate API charges per character. At the time of writing around $20 for 1m characters. (you pay for detection and translation at the same rates).

If you wish to first detect the language and then translate, you will pay twice for each character.

We're added cheapskate mode, and what this setting allows is for you to limit the amount of text used in language detection.

This feature is on by default and can easily be disabled. By default it limits language detection to a tweet worth of characters, and you can adjust the value too through the cheapskateCount property.

Additional Cost Saving Checks

If you submit a language that is not supported then you still get charged per character, so we ensure that we grab a copy of all supported languages and translation targets to make sure that you don't attempt to translate across unsupported languages, saving you money.

We also check to ensure you are not trying to translate the same target and source, which would also be expensive.

Conveniences

There are a few other conveniences like being able to set the target and source language, type, etc.

One use case would be running a single instance of text through multiple language attempts.

Usage

use DarrynTen\GoogleCloudTranslatePhp\GoogleCloudTranslate;

// Config options
$config = [
  'projectId' => 'my-awesome-project'  // At the very least
];

// Make a translator
$translate = new GoogleCloudTranslate($config);

// Get information
$translate->languages();
$translate->localizedLanguages();

// Detect languages
$translate->detectLanguage($string);
$translate->detectLanguageBatch([$strings]);

// Translate
$translate->translate($string);
$translate->translateBatch([$strings]);

// Set optional things
$language->setType('html');
$language->setModel('base');
$language->setTargetLanguage('en');
$language->setSourceLanguage('es');

// Extra features
$language->setCaching(false);
$language->setCheapskate(false);
$language->setCheapskateCount(50);

// Full config options
$config = [
  'projectId' => 'my-awesome-project',     // required
  'key' => 'api-key',                      // optional see note below
  'target' => 'en',                        // optional default is en
  'source' => 'en',                        // optional default is en
  'model' => 'base',                       // optional
  'type' => 'text',                        // optional
  'authCache' => \CacheItemPoolInterface,  // stores access tokens
  'authCacheOptions' => $array,            // cache config
  'authHttpHandler' => callable(),         // psr-7 auth handler
  'httpHandler' => callable(),             // psr-7 rest handler
  'keyFile' => $json,                      // content
  'keyFilePath' => $string,                // path
  'retries' => 3,                          // default is 3
  'scopes' => $array,                      // app scopes
  'cache' => $boolean,                     // cache
  'cheapskate' => $boolean,                // cheaper detection calls
  'cheapskateCount' => 100,                // how cheap?
];

// authCache, authCacheOptions, authHttpHandler and httpHandler are not
// currently implemented.

See The Google Cloud Docs for more on these options and their usage.

Please note that while the Google Cloud Translation API supports authentication via service account and application default credentials like other Cloud Platform APIs, it also supports authentication via a public API access key.

If you wish to authenticate using an API key, follow the before you begin instructions to learn how to generate a key.

Options

  • setType($type) - Either html (default) or text
  • setModel($model)
  • setSourceLanguage($language) - Either ISO (en, es) or BCP-47 (en-ZA, en-GB).
  • setTargetLanguage($language) - Either ISO or BCP-47.

If no language is provided then it is autodetected from the text and is returned with the response.

Missing Features

Feel free to open a PR!

Usage of Google\Cloud\Storage\StorageObject is presently not possible.

  • Custom authCache and authCacheOptions
  • Custom httpHandler and authHttpHandler

Roadmap

  • Implement missing features

Acknowledgements

  • Open a PR and put yourself here :)