You are here

public function LingotekConfigTranslationService::checkTargetStatuses in Lingotek Translation 3.4.x

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

Checks the status of all the translations in the Lingotek service.

Parameters

\Drupal\Core\Config\Entity\ConfigEntityInterface $entity: The entity which status we want to check.

Return value

bool True if the entity is checked successfully.

Overrides LingotekConfigTranslationServiceInterface::checkTargetStatuses

File

src/LingotekConfigTranslationService.php, line 693

Class

LingotekConfigTranslationService
Service for managing Lingotek configuration translations.

Namespace

Drupal\lingotek

Code

public function checkTargetStatuses(ConfigEntityInterface &$entity) {
  $profile = $this->lingotekConfiguration
    ->getConfigEntityProfile($entity);
  if ($profile
    ->id() === Lingotek::PROFILE_DISABLED || $this
    ->getSourceStatus($entity) === Lingotek::STATUS_CANCELLED) {
    return FALSE;
  }
  $document_id = $this
    ->getDocumentId($entity);
  $source_status = $this
    ->getSourceStatus($entity);
  $translation_statuses = $this->lingotek
    ->getDocumentTranslationStatuses($document_id);
  $statuses = [];
  $languages = $this->languageManager
    ->getLanguages();
  foreach ($languages as $language) {
    $statuses[$language
      ->getId()] = $this
      ->getTargetStatus($entity, $language
      ->getId());
  }

  // Let's reset all statuses, but keep the source one.
  $this
    ->clearTargetStatuses($entity);
  foreach ($translation_statuses as $lingotek_locale => $progress) {
    $drupal_language = $this->languageLocaleMapper
      ->getConfigurableLanguageForLocale($lingotek_locale);
    if ($drupal_language == NULL) {

      // languages existing in TMS, but not configured on Drupal
      continue;
    }
    $langcode = $drupal_language
      ->id();
    $current_target_status = $statuses[$langcode];
    if (in_array($current_target_status, [
      Lingotek::STATUS_UNTRACKED,
      Lingotek::STATUS_DISABLED,
      Lingotek::STATUS_EDITED,
      Lingotek::STATUS_REQUEST,
      Lingotek::STATUS_NONE,
      Lingotek::STATUS_READY,
      Lingotek::STATUS_PENDING,
      Lingotek::STATUS_CANCELLED,
      NULL,
    ])) {
      if ($progress === Lingotek::STATUS_CANCELLED) {
        $this
          ->setTargetStatus($entity, $langcode, Lingotek::STATUS_CANCELLED);
      }
      elseif ($progress === Lingotek::PROGRESS_COMPLETE) {
        $this
          ->setTargetStatus($entity, $langcode, Lingotek::STATUS_READY);
      }
      else {
        $this
          ->setTargetStatus($entity, $langcode, Lingotek::STATUS_PENDING);
      }
    }
    if ($source_status !== Lingotek::STATUS_CURRENT && $statuses[$langcode] === Lingotek::STATUS_EDITED && $langcode !== $entity
      ->language()
      ->getId()) {
      $this
        ->setTargetStatus($entity, $langcode, Lingotek::STATUS_EDITED);
    }
    if ($source_status === Lingotek::STATUS_CURRENT && $statuses[$langcode] === Lingotek::STATUS_CURRENT && $langcode !== $entity
      ->language()
      ->getId()) {
      $this
        ->setTargetStatus($entity, $langcode, Lingotek::STATUS_CURRENT);
    }
  }
  if ($this
    ->getSourceStatus($entity) === Lingotek::STATUS_DISABLED) {
    $this
      ->setTargetStatuses($entity, Lingotek::STATUS_DISABLED);
  }
}