TYPO3 CMS  TYPO3_7-6
PlainTextExtractor.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 
19 
25 {
32  public function canExtractText(FileInterface $file)
33  {
34  $canExtract = false;
35 
36  if ($file->getMimeType() === 'text/plain') {
37  $canExtract = true;
38  }
39 
40  return $canExtract;
41  }
42 
49  public function extractText(FileInterface $file)
50  {
51  $localTempFile = $file->getForLocalProcessing(false);
52 
53  // extract text
54  $content = file_get_contents($localTempFile);
55 
56  // In case of remote storage, the temporary copy of the
57  // original file in typo3temp must be removed
58  // Simply compare the filenames, because the filename is so unique that
59  // it is nearly impossible to have a file with this name in a storage
60  if (PathUtility::basename($localTempFile) !== $file->getName()) {
61  unlink($localTempFile);
62  }
63 
64  return $content;
65  }
66 }