TYPO3 CMS  TYPO3_7-6
LocalImageProcessor.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
18 
23 {
27  protected $logger;
28 
32  public function __construct()
33  {
35  $logManager = GeneralUtility::makeInstance(\TYPO3\CMS\Core\Log\LogManager::class);
36  $this->logger = $logManager->getLogger(__CLASS__);
37  }
38 
45  public function canProcessTask(TaskInterface $task)
46  {
47  $canProcessTask = $task->getType() === 'Image';
48  $canProcessTask = $canProcessTask & in_array($task->getName(), ['Preview', 'CropScaleMask']);
49  return $canProcessTask;
50  }
51 
58  public function processTask(TaskInterface $task)
59  {
60  if (!$this->canProcessTask($task)) {
61  throw new \InvalidArgumentException('Cannot process task of type "' . $task->getType() . '.' . $task->getName() . '"', 1350570621);
62  }
63  if ($this->checkForExistingTargetFile($task)) {
64  return;
65  }
66  $helper = $this->getHelperByTaskName($task->getName());
67  try {
68  $result = $helper->process($task);
69  if ($result === null) {
70  $task->setExecuted(true);
71  $task->getTargetFile()->setUsesOriginalFile();
72  } elseif (!empty($result['filePath']) && file_exists($result['filePath'])) {
73  $task->setExecuted(true);
74  $imageDimensions = $this->getGraphicalFunctionsObject()->getImageDimensions($result['filePath']);
75  $task->getTargetFile()->setName($task->getTargetFileName());
76  $task->getTargetFile()->updateProperties(
77  ['width' => $imageDimensions[0], 'height' => $imageDimensions[1], 'size' => filesize($result['filePath']), 'checksum' => $task->getConfigurationChecksum()]
78  );
79  $task->getTargetFile()->updateWithLocalFile($result['filePath']);
80 
81  // New dimensions + no new file (for instance svg)
82  } elseif (!empty($result['width']) && !empty($result['height']) && empty($result['filePath'])) {
83  $task->setExecuted(true);
84  $task->getTargetFile()->setUsesOriginalFile();
85  $task->getTargetFile()->updateProperties(
86  ['width' => $result['width'], 'height' => $result['height'], 'size' => $task->getSourceFile()->getSize(), 'checksum' => $task->getConfigurationChecksum()]
87  );
88 
89  // Seems we have no valid processing result
90  } else {
91  $task->setExecuted(false);
92  }
93  } catch (\Exception $e) {
94  $task->setExecuted(false);
95  }
96  }
97 
105  protected function checkForExistingTargetFile(TaskInterface $task)
106  {
107  // the storage of the processed file, not of the original file!
108  $storage = $task->getTargetFile()->getStorage();
109  $processingFolder = $storage->getProcessingFolder($task->getSourceFile());
110 
111  // explicitly check for the raw filename here, as we check for files that existed before we even started
112  // processing, i.e. that were processed earlier
113  if ($processingFolder->hasFile($task->getTargetFileName())) {
114  // When the processed file already exists set it as processed file
115  $task->getTargetFile()->setName($task->getTargetFileName());
116 
117  // If the processed file is stored on a remote server, we must fetch a local copy of the file, as we
118  // have no API for fetching file metadata from a remote file.
119  $localProcessedFile = $storage->getFileForLocalProcessing($task->getTargetFile(), false);
120  $task->setExecuted(true);
121  $imageDimensions = $this->getGraphicalFunctionsObject()->getImageDimensions($localProcessedFile);
122  $properties = [
123  'width' => $imageDimensions[0],
124  'height' => $imageDimensions[1],
125  'size' => filesize($localProcessedFile),
126  'checksum' => $task->getConfigurationChecksum()
127  ];
128  $task->getTargetFile()->updateProperties($properties);
129 
130  return true;
131  } else {
132  return false;
133  }
134  }
135 
141  protected function getHelperByTaskName($taskName)
142  {
143  switch ($taskName) {
144  case 'Preview':
145  $helper = GeneralUtility::makeInstance(\TYPO3\CMS\Core\Resource\Processing\LocalPreviewHelper::class, $this);
146  break;
147  case 'CropScaleMask':
148  $helper = GeneralUtility::makeInstance(\TYPO3\CMS\Core\Resource\Processing\LocalCropScaleMaskHelper::class, $this);
149  break;
150  default:
151  throw new \InvalidArgumentException('Cannot find helper for task name: "' . $taskName . '"', 1353401352);
152  }
153 
154  return $helper;
155  }
156 
171  public function getTemporaryImageWithText($filename, $textline1, $textline2, $textline3)
172  {
174  $graphicalFunctions = $this->getGraphicalFunctionsObject();
175  $graphicalFunctions->getTemporaryImageWithText($filename, $textline1, $textline2, $textline3);
176  }
177 
181  protected function getGraphicalFunctionsObject()
182  {
183  static $graphicalFunctionsObject = null;
184 
185  if ($graphicalFunctionsObject === null) {
186  $graphicalFunctionsObject = GeneralUtility::makeInstance(\TYPO3\CMS\Core\Imaging\GraphicalFunctions::class);
187  }
188 
189  return $graphicalFunctionsObject;
190  }
191 }
getTemporaryImageWithText($filename, $textline1, $textline2, $textline3)