diff --git a/typo3/sysext/indexed_search/Classes/Hook/CrawlerHook.php b/typo3/sysext/indexed_search/Classes/Hook/CrawlerHook.php index fa6ee48e4da94c67762548c262c6dbae1e896a00..26b4a795663327c4b151d307d67066519b89fcc5 100644 --- a/typo3/sysext/indexed_search/Classes/Hook/CrawlerHook.php +++ b/typo3/sysext/indexed_search/Classes/Hook/CrawlerHook.php @@ -15,6 +15,7 @@ namespace TYPO3\CMS\IndexedSearch\Hook; */ use TYPO3\CMS\Backend\Utility\BackendUtility; +use TYPO3\CMS\Core\Core\Environment; use TYPO3\CMS\Core\Database\Connection; use TYPO3\CMS\Core\Database\ConnectionPool; use TYPO3\CMS\Core\Database\Query\Restriction\DeletedRestriction; @@ -359,7 +360,7 @@ class CrawlerHook } } } - $files = GeneralUtility::removePrefixPathFromList($files, PATH_site); + $files = GeneralUtility::removePrefixPathFromList($files, Environment::getPublicPath() . '/'); // traverse the items and create log entries: foreach ($files as $path) { $this->instanceCounter++; diff --git a/typo3/sysext/indexed_search/Classes/Indexer.php b/typo3/sysext/indexed_search/Classes/Indexer.php index 098aea3722bafa5b20f1a19dd458f68d4a2e2dc0..701155f75dfc36f0b886c95d3a07aa46253db856 100644 --- a/typo3/sysext/indexed_search/Classes/Indexer.php +++ b/typo3/sysext/indexed_search/Classes/Indexer.php @@ -16,6 +16,7 @@ namespace TYPO3\CMS\IndexedSearch; use TYPO3\CMS\Core\Compatibility\PublicPropertyDeprecationTrait; use TYPO3\CMS\Core\Configuration\ExtensionConfiguration; +use TYPO3\CMS\Core\Core\Environment; use TYPO3\CMS\Core\Database\Connection; use TYPO3\CMS\Core\Database\ConnectionPool; use TYPO3\CMS\Core\TimeTracker\TimeTracker; @@ -802,7 +803,7 @@ class Indexer if (GeneralUtility::isAllowedAbsPath($linkSource)) { $localFile = $linkSource; } else { - $localFile = GeneralUtility::getFileAbsFileName(PATH_site . $linkSource); + $localFile = GeneralUtility::getFileAbsFileName(Environment::getPublicPath() . '/' . $linkSource); } if ($localFile && @is_file($localFile)) { // Index local file: @@ -1013,7 +1014,7 @@ class Indexer $baseURLLength = strlen($baseURL); if (substr($sourcePath, 0, $baseURLLength) == $baseURL) { $sourcePath = substr($sourcePath, $baseURLLength); - $localPath = PATH_site . $sourcePath; + $localPath = Environment::getPublicPath() . '/' . $sourcePath; if (!self::isAllowedLocalFile($localPath)) { $localPath = ''; } @@ -1036,7 +1037,7 @@ class Indexer $absRefPrefixLength = strlen($absRefPrefix); if ($absRefPrefixLength > 0 && substr($sourcePath, 0, $absRefPrefixLength) == $absRefPrefix) { $sourcePath = substr($sourcePath, $absRefPrefixLength); - $localPath = PATH_site . $sourcePath; + $localPath = Environment::getPublicPath() . '/' . $sourcePath; if (!self::isAllowedLocalFile($localPath)) { $localPath = ''; } @@ -1057,7 +1058,7 @@ class Indexer $localPath = ''; if ($sourcePath[0] === '/') { $sourcePath = substr($sourcePath, 1); - $localPath = PATH_site . $sourcePath; + $localPath = Environment::getPublicPath() . '/' . $sourcePath; if (!self::isAllowedLocalFile($localPath)) { $localPath = ''; } @@ -1075,7 +1076,7 @@ class Indexer { $localPath = ''; if (self::isRelativeURL($sourcePath)) { - $localPath = PATH_site . $sourcePath; + $localPath = Environment::getPublicPath() . '/' . $sourcePath; if (!self::isAllowedLocalFile($localPath)) { $localPath = ''; } @@ -1104,7 +1105,7 @@ class Indexer protected static function isAllowedLocalFile($filePath) { $filePath = GeneralUtility::resolveBackPath($filePath); - $insideWebPath = substr($filePath, 0, strlen(PATH_site)) == PATH_site; + $insideWebPath = substr($filePath, 0, strlen(Environment::getPublicPath())) === Environment::getPublicPath(); $isFile = is_file($filePath); return $insideWebPath && $isFile; } @@ -1115,9 +1116,9 @@ class Indexer * ******************************************/ /** - * Indexing a regular document given as $file (relative to PATH_site, local file) + * Indexing a regular document given as $file (relative to public web path, local file) * - * @param string $file Relative Filename, relative to PATH_site. It can also be an absolute path as long as it is inside the lockRootPath (validated with \TYPO3\CMS\Core\Utility\GeneralUtility::isAbsPath()). Finally, if $contentTmpFile is set, this value can be anything, most likely a URL + * @param string $file Relative Filename, relative to public web path. It can also be an absolute path as long as it is inside the lockRootPath (validated with \TYPO3\CMS\Core\Utility\GeneralUtility::isAbsPath()). Finally, if $contentTmpFile is set, this value can be anything, most likely a URL * @param bool $force If set, indexing is forced (despite content hashes, mtime etc). * @param string $contentTmpFile Temporary file with the content to read it from (instead of $file). Used when the $file is a URL. * @param string $altExtension File extension for temporary file. @@ -1130,8 +1131,8 @@ class Indexer // Create abs-path: if (!$contentTmpFile) { if (!GeneralUtility::isAbsPath($file)) { - // Relative, prepend PATH_site: - $absFile = GeneralUtility::getFileAbsFileName(PATH_site . $file); + // Relative, prepend public web path: + $absFile = GeneralUtility::getFileAbsFileName(Environment::getPublicPath() . '/' . $file); } else { // Absolute, pass-through: $absFile = $file; diff --git a/typo3/sysext/indexed_search/Tests/Unit/IndexerTest.php b/typo3/sysext/indexed_search/Tests/Unit/IndexerTest.php index 7694601c404194937617f1ca3d974c4efeab22a9..8cc3558b53dfacc570f7e4ef06e468cdd92eb049 100644 --- a/typo3/sysext/indexed_search/Tests/Unit/IndexerTest.php +++ b/typo3/sysext/indexed_search/Tests/Unit/IndexerTest.php @@ -14,6 +14,7 @@ namespace TYPO3\CMS\IndexedSearch\Tests\Unit; * The TYPO3 project - inspiring people to share! */ +use TYPO3\CMS\Core\Core\Environment; use TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController; use TYPO3\CMS\IndexedSearch\Indexer; use TYPO3\TestingFramework\Core\Unit\UnitTestCase; @@ -50,7 +51,7 @@ class IndexerTest extends UnitTestCase */ public function extractHyperLinksReturnsCorrectFileUsingT3Vars() { - $temporaryFileName = tempnam(PATH_site . 'typo3temp/var/tests/', 't3unit-'); + $temporaryFileName = tempnam(Environment::getVarPath() . '/tests/', 't3unit-'); $this->testFilesToDelete[] = $temporaryFileName; $html = 'test <a href="testfile">test</a> test'; $GLOBALS['T3_VAR']['ext']['indexed_search']['indexLocalFiles'] = [ @@ -65,14 +66,14 @@ class IndexerTest extends UnitTestCase /** * @test */ - public function extractHyperLinksRecurnsCorrectPathWithBaseUrl() + public function extractHyperLinksReturnsCorrectPathWithBaseUrl() { $baseURL = \TYPO3\CMS\Core\Utility\GeneralUtility::getIndpEnv('TYPO3_SITE_URL'); $html = 'test <a href="' . $baseURL . 'index.php">test</a> test'; $subject = new Indexer(); $result = $subject->extractHyperLinks($html); $this->assertEquals(1, count($result)); - $this->assertEquals(PATH_site . 'index.php', $result[0]['localPath']); + $this->assertEquals(Environment::getPublicPath() . '/index.php', $result[0]['localPath']); } /** @@ -84,7 +85,7 @@ class IndexerTest extends UnitTestCase $subject = new Indexer(); $result = $subject->extractHyperLinks($html); $this->assertEquals(1, count($result)); - $this->assertEquals(PATH_site . 'index.php', $result[0]['localPath']); + $this->assertEquals(Environment::getPublicPath() . '/index.php', $result[0]['localPath']); } /** @@ -92,12 +93,11 @@ class IndexerTest extends UnitTestCase */ public function extractHyperLinksFindsCorrectPathForPathWithinTypo3Directory() { - $path = substr(PATH_typo3, strlen(PATH_site) - 1); - $html = 'test <a href="' . $path . 'index.php">test</a> test'; + $html = 'test <a href="typo3/index.php">test</a> test'; $subject = new Indexer(); $result = $subject->extractHyperLinks($html); $this->assertEquals(1, count($result)); - $this->assertEquals(PATH_typo3 . 'index.php', $result[0]['localPath']); + $this->assertEquals(Environment::getPublicPath() . '/typo3/index.php', $result[0]['localPath']); } /** @@ -117,7 +117,7 @@ class IndexerTest extends UnitTestCase $subject = new Indexer(); $result = $subject->extractHyperLinks($html); $this->assertEquals(1, count($result)); - $this->assertEquals(PATH_site . 'index.php', $result[0]['localPath']); + $this->assertEquals(Environment::getPublicPath() . '/index.php', $result[0]['localPath']); } /**