You are here

class JobDownload in TMGMT Extension Suite 8.3

Same name and namespace in other branches
  1. 8 src/Plugin/QueueWorker/JobDownload.php \Drupal\tmgmt_extension_suit\Plugin\QueueWorker\JobDownload
  2. 8.2 src/Plugin/QueueWorker/JobDownload.php \Drupal\tmgmt_extension_suit\Plugin\QueueWorker\JobDownload

Executes interface translation queue tasks.

Plugin annotation


@QueueWorker(
  id = "tmgmt_extension_suit_download",
  title = @Translation("Job translation download"),
  cron = {"time" = 30}
)

Hierarchy

Expanded class hierarchy of JobDownload

1 file declares its use of JobDownload
QueueWorkerLockedTest.php in tests/src/Kernel/QueueWorkerLockedTest.php

File

src/Plugin/QueueWorker/JobDownload.php, line 18

Namespace

Drupal\tmgmt_extension_suit\Plugin\QueueWorker
View source
class JobDownload extends QueueWorkerLockedBase {

  /**
   * {@inheritdoc}
   */
  protected function doProcessItem(array $data) {
    $tjid = isset($data['tjid']) ? $data['tjid'] : $data['id'];
    $tjiid = isset($data['tjiid']) ? $data['tjiid'] : NULL;
    try {
      $job = Job::load($tjid);
      $jobItem = NULL;
      if (empty($job)) {
        $this->logger
          ->error(t('Downloading translation for a job :job_id is failed: non-existent job. This job has been deleted from admin UI but queue item is still in the queue.', [
          ':job_id' => $tjid,
        ])
          ->render());
        return;
      }
      if (!empty($tjiid)) {
        $jobItem = Jobitem::load($tjiid);
        if (empty($jobItem)) {
          $this->logger
            ->error(t('Downloading translation for a job :job_id and jobItem :job_item_id is failed: non-existent job item. This job item has been deleted from admin UI but queue item is still in the queue.', [
            ':job_item_id' => $tjiid,
          ])
            ->render());
          return;
        }
      }
      $plugin = $job
        ->getTranslator()
        ->getPlugin();
      if ($plugin instanceof ExtendedTranslatorPluginInterface && $plugin
        ->isReadyForDownload($job)) {
        $plugin
          ->downloadTranslation($job, $jobItem);
      }
    } catch (\Exception $e) {
      $this->logger
        ->error($e
        ->getMessage());
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
JobDownload::doProcessItem protected function Hook method to be implemented in child classes. Overrides QueueWorkerLockedBase::doProcessItem
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
QueueWorkerLockedBase::$lock protected property Lock service.
QueueWorkerLockedBase::$logger protected property Logger.
QueueWorkerLockedBase::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
QueueWorkerLockedBase::processItem public function Works on a single queue item. Overrides QueueWorkerInterface::processItem
QueueWorkerLockedBase::__construct public function Constructs a new LocaleTranslation object. Overrides PluginBase::__construct