You are here

public function LingotekApi::getDocumentTranslationStatus in Lingotek Translation 3.6.x

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

Gets the document target translation status for a given locale from the Lingotek service.

Parameters

string $id: The document id.

string $locale: The target locale.

Return value

\Psr\Http\Message\ResponseInterface A response.

Overrides LingotekApiInterface::getDocumentTranslationStatus

File

src/Remote/LingotekApi.php, line 248

Class

LingotekApi
A simple connector to the Lingotek Translation API.

Namespace

Drupal\lingotek\Remote

Code

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