You are here

public function LingotekApi::getTranslation in Lingotek Translation 8

Same name and namespace in other branches
  1. 8.2 src/Remote/LingotekApi.php \Drupal\lingotek\Remote\LingotekApi::getTranslation()
  2. 4.0.x src/Remote/LingotekApi.php \Drupal\lingotek\Remote\LingotekApi::getTranslation()
  3. 3.0.x src/Remote/LingotekApi.php \Drupal\lingotek\Remote\LingotekApi::getTranslation()
  4. 3.1.x src/Remote/LingotekApi.php \Drupal\lingotek\Remote\LingotekApi::getTranslation()
  5. 3.2.x src/Remote/LingotekApi.php \Drupal\lingotek\Remote\LingotekApi::getTranslation()
  6. 3.3.x src/Remote/LingotekApi.php \Drupal\lingotek\Remote\LingotekApi::getTranslation()
  7. 3.4.x src/Remote/LingotekApi.php \Drupal\lingotek\Remote\LingotekApi::getTranslation()
  8. 3.5.x src/Remote/LingotekApi.php \Drupal\lingotek\Remote\LingotekApi::getTranslation()
  9. 3.6.x src/Remote/LingotekApi.php \Drupal\lingotek\Remote\LingotekApi::getTranslation()
  10. 3.7.x src/Remote/LingotekApi.php \Drupal\lingotek\Remote\LingotekApi::getTranslation()
  11. 3.8.x src/Remote/LingotekApi.php \Drupal\lingotek\Remote\LingotekApi::getTranslation()

Overrides LingotekApiInterface::getTranslation

File

src/Remote/LingotekApi.php, line 252
Contains \Drupal\lingotek\Remote\LingotekApi.

Class

LingotekApi

Namespace

Drupal\lingotek\Remote

Code

public function getTranslation($id, $locale) {
  try {
    $this->logger
      ->debug('Lingotek::getTranslation called with id ' . $id . ' and locale ' . $locale);
    $response = $this->lingotekClient
      ->get('/api/document/' . $id . '/content', array(
      'locale_code' => $locale,
    ));
  } catch (\Exception $e) {
    $this->logger
      ->error('Error getting translation (%id, %locale): %message.', [
      '%id' => $id,
      '%locale' => $locale,
      '%message' => $e
        ->getMessage(),
    ]);
    throw new LingotekApiException('Failed to add translation: ' . $e
      ->getMessage());
  }
  $this->logger
    ->debug('getTranslation response received, code %code and body %body', [
    '%code' => $response
      ->getStatusCode(),
    '%body' => (string) $response
      ->getBody(TRUE),
  ]);
  return $response;
}