You are here

CancelTranslationLingotekAction.php in Lingotek Translation 3.8.x

File

src/Plugin/Action/CancelTranslationLingotekAction.php
View source
<?php

namespace Drupal\lingotek\Plugin\Action;

use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\lingotek\Exception\LingotekApiException;
use Drupal\lingotek\Exception\LingotekDocumentNotFoundException;
use Drupal\lingotek\Exception\LingotekDocumentTargetAlreadyCompletedException;

/**
 * Request Lingotek translation of a content entity for one language.
 *
 * @Action(
 *   id = "entity:lingotek_cancel_translation_action",
 *   action_label = @Translation("Cancel @entity_label translation in Lingotek for @language"),
 *   category = "Lingotek",
 *   deriver = "Drupal\lingotek\Plugin\Action\Derivative\ContentEntityLingotekActionDeriver",
 * )
 */
class CancelTranslationLingotekAction extends LingotekContentEntityConfigurableActionBase {

  /**
   * {@inheritdoc}
   */
  public function execute($entity = NULL) {
    $result = FALSE;
    $entityTypeBundleInfo = \Drupal::service('entity_type.bundle.info');
    $bundleInfos = $entityTypeBundleInfo
      ->getBundleInfo($entity
      ->getEntityTypeId());
    if (!$entity
      ->getEntityType()
      ->isTranslatable() || !$bundleInfos[$entity
      ->bundle()]['translatable']) {
      $this
        ->messenger()
        ->addWarning(t('Cannot cancel translation for @type %label. That @bundle_label is not enabled for translation.', [
        '@type' => $bundleInfos[$entity
          ->bundle()]['label'],
        '%label' => $entity
          ->label(),
        '@bundle_label' => $entity
          ->getEntityType()
          ->getBundleLabel(),
      ]));
      return FALSE;
    }

    /** @var \Drupal\lingotek\LingotekConfigurationServiceInterface $lingotek_configuration */
    $lingotek_configuration = \Drupal::service('lingotek.configuration');
    if (!$lingotek_configuration
      ->isEnabled($entity
      ->getEntityTypeId(), $entity
      ->bundle())) {
      $this
        ->messenger()
        ->addWarning(t('Cannot cancel translation for @type %label. That @bundle_label is not enabled for Lingotek translation.', [
        '@type' => $bundleInfos[$entity
          ->bundle()]['label'],
        '%label' => $entity
          ->label(),
        '@bundle_label' => $entity
          ->getEntityType()
          ->getBundleLabel(),
      ]));
      return FALSE;
    }
    $configuration = $this
      ->getConfiguration();
    $langcode = $configuration['language'];
    $language = ConfigurableLanguage::load($langcode);
    if (!$lingotek_configuration
      ->isLanguageEnabled($language)) {
      $this
        ->messenger()
        ->addWarning(t('Cannot cancel language @language (%langcode). That language is not enabled for Lingotek translation.', [
        '@language' => $language
          ->getName(),
        '%langcode' => $langcode,
      ]));
      return FALSE;
    }
    try {
      $locale = $this->languageLocaleMapper
        ->getLocaleForLangcode($langcode);
      $result = $this->translationService
        ->cancelDocumentTarget($entity, $locale);
    } catch (LingotekDocumentTargetAlreadyCompletedException $e) {
      $this->translationService
        ->checkTargetStatus($entity, $langcode);
      $this
        ->messenger()
        ->addError($this
        ->t('Target %language for @entity_type %title was already completed in the TMS and cannot be cancelled unless the entire document is cancelled.', [
        '@entity_type' => $entity
          ->getEntityTypeId(),
        '%title' => $entity
          ->label(),
        '%language' => $langcode,
      ]));
    } catch (LingotekDocumentNotFoundException $exc) {
      $this
        ->messenger()
        ->addWarning(t('Document @entity_type %title was not found, so nothing to cancel.', [
        '@entity_type' => $entity
          ->getEntityTypeId(),
        '%title' => $entity
          ->label(),
      ]));
    } catch (LingotekApiException $exception) {
      $this
        ->messenger()
        ->addError(t('The cancellation of @entity_type %title translation to @language failed. Please try again.', [
        '@entity_type' => $entity
          ->getEntityTypeId(),
        '%title' => $entity
          ->label(),
        '@language' => $langcode,
      ]));
    }
    return $result;
  }

}

Classes

Namesort descending Description
CancelTranslationLingotekAction Request Lingotek translation of a content entity for one language.